From 1c107a500bc77b723ec4d3e3922d7d4e8da467ac Mon Sep 17 00:00:00 2001 From: Lukas Date: Wed, 8 Apr 2026 21:05:00 +0200 Subject: [PATCH] Switch PF2e data source from Pf2eTools to Foundry VTT PF2e Replace the stagnant Pf2eTools bestiary with Foundry VTT PF2e system data (github.com/foundryvtt/pf2e, v13-dev branch). This gives us 4,355 remaster-era creatures across 49 sources including Monster Core 1+2 and all adventure paths. Changes: - Rewrite index generation script to walk Foundry pack directories - Rewrite PF2e normalization adapter for Foundry JSON shape (system.* fields, items[] for attacks/abilities/spells) - Add stripFoundryTags utility for Foundry HTML + enrichment syntax - Implement multi-file source fetching (one request per creature file) - Add spellcasting section to PF2e stat block (ranked spells + cantrips) - Add saveConditional and hpDetails to PF2e domain type and stat block - Add size and rarity to PF2e trait tags - Filter redundant glossary abilities (healing when in hp.details, spell mechanic reminders, allSaves duplicates) - Add PF2e stat block component tests (22 tests) - Bump IndexedDB cache version to 5 for clean migration Co-Authored-By: Claude Opus 4.6 (1M context) --- .../__tests__/adapters/in-memory-adapters.ts | 1 + .../__tests__/pf2e-bestiary-adapter.test.ts | 872 +- .../pf2e-bestiary-index-adapter.test.ts | 45 +- .../__tests__/strip-foundry-tags.test.ts | 162 + apps/web/src/adapters/bestiary-cache.ts | 2 +- .../web/src/adapters/pf2e-bestiary-adapter.ts | 734 +- .../adapters/pf2e-bestiary-index-adapter.ts | 15 +- apps/web/src/adapters/ports.ts | 1 + apps/web/src/adapters/production-adapters.ts | 1 + apps/web/src/adapters/strip-foundry-tags.ts | 99 + .../__tests__/pf2e-stat-block.test.tsx | 280 + .../web/src/components/bulk-import-prompt.tsx | 2 +- apps/web/src/components/pf2e-stat-block.tsx | 31 + apps/web/src/components/stat-block-panel.tsx | 5 +- apps/web/src/hooks/use-bestiary.ts | 53 +- biome.json | 3 +- data/bestiary/pf2e-index.json | 25104 +--------------- packages/domain/src/creature-types.ts | 2 + scripts/generate-pf2e-bestiary-index.mjs | 309 +- specs/004-bestiary/spec.md | 22 +- 20 files changed, 1872 insertions(+), 25871 deletions(-) create mode 100644 apps/web/src/adapters/__tests__/strip-foundry-tags.test.ts create mode 100644 apps/web/src/adapters/strip-foundry-tags.ts create mode 100644 apps/web/src/components/__tests__/pf2e-stat-block.test.tsx diff --git a/apps/web/src/__tests__/adapters/in-memory-adapters.ts b/apps/web/src/__tests__/adapters/in-memory-adapters.ts index ecffa95..92a715f 100644 --- a/apps/web/src/__tests__/adapters/in-memory-adapters.ts +++ b/apps/web/src/__tests__/adapters/in-memory-adapters.ts @@ -115,6 +115,7 @@ export function createTestAdapters(options?: { getDefaultFetchUrl: (sourceCode) => `https://example.com/creatures-${sourceCode.toLowerCase()}.json`, getSourceDisplayName: (sourceCode) => sourceCode, + getCreaturePathsForSource: () => [], }, }; } diff --git a/apps/web/src/adapters/__tests__/pf2e-bestiary-adapter.test.ts b/apps/web/src/adapters/__tests__/pf2e-bestiary-adapter.test.ts index 5eaf0a6..55b78cd 100644 --- a/apps/web/src/adapters/__tests__/pf2e-bestiary-adapter.test.ts +++ b/apps/web/src/adapters/__tests__/pf2e-bestiary-adapter.test.ts @@ -1,359 +1,645 @@ import { describe, expect, it } from "vitest"; -import { normalizePf2eBestiary } from "../pf2e-bestiary-adapter.js"; +import { normalizeFoundryCreature } from "../pf2e-bestiary-adapter.js"; function minimalCreature(overrides?: Record) { return { + _id: "test-id", name: "Test Creature", - source: "TST", + type: "npc", + system: { + abilities: { + str: { mod: 3 }, + dex: { mod: 2 }, + con: { mod: 1 }, + int: { mod: 0 }, + wis: { mod: -1 }, + cha: { mod: -2 }, + }, + attributes: { + ac: { value: 18 }, + hp: { max: 45 }, + speed: { value: 25 }, + }, + details: { + level: { value: 3 }, + languages: { value: ["common"] }, + publication: { + license: "ORC", + remaster: true, + title: "Test Source", + }, + }, + perception: { mod: 8 }, + saves: { + fortitude: { value: 10 }, + reflex: { value: 8 }, + will: { value: 6 }, + }, + skills: {}, + traits: { rarity: "common", size: { value: "med" }, value: [] }, + }, + items: [], ...overrides, }; } -describe("normalizePf2eBestiary", () => { - describe("weaknesses formatting", () => { - it("formats weakness with numeric amount", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - weaknesses: [{ name: "fire", amount: 5 }], - }, - }), - ], - }); - expect(creature.weaknesses).toBe("Fire 5"); +describe("normalizeFoundryCreature", () => { + describe("basic fields", () => { + it("maps top-level fields correctly", () => { + const creature = normalizeFoundryCreature(minimalCreature()); + expect(creature.system).toBe("pf2e"); + expect(creature.name).toBe("Test Creature"); + expect(creature.level).toBe(3); + expect(creature.ac).toBe(18); + expect(creature.hp).toBe(45); + expect(creature.perception).toBe(8); + expect(creature.saveFort).toBe(10); + expect(creature.saveRef).toBe(8); + expect(creature.saveWill).toBe(6); }); - it("formats weakness without amount (qualitative)", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - weaknesses: [{ name: "smoke susceptibility" }], - }, - }), - ], + it("maps ability modifiers", () => { + const creature = normalizeFoundryCreature(minimalCreature()); + expect(creature.abilityMods).toEqual({ + str: 3, + dex: 2, + con: 1, + int: 0, + wis: -1, + cha: -2, }); - expect(creature.weaknesses).toBe("Smoke susceptibility"); }); - it("formats weakness with note and amount", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - weaknesses: [ - { name: "cold iron", amount: 5, note: "except daggers" }, - ], + it("maps AC conditional from details", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + ac: { value: 20, details: "+2 with shield raised" }, }, - }), - ], - }); - expect(creature.weaknesses).toBe("Cold iron 5 (except daggers)"); - }); - - it("formats weakness with note but no amount", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - weaknesses: [{ name: "smoke susceptibility", note: "see below" }], - }, - }), - ], - }); - expect(creature.weaknesses).toBe("Smoke susceptibility (see below)"); - }); - - it("returns undefined when no weaknesses", () => { - const [creature] = normalizePf2eBestiary({ - creature: [minimalCreature({})], - }); - expect(creature.weaknesses).toBeUndefined(); + }, + }), + ); + expect(creature.acConditional).toBe("+2 with shield raised"); }); }); describe("senses formatting", () => { - it("strips tags and includes type and range", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - senses: [ - { - type: "imprecise", - name: "{@ability tremorsense}", - range: 30, - }, - ], - }), - ], - }); - expect(creature.senses).toBe("Tremorsense (imprecise) 30 feet"); - }); - - it("formats sense with only a name", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - senses: [{ name: "darkvision" }], - }), - ], - }); + it("formats darkvision", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + perception: { + mod: 8, + senses: [{ type: "darkvision" }], + }, + }, + }), + ); expect(creature.senses).toBe("Darkvision"); }); - it("formats sense with name and range but no type", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - senses: [{ name: "scent", range: 60 }], - }), - ], - }); + it("formats sense with acuity and range", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + perception: { + mod: 8, + senses: [{ type: "tremorsense", acuity: "imprecise", range: 30 }], + }, + }, + }), + ); + expect(creature.senses).toBe("Tremorsense (imprecise) 30 feet"); + }); + + it("omits precise acuity", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + perception: { + mod: 8, + senses: [{ type: "scent", acuity: "precise", range: 60 }], + }, + }, + }), + ); expect(creature.senses).toBe("Scent 60 feet"); }); }); - describe("attack formatting", () => { - it("strips angle brackets from traits", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - attacks: [ - { - name: "stinger", - range: "Melee", - attack: 11, - traits: ["deadly "], - damage: "1d6+4 piercing", - }, - ], - }), - ], - }); - const attack = creature.attacks?.[0]; - expect(attack).toBeDefined(); - expect(attack?.segments[0]).toEqual( - expect.objectContaining({ - type: "text", - value: expect.stringContaining("(deadly d8)"), + describe("languages formatting", () => { + it("formats language list", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + details: { + ...minimalCreature().system.details, + languages: { value: ["common", "draconic"] }, + }, + }, }), ); + expect(creature.languages).toBe("Common, Draconic"); + }); + + it("includes details", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + details: { + ...minimalCreature().system.details, + languages: { + value: ["common"], + details: "telepathy 100 feet", + }, + }, + }, + }), + ); + expect(creature.languages).toBe("Common (telepathy 100 feet)"); + }); + }); + + describe("skills formatting", () => { + it("formats and sorts skills", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + skills: { + stealth: { base: 10 }, + athletics: { base: 8 }, + }, + }, + }), + ); + expect(creature.skills).toBe("Athletics +8, Stealth +10"); + }); + }); + + describe("defenses formatting", () => { + it("formats immunities with exceptions", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + immunities: [ + { type: "paralyzed", exceptions: [] }, + { + type: "physical", + exceptions: ["adamantine"], + }, + ], + }, + }, + }), + ); + expect(creature.immunities).toBe( + "Paralyzed, Physical (except Adamantine)", + ); }); - it("strips angle brackets from reach values in traits", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - attacks: [ - { - name: "tentacle", - range: "Melee", - attack: 18, - traits: ["agile", "chaotic", "magical", "reach <10 feet>"], - damage: "2d8+6 piercing", + it("formats resistances with value", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + resistances: [{ type: "fire", value: 10, exceptions: [] }], + }, + }, + }), + ); + expect(creature.resistances).toBe("Fire 10"); + }); + + it("formats weaknesses", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + weaknesses: [{ type: "cold-iron", value: 5 }], + }, + }, + }), + ); + expect(creature.weaknesses).toBe("Cold iron 5"); + }); + }); + + describe("speed formatting", () => { + it("formats base speed", () => { + const creature = normalizeFoundryCreature(minimalCreature()); + expect(creature.speed).toBe("25 feet"); + }); + + it("includes other speeds", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + speed: { + value: 40, + otherSpeeds: [ + { type: "fly", value: 120 }, + { type: "swim", value: 40 }, + ], }, - ], - }), - ], - }); + }, + }, + }), + ); + expect(creature.speed).toBe("40 feet, Fly 120 feet, Swim 40 feet"); + }); + + it("includes speed details", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + system: { + ...minimalCreature().system, + attributes: { + ...minimalCreature().system.attributes, + speed: { + value: 25, + details: "ignores difficult terrain", + }, + }, + }, + }), + ); + expect(creature.speed).toBe("25 feet (ignores difficult terrain)"); + }); + }); + + describe("attack normalization", () => { + it("normalizes melee attacks with traits and damage", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "atk1", + name: "dogslicer", + type: "melee", + system: { + bonus: { value: 7 }, + damageRolls: { + abc: { + damage: "1d6", + damageType: "slashing", + }, + }, + traits: { + value: ["agile", "backstabber", "finesse"], + }, + }, + }, + ], + }), + ); const attack = creature.attacks?.[0]; expect(attack).toBeDefined(); + expect(attack?.name).toBe("Dogslicer"); + expect(attack?.activity).toEqual({ number: 1, unit: "action" }); + expect(attack?.segments[0]).toEqual({ + type: "text", + value: "+7 (agile, backstabber, finesse), 1d6 slashing", + }); + }); + + it("expands slugified trait names", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "atk1", + name: "claw", + type: "melee", + system: { + bonus: { value: 18 }, + damageRolls: { + abc: { + damage: "2d8+6", + damageType: "slashing", + }, + }, + traits: { + value: ["reach-10", "deadly-d10", "versatile-p"], + }, + }, + }, + ], + }), + ); + const attack = creature.attacks?.[0]; + expect(attack?.segments[0]).toEqual({ + type: "text", + value: "+18 (reach 10 feet, deadly d10, versatile P), 2d8+6 slashing", + }); + }); + + it("handles multiple damage types", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "atk1", + name: "flaming sword", + type: "melee", + system: { + bonus: { value: 15 }, + damageRolls: { + abc: { + damage: "2d8+5", + damageType: "slashing", + }, + def: { + damage: "1d6", + damageType: "fire", + }, + }, + traits: { value: [] }, + }, + }, + ], + }), + ); + const attack = creature.attacks?.[0]; expect(attack?.segments[0]).toEqual( expect.objectContaining({ type: "text", - value: expect.stringContaining( - "(agile, chaotic, magical, reach 10 feet)", - ), + value: "+15, 2d8+5 slashing plus 1d6 fire", }), ); }); }); - describe("ability formatting", () => { - it("includes traits from abilities in the text", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - bot: [ - { - name: "Change Shape", - activity: { number: 1, unit: "action" }, - traits: [ - "concentrate", - "divine", - "polymorph", - "transmutation", - ], - entries: [ - "The naunet can take the appearance of any creature.", - ], - }, - ], + describe("ability normalization", () => { + it("routes abilities by category", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "a1", + name: "Sense Motive", + type: "action", + system: { + category: "interaction", + actionType: { value: "passive" }, + actions: { value: null }, + traits: { value: [] }, + description: { value: "

Can sense lies.

" }, + }, }, - }), - ], - }); - const ability = creature.abilitiesBot?.[0]; - expect(ability).toBeDefined(); - expect(ability?.name).toBe("Change Shape"); - expect(ability?.activity).toEqual({ number: 1, unit: "action" }); - expect(ability?.segments[0]).toEqual( - expect.objectContaining({ - type: "text", - value: expect.stringContaining( - "(Concentrate, Divine, Polymorph, Transmutation)", - ), + { + _id: "a2", + name: "Shield Block", + type: "action", + system: { + category: "defensive", + actionType: { value: "reaction" }, + actions: { value: null }, + traits: { value: [] }, + description: { + value: "

Blocks with shield.

", + }, + }, + }, + { + _id: "a3", + name: "Breath Weapon", + type: "action", + system: { + category: "offensive", + actionType: { value: "action" }, + actions: { value: 2 }, + traits: { value: ["arcane", "fire"] }, + description: { + value: + "

@Damage[8d6[fire]] in a @Template[cone|distance:40].

", + }, + }, + }, + ], }), ); + expect(creature.abilitiesTop).toHaveLength(1); + expect(creature.abilitiesTop?.[0]?.name).toBe("Sense Motive"); + expect(creature.abilitiesTop?.[0]?.activity).toBeUndefined(); + + expect(creature.abilitiesMid).toHaveLength(1); + expect(creature.abilitiesMid?.[0]?.name).toBe("Shield Block"); + expect(creature.abilitiesMid?.[0]?.activity).toEqual({ + number: 1, + unit: "reaction", + }); + + expect(creature.abilitiesBot).toHaveLength(1); + expect(creature.abilitiesBot?.[0]?.name).toBe("Breath Weapon"); + expect(creature.abilitiesBot?.[0]?.activity).toEqual({ + number: 2, + unit: "action", + }); + }); + + it("strips Foundry enrichment tags from descriptions", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "a1", + name: "Flame Burst", + type: "action", + system: { + category: "offensive", + actionType: { value: "action" }, + actions: { value: 2 }, + traits: { value: [] }, + description: { + value: + "

Deal @Damage[3d6[fire]] damage, @Check[reflex|dc:20|basic] save.

", + }, + }, + }, + ], + }), + ); + expect( + creature.abilitiesBot?.[0]?.segments[0]?.type === "text" + ? creature.abilitiesBot[0].segments[0].value + : undefined, + ).toBe("Deal 3d6 fire damage, DC 20 basic Reflex save."); }); it("parses free action activity", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - bot: [ - { - name: "Adaptive Strike", - activity: { number: 1, unit: "free" }, - entries: ["The naunet chooses adamantine."], - }, - ], + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "a1", + name: "Quick Draw", + type: "action", + system: { + category: "offensive", + actionType: { value: "free" }, + actions: { value: null }, + traits: { value: [] }, + description: { value: "" }, + }, }, - }), - ], - }); - const ability = creature.abilitiesBot?.[0]; - expect(ability?.name).toBe("Adaptive Strike"); - expect(ability?.activity).toEqual({ number: 1, unit: "free" }); - }); - - it("parses reaction activity", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - mid: [ - { - name: "Attack of Opportunity", - activity: { number: 1, unit: "reaction" }, - entries: ["Trigger description."], - }, - ], - }, - }), - ], - }); - const ability = creature.abilitiesMid?.[0]; - expect(ability?.name).toBe("Attack of Opportunity"); - expect(ability?.activity).toEqual({ number: 1, unit: "reaction" }); - }); - - it("parses multi-action activity", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - bot: [ - { - name: "Breath Weapon", - activity: { number: 2, unit: "action" }, - entries: ["Fire breath."], - }, - ], - }, - }), - ], - }); - const ability = creature.abilitiesBot?.[0]; - expect(ability?.name).toBe("Breath Weapon"); - expect(ability?.activity).toEqual({ number: 2, unit: "action" }); - }); - - it("renders ability without activity or traits normally", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - bot: [ - { - name: "Constrict", - entries: ["1d8+8 bludgeoning, DC 26"], - }, - ], - }, - }), - ], - }); - const ability = creature.abilitiesBot?.[0]; - expect(ability).toBeDefined(); - expect(ability?.name).toBe("Constrict"); - expect(ability?.activity).toBeUndefined(); - expect(ability?.segments[0]).toEqual( - expect.objectContaining({ - type: "text", - value: "1d8+8 bludgeoning, DC 26", + ], }), ); + expect(creature.abilitiesBot?.[0]?.activity).toEqual({ + number: 1, + unit: "free", + }); }); - it("includes trigger text before entries", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - abilities: { - mid: [ - { - name: "Wing Deflection", - activity: { number: 1, unit: "reaction" }, - trigger: "The dragon is targeted with an attack.", - entries: ["The dragon raises its wing."], + it("includes traits in ability text", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "a1", + name: "Change Shape", + type: "action", + system: { + category: "offensive", + actionType: { value: "action" }, + actions: { value: 1 }, + traits: { + value: ["concentrate", "polymorph"], }, - ], + description: { + value: "

Takes a new form.

", + }, + }, }, - }), - ], - }); - const ability = creature.abilitiesMid?.[0]; - expect(ability).toBeDefined(); - expect(ability?.activity).toEqual({ number: 1, unit: "reaction" }); - expect(ability?.trigger).toBe("The dragon is targeted with an attack."); - expect(ability?.segments[0]).toEqual( - expect.objectContaining({ - type: "text", - value: "The dragon raises its wing.", + ], }), ); + expect( + creature.abilitiesBot?.[0]?.segments[0]?.type === "text" + ? creature.abilitiesBot[0].segments[0].value + : undefined, + ).toBe("(Concentrate, Polymorph) Takes a new form."); }); }); - describe("resistances formatting", () => { - it("formats resistance without amount", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - resistances: [{ name: "physical" }], + describe("spellcasting normalization", () => { + it("normalizes prepared spells by rank", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "entry1", + name: "Primal Prepared Spells", + type: "spellcastingEntry", + system: { + tradition: { value: "primal" }, + prepared: { value: "prepared" }, + spelldc: { dc: 30, value: 22 }, + }, }, - }), - ], - }); - expect(creature.resistances).toBe("Physical"); + { + _id: "s1", + name: "Earthquake", + type: "spell", + system: { + location: { value: "entry1" }, + level: { value: 6 }, + traits: { value: [] }, + }, + }, + { + _id: "s2", + name: "Heal", + type: "spell", + system: { + location: { value: "entry1" }, + level: { value: 3 }, + traits: { value: [] }, + }, + }, + { + _id: "s3", + name: "Detect Magic", + type: "spell", + system: { + location: { value: "entry1" }, + level: { value: 1 }, + traits: { value: ["cantrip"] }, + }, + }, + ], + }), + ); + expect(creature.spellcasting).toHaveLength(1); + const sc = creature.spellcasting?.[0]; + expect(sc?.name).toBe("Primal Prepared Spells"); + expect(sc?.headerText).toBe("DC 30, attack +22"); + expect(sc?.daily).toEqual([ + { uses: 6, each: true, spells: ["Earthquake"] }, + { uses: 3, each: true, spells: ["Heal"] }, + ]); + expect(sc?.atWill).toEqual(["Detect Magic"]); }); - it("formats resistance with amount", () => { - const [creature] = normalizePf2eBestiary({ - creature: [ - minimalCreature({ - defenses: { - resistances: [{ name: "fire", amount: 10 }], + it("normalizes innate spells with uses", () => { + const creature = normalizeFoundryCreature( + minimalCreature({ + items: [ + { + _id: "entry1", + name: "Divine Innate Spells", + type: "spellcastingEntry", + system: { + tradition: { value: "divine" }, + prepared: { value: "innate" }, + spelldc: { dc: 32 }, + }, }, - }), - ], - }); - expect(creature.resistances).toBe("Fire 10"); + { + _id: "s1", + name: "Sure Strike", + type: "spell", + system: { + location: { + value: "entry1", + heightenedLevel: 1, + uses: { max: 3, value: 3 }, + }, + level: { value: 1 }, + traits: { value: [] }, + }, + }, + ], + }), + ); + const sc = creature.spellcasting?.[0]; + expect(sc?.headerText).toBe("DC 32"); + expect(sc?.daily).toEqual([ + { + uses: 1, + each: true, + spells: ["Sure Strike (\u00d73)"], + }, + ]); }); }); }); diff --git a/apps/web/src/adapters/__tests__/pf2e-bestiary-index-adapter.test.ts b/apps/web/src/adapters/__tests__/pf2e-bestiary-index-adapter.test.ts index dc36785..5b63863 100644 --- a/apps/web/src/adapters/__tests__/pf2e-bestiary-index-adapter.test.ts +++ b/apps/web/src/adapters/__tests__/pf2e-bestiary-index-adapter.test.ts @@ -1,6 +1,11 @@ import { describe, expect, it } from "vitest"; + +const PACK_DIR_PREFIX = /^pathfinder-monster-core\//; +const JSON_EXTENSION = /\.json$/; + import { getAllPf2eSourceCodes, + getCreaturePathsForSource, getDefaultPf2eFetchUrl, getPf2eSourceDisplayName, loadPf2eBestiaryIndex, @@ -30,7 +35,15 @@ describe("loadPf2eBestiaryIndex", () => { it("contains a substantial number of creatures", () => { const index = loadPf2eBestiaryIndex(); - expect(index.creatures.length).toBeGreaterThan(2000); + expect(index.creatures.length).toBeGreaterThan(2500); + }); + + it("creatures have size and type populated", () => { + const index = loadPf2eBestiaryIndex(); + const withSize = index.creatures.filter((c) => c.size !== ""); + const withType = index.creatures.filter((c) => c.type !== ""); + expect(withSize.length).toBeGreaterThan(index.creatures.length * 0.9); + expect(withType.length).toBeGreaterThan(index.creatures.length * 0.8); }); it("returns the same cached instance on subsequent calls", () => { @@ -49,20 +62,42 @@ describe("getAllPf2eSourceCodes", () => { }); describe("getDefaultPf2eFetchUrl", () => { - it("returns Pf2eTools GitHub URL with lowercase source code", () => { - const url = getDefaultPf2eFetchUrl("B1"); + it("returns Foundry VTT PF2e base URL", () => { + const url = getDefaultPf2eFetchUrl("pathfinder-monster-core"); expect(url).toBe( - "https://raw.githubusercontent.com/Pf2eToolsOrg/Pf2eTools/dev/data/bestiary/creatures-b1.json", + "https://raw.githubusercontent.com/foundryvtt/pf2e/v13-dev/packs/pf2e/", ); }); + + it("normalizes custom base URL with trailing slash", () => { + const url = getDefaultPf2eFetchUrl( + "pathfinder-monster-core", + "https://example.com/pf2e", + ); + expect(url).toBe("https://example.com/pf2e/"); + }); }); describe("getPf2eSourceDisplayName", () => { it("returns display name for a known source", () => { - expect(getPf2eSourceDisplayName("B1")).toBe("Bestiary"); + const name = getPf2eSourceDisplayName("pathfinder-monster-core"); + expect(name).toBe("Monster Core"); }); it("falls back to source code for unknown source", () => { expect(getPf2eSourceDisplayName("UNKNOWN")).toBe("UNKNOWN"); }); }); + +describe("getCreaturePathsForSource", () => { + it("returns file paths for a known source", () => { + const paths = getCreaturePathsForSource("pathfinder-monster-core"); + expect(paths.length).toBeGreaterThan(100); + expect(paths[0]).toMatch(PACK_DIR_PREFIX); + expect(paths[0]).toMatch(JSON_EXTENSION); + }); + + it("returns empty array for unknown source", () => { + expect(getCreaturePathsForSource("nonexistent")).toEqual([]); + }); +}); diff --git a/apps/web/src/adapters/__tests__/strip-foundry-tags.test.ts b/apps/web/src/adapters/__tests__/strip-foundry-tags.test.ts new file mode 100644 index 0000000..495e3d9 --- /dev/null +++ b/apps/web/src/adapters/__tests__/strip-foundry-tags.test.ts @@ -0,0 +1,162 @@ +import { describe, expect, it } from "vitest"; +import { stripFoundryTags } from "../strip-foundry-tags.js"; + +describe("stripFoundryTags", () => { + describe("@Damage tags", () => { + it("formats damage with type bracket", () => { + expect(stripFoundryTags("@Damage[3d6+10[fire]]")).toBe("3d6+10 fire"); + }); + + it("prefers display text when present", () => { + expect( + stripFoundryTags("@Damage[3d6+10[fire]]{3d6+10 fire damage}"), + ).toBe("3d6+10 fire damage"); + }); + + it("handles multiple damage types", () => { + expect( + stripFoundryTags("@Damage[2d8+5[slashing]] plus @Damage[1d6[fire]]"), + ).toBe("2d8+5 slashing plus 1d6 fire"); + }); + }); + + describe("@Check tags", () => { + it("formats basic saving throw", () => { + expect(stripFoundryTags("@Check[reflex|dc:33|basic]")).toBe( + "DC 33 basic Reflex", + ); + }); + + it("formats non-basic check", () => { + expect(stripFoundryTags("@Check[athletics|dc:25]")).toBe( + "DC 25 Athletics", + ); + }); + + it("formats check without DC", () => { + expect(stripFoundryTags("@Check[fortitude]")).toBe("Fortitude"); + }); + }); + + describe("@UUID tags", () => { + it("extracts display text", () => { + expect( + stripFoundryTags( + "@UUID[Compendium.pf2e.conditionitems.Item.Grabbed]{Grabbed}", + ), + ).toBe("Grabbed"); + }); + + it("extracts last segment when no display text", () => { + expect( + stripFoundryTags("@UUID[Compendium.pf2e.conditionitems.Item.Grabbed]"), + ).toBe("Grabbed"); + }); + }); + + describe("@Template tags", () => { + it("formats cone template", () => { + expect(stripFoundryTags("@Template[cone|distance:40]")).toBe( + "40-foot cone", + ); + }); + + it("formats emanation template", () => { + expect(stripFoundryTags("@Template[emanation|distance:10]")).toBe( + "10-foot emanation", + ); + }); + + it("prefers display text", () => { + expect( + stripFoundryTags("@Template[cone|distance:40]{40-foot cone}"), + ).toBe("40-foot cone"); + }); + }); + + describe("unknown @Tag patterns", () => { + it("uses display text for unknown tags", () => { + expect(stripFoundryTags("@Localize[some.key]{Some Text}")).toBe( + "Some Text", + ); + }); + + it("strips unknown tags without display text", () => { + expect(stripFoundryTags("@Localize[some.key]")).toBe(""); + }); + }); + + describe("HTML stripping", () => { + it("strips paragraph tags", () => { + expect(stripFoundryTags("

text

")).toBe("text"); + }); + + it("converts br to newline", () => { + expect(stripFoundryTags("line1
line2")).toBe("line1\nline2"); + }); + + it("converts hr to newline", () => { + expect(stripFoundryTags("before
after")).toBe("before\nafter"); + }); + + it("strips strong and em tags", () => { + expect(stripFoundryTags("bold italic")).toBe( + "bold italic", + ); + }); + + it("converts p-to-p transitions to newlines", () => { + expect(stripFoundryTags("

first

second

")).toBe( + "first\nsecond", + ); + }); + + it("strips action-glyph spans", () => { + expect( + stripFoundryTags('1 Strike'), + ).toBe("Strike"); + }); + }); + + describe("HTML entities", () => { + it("decodes &", () => { + expect(stripFoundryTags("fire & ice")).toBe("fire & ice"); + }); + + it("decodes < and >", () => { + expect(stripFoundryTags("<tag>")).toBe(""); + }); + + it("decodes "", () => { + expect(stripFoundryTags(""hello"")).toBe('"hello"'); + }); + }); + + describe("whitespace handling", () => { + it("collapses multiple spaces", () => { + expect(stripFoundryTags("a b c")).toBe("a b c"); + }); + + it("collapses multiple blank lines", () => { + expect(stripFoundryTags("a\n\n\nb")).toBe("a\nb"); + }); + + it("trims leading and trailing whitespace", () => { + expect(stripFoundryTags(" hello ")).toBe("hello"); + }); + }); + + describe("combined/edge cases", () => { + it("handles enrichment tags inside HTML", () => { + expect( + stripFoundryTags( + "

Deal @Damage[2d6[fire]] damage, @Check[reflex|dc:20|basic] save.

", + ), + ).toBe("Deal 2d6 fire damage, DC 20 basic Reflex save."); + }); + + it("handles empty string", () => { + expect(stripFoundryTags("")).toBe(""); + }); + }); +}); diff --git a/apps/web/src/adapters/bestiary-cache.ts b/apps/web/src/adapters/bestiary-cache.ts index 83dd26b..5f4de43 100644 --- a/apps/web/src/adapters/bestiary-cache.ts +++ b/apps/web/src/adapters/bestiary-cache.ts @@ -3,7 +3,7 @@ import { type IDBPDatabase, openDB } from "idb"; const DB_NAME = "initiative-bestiary"; const STORE_NAME = "sources"; -const DB_VERSION = 4; +const DB_VERSION = 5; interface CachedSourceInfo { readonly sourceCode: string; diff --git a/apps/web/src/adapters/pf2e-bestiary-adapter.ts b/apps/web/src/adapters/pf2e-bestiary-adapter.ts index ed4d25c..34dbbc9 100644 --- a/apps/web/src/adapters/pf2e-bestiary-adapter.ts +++ b/apps/web/src/adapters/pf2e-bestiary-adapter.ts @@ -1,389 +1,531 @@ import type { CreatureId, Pf2eCreature, + SpellcastingBlock, TraitBlock, - TraitSegment, } from "@initiative/domain"; import { creatureId } from "@initiative/domain"; -import { stripTags } from "./strip-tags.js"; +import { stripFoundryTags } from "./strip-foundry-tags.js"; -// -- Raw Pf2eTools types (minimal, for parsing) -- +// -- Raw Foundry VTT types (minimal, for parsing) -- -interface RawPf2eCreature { +interface RawFoundryCreature { + _id: string; name: string; - source: string; - level?: number; - traits?: string[]; - perception?: { std?: number }; - senses?: { name?: string; type?: string; range?: number }[]; - languages?: { languages?: string[] }; - skills?: Record; - abilityMods?: Record; - items?: string[]; - defenses?: RawDefenses; - speed?: Record; - attacks?: RawAttack[]; - abilities?: { - top?: RawAbility[]; - mid?: RawAbility[]; - bot?: RawAbility[]; + type: string; + system: { + abilities: Record; + attributes: { + ac: { value: number; details?: string }; + hp: { max: number; details?: string }; + speed: { + value: number; + otherSpeeds?: { type: string; value: number }[]; + details?: string; + }; + immunities?: { type: string; exceptions?: string[] }[]; + resistances?: { type: string; value: number; exceptions?: string[] }[]; + weaknesses?: { type: string; value: number }[]; + allSaves?: { value: string }; + }; + details: { + level: { value: number }; + languages: { value?: string[]; details?: string }; + publication: { license: string; remaster: boolean; title: string }; + }; + perception: { + mod: number; + details?: string; + senses?: { type: string; acuity?: string; range?: number }[]; + }; + saves: { + fortitude: { value: number; saveDetail?: string }; + reflex: { value: number; saveDetail?: string }; + will: { value: number; saveDetail?: string }; + }; + skills: Record; + traits: { rarity: string; size: { value: string }; value: string[] }; }; - _copy?: unknown; + items: RawFoundryItem[]; } -interface RawDefenses { - ac?: Record; - savingThrows?: { - fort?: { std?: number }; - ref?: { std?: number }; - will?: { std?: number }; - }; - hp?: { hp?: number }[]; - immunities?: (string | { name: string })[]; - resistances?: { amount?: number; name: string; note?: string }[]; - weaknesses?: { amount?: number; name: string; note?: string }[]; -} - -interface RawAbility { - name?: string; - activity?: { number?: number; unit?: string }; - trigger?: string; - traits?: string[]; - entries?: RawEntry[]; -} - -interface RawAttack { - range?: string; +interface RawFoundryItem { + _id: string; name: string; - attack?: number; - traits?: string[]; - damage?: string; + type: string; + system: Record; + sort?: number; } -type RawEntry = string | RawEntryObject; - -interface RawEntryObject { - type?: string; - items?: (string | { name?: string; entry?: string })[]; - entries?: RawEntry[]; +interface MeleeSystem { + bonus?: { value: number }; + damageRolls?: Record; + traits?: { value: string[] }; } -// -- Module state -- - -let sourceDisplayNames: Record = {}; - -export function setPf2eSourceDisplayNames(names: Record): void { - sourceDisplayNames = names; +interface ActionSystem { + category?: string; + actionType?: { value: string }; + actions?: { value: number | null }; + traits?: { value: string[] }; + description?: { value: string }; } +interface SpellcastingEntrySystem { + tradition?: { value: string }; + prepared?: { value: string }; + spelldc?: { dc: number; value?: number }; +} + +interface SpellSystem { + location?: { + value: string; + heightenedLevel?: number; + uses?: { max: number; value: number }; + }; + level?: { value: number }; + traits?: { value: string[] }; +} + +const SIZE_MAP: Record = { + tiny: "tiny", + sm: "small", + med: "medium", + lg: "large", + huge: "huge", + grg: "gargantuan", +}; + // -- Helpers -- function capitalize(s: string): string { return s.charAt(0).toUpperCase() + s.slice(1); } -function parseActivity( - activity: { number?: number; unit?: string } | undefined, -): { number: number; unit: "action" | "free" | "reaction" } | undefined { - if (!activity?.unit) return undefined; - const unit = activity.unit; - if (unit === "action" || unit === "free" || unit === "reaction") { - return { number: activity.number ?? 1, unit }; - } - return undefined; -} - -function stripAngleBrackets(s: string): string { - return s.replaceAll(/<([^>]+)>/g, "$1"); -} - function makeCreatureId(source: string, name: string): CreatureId { const slug = name .toLowerCase() .replaceAll(/[^a-z0-9]+/g, "-") .replaceAll(/(^-|-$)/g, ""); - return creatureId(`${source.toLowerCase()}:${slug}`); + return creatureId(`${source}:${slug}`); } -function formatSpeed( - speed: Record | undefined, -): string { - if (!speed) return ""; - const parts: string[] = []; - for (const [mode, value] of Object.entries(speed)) { - if (typeof value === "number") { - parts.push( - mode === "walk" ? `${value} feet` : `${capitalize(mode)} ${value} feet`, - ); - } else if (typeof value === "object" && "number" in value) { - parts.push( - mode === "walk" - ? `${value.number} feet` - : `${capitalize(mode)} ${value.number} feet`, - ); - } +const NUMERIC_SLUG = /^(.+)-(\d+)$/; +const LETTER_SLUG = /^(.+)-([a-z])$/; + +/** Format rules for traits with a numeric suffix: "reach-10" → "reach 10 feet" */ +const NUMERIC_TRAIT_FORMATS: Record string> = { + reach: (n) => `reach ${n} feet`, + range: (n) => `range ${n} feet`, + "range-increment": (n) => `range increment ${n} feet`, + versatile: (n) => `versatile ${n}`, + deadly: (n) => `deadly d${n}`, + fatal: (n) => `fatal d${n}`, + "fatal-aim": (n) => `fatal aim d${n}`, + reload: (n) => `reload ${n}`, +}; + +/** Format rules for traits with a letter suffix: "versatile-p" → "versatile P" */ +const LETTER_TRAIT_FORMATS: Record string> = { + versatile: (l) => `versatile ${l.toUpperCase()}`, + deadly: (l) => `deadly d${l}`, +}; + +/** Expand slugified trait names: "reach-10" → "reach 10 feet" */ +function formatTrait(slug: string): string { + const numMatch = NUMERIC_SLUG.exec(slug); + if (numMatch) { + const [, base, num] = numMatch; + const fmt = NUMERIC_TRAIT_FORMATS[base]; + return fmt ? fmt(num) : `${base} ${num}`; } - return parts.join(", "); + const letterMatch = LETTER_SLUG.exec(slug); + if (letterMatch) { + const [, base, letter] = letterMatch; + const fmt = LETTER_TRAIT_FORMATS[base]; + if (fmt) return fmt(letter); + } + return slug.replaceAll("-", " "); } -function formatSkills( - skills: Record | undefined, -): string | undefined { - if (!skills) return undefined; - const parts = Object.entries(skills) - .map(([name, val]) => `${capitalize(name)} +${val.std ?? 0}`) - .sort(); - return parts.length > 0 ? parts.join(", ") : undefined; -} +// -- Formatting -- function formatSenses( - senses: - | readonly { name?: string; type?: string; range?: number }[] - | undefined, + senses: { type: string; acuity?: string; range?: number }[] | undefined, ): string | undefined { if (!senses || senses.length === 0) return undefined; return senses .map((s) => { - const label = stripTags(s.name ?? s.type ?? ""); - if (!label) return ""; - const parts = [capitalize(label)]; - if (s.type && s.name) parts.push(`(${s.type})`); + const parts = [capitalize(s.type.replaceAll("-", " "))]; + if (s.acuity && s.acuity !== "precise") { + parts.push(`(${s.acuity})`); + } if (s.range != null) parts.push(`${s.range} feet`); return parts.join(" "); }) - .filter(Boolean) .join(", "); } function formatLanguages( - languages: { languages?: string[] } | undefined, + languages: { value?: string[]; details?: string } | undefined, ): string | undefined { - if (!languages?.languages || languages.languages.length === 0) - return undefined; - return languages.languages.map(capitalize).join(", "); + if (!languages?.value || languages.value.length === 0) return undefined; + const list = languages.value.map(capitalize).join(", "); + return languages.details ? `${list} (${languages.details})` : list; +} + +function formatSkills( + skills: Record | undefined, +): string | undefined { + if (!skills) return undefined; + const entries = Object.entries(skills); + if (entries.length === 0) return undefined; + return entries + .map(([name, val]) => { + const label = capitalize(name.replaceAll("-", " ")); + return `${label} +${val.base}`; + }) + .sort() + .join(", "); } function formatImmunities( - immunities: readonly (string | { name: string })[] | undefined, + immunities: { type: string; exceptions?: string[] }[] | undefined, ): string | undefined { if (!immunities || immunities.length === 0) return undefined; return immunities - .map((i) => capitalize(typeof i === "string" ? i : i.name)) + .map((i) => { + const base = capitalize(i.type.replaceAll("-", " ")); + if (i.exceptions && i.exceptions.length > 0) { + return `${base} (except ${i.exceptions.map((e) => capitalize(e.replaceAll("-", " "))).join(", ")})`; + } + return base; + }) .join(", "); } function formatResistances( resistances: - | readonly { amount?: number; name: string; note?: string }[] + | { type: string; value: number; exceptions?: string[] }[] | undefined, ): string | undefined { if (!resistances || resistances.length === 0) return undefined; return resistances .map((r) => { - const base = - r.amount == null - ? capitalize(r.name) - : `${capitalize(r.name)} ${r.amount}`; - return r.note ? `${base} (${r.note})` : base; + const base = `${capitalize(r.type.replaceAll("-", " "))} ${r.value}`; + if (r.exceptions && r.exceptions.length > 0) { + return `${base} (except ${r.exceptions.map((e) => capitalize(e.replaceAll("-", " "))).join(", ")})`; + } + return base; }) .join(", "); } function formatWeaknesses( - weaknesses: - | readonly { amount?: number; name: string; note?: string }[] - | undefined, + weaknesses: { type: string; value: number }[] | undefined, ): string | undefined { if (!weaknesses || weaknesses.length === 0) return undefined; return weaknesses - .map((w) => { - const base = - w.amount == null - ? capitalize(w.name) - : `${capitalize(w.name)} ${w.amount}`; - return w.note ? `${base} (${w.note})` : base; - }) + .map((w) => `${capitalize(w.type.replaceAll("-", " "))} ${w.value}`) .join(", "); } -// -- Entry parsing -- - -function segmentizeEntries(entries: unknown): TraitSegment[] { - if (!Array.isArray(entries)) return []; - const segments: TraitSegment[] = []; - for (const entry of entries) { - if (typeof entry === "string") { - segments.push({ type: "text", value: stripTags(entry) }); - } else if (typeof entry === "object" && entry !== null) { - const obj = entry as RawEntryObject; - if (obj.type === "list" && Array.isArray(obj.items)) { - segments.push({ - type: "list", - items: obj.items.map((item) => { - if (typeof item === "string") { - return { text: stripTags(item) }; - } - return { label: item.name, text: stripTags(item.entry ?? "") }; - }), - }); - } else if (Array.isArray(obj.entries)) { - segments.push(...segmentizeEntries(obj.entries)); - } +function formatSpeed(speed: { + value: number; + otherSpeeds?: { type: string; value: number }[]; + details?: string; +}): string { + const parts = [`${speed.value} feet`]; + if (speed.otherSpeeds) { + for (const s of speed.otherSpeeds) { + parts.push(`${capitalize(s.type)} ${s.value} feet`); } } - return segments; + const base = parts.join(", "); + return speed.details ? `${base} (${speed.details})` : base; } -function formatAffliction(a: Record): TraitSegment[] { - const parts: string[] = []; - if (a.note) parts.push(stripTags(String(a.note))); - if (a.DC) parts.push(`DC ${a.DC}`); - if (a.savingThrow) parts.push(String(a.savingThrow)); - const stages = a.stages as - | { stage: number; entry: string; duration: string }[] - | undefined; - if (stages) { - for (const s of stages) { - parts.push(`Stage ${s.stage}: ${stripTags(s.entry)} (${s.duration})`); - } - } - return parts.length > 0 ? [{ type: "text", value: parts.join("; ") }] : []; -} +// -- Attack normalization -- -function normalizeAbilities( - abilities: readonly RawAbility[] | undefined, -): TraitBlock[] | undefined { - if (!abilities || abilities.length === 0) return undefined; - return abilities - .filter((a) => a.name) - .map((a) => { - const raw = a as Record; - const activity = parseActivity(a.activity); - const trigger = a.trigger ? stripTags(a.trigger) : undefined; - const traits = - a.traits && a.traits.length > 0 - ? `(${a.traits.map((t) => capitalize(stripAngleBrackets(stripTags(t)))).join(", ")}) ` - : ""; - const prefix = traits; - const body = Array.isArray(a.entries) - ? segmentizeEntries(a.entries) - : formatAffliction(raw); - const name = stripTags(a.name as string); - if (prefix && body.length > 0 && body[0].type === "text") { - return { - name, - activity, - trigger, - segments: [ - { type: "text" as const, value: prefix + body[0].value }, - ...body.slice(1), - ], - }; - } - return { - name, - activity, - trigger, - segments: prefix - ? [{ type: "text" as const, value: prefix }, ...body] - : body, - }; - }); -} - -function normalizeAttacks( - attacks: readonly RawAttack[] | undefined, -): TraitBlock[] | undefined { - if (!attacks || attacks.length === 0) return undefined; - return attacks.map((a) => { - const parts: string[] = []; - if (a.range) parts.push(a.range); - const attackMod = a.attack == null ? "" : ` +${a.attack}`; - const traits = - a.traits && a.traits.length > 0 - ? ` (${a.traits.map((t) => stripAngleBrackets(stripTags(t))).join(", ")})` - : ""; - const damage = a.damage - ? `, ${stripAngleBrackets(stripTags(a.damage))}` - : ""; - return { - name: capitalize(stripTags(a.name)), - activity: { number: 1, unit: "action" as const }, - segments: [ - { - type: "text" as const, - value: `${parts.join(" ")}${attackMod}${traits}${damage}`, - }, - ], - }; - }); -} - -// -- Defenses extraction -- - -function extractDefenses(defenses: RawDefenses | undefined) { - const acRecord = defenses?.ac ?? {}; - const acStd = (acRecord.std as number | undefined) ?? 0; - const acEntries = Object.entries(acRecord).filter(([k]) => k !== "std"); +function normalizeAttack(item: RawFoundryItem): TraitBlock { + const sys = item.system as unknown as MeleeSystem; + const bonus = sys.bonus?.value ?? 0; + const traits = sys.traits?.value ?? []; + const damageEntries = Object.values(sys.damageRolls ?? {}); + const damage = damageEntries + .map((d) => `${d.damage} ${d.damageType}`) + .join(" plus "); + const traitStr = + traits.length > 0 ? ` (${traits.map(formatTrait).join(", ")})` : ""; return { - ac: acStd, - acConditional: - acEntries.length > 0 - ? acEntries.map(([k, v]) => `${v} ${k}`).join(", ") - : undefined, - saveFort: defenses?.savingThrows?.fort?.std ?? 0, - saveRef: defenses?.savingThrows?.ref?.std ?? 0, - saveWill: defenses?.savingThrows?.will?.std ?? 0, - hp: defenses?.hp?.[0]?.hp ?? 0, - immunities: formatImmunities(defenses?.immunities), - resistances: formatResistances(defenses?.resistances), - weaknesses: formatWeaknesses(defenses?.weaknesses), + name: capitalize(item.name), + activity: { number: 1, unit: "action" }, + segments: [ + { + type: "text", + value: `+${bonus}${traitStr}, ${damage}`, + }, + ], }; } +function parseActivity( + actionType: string | undefined, + actionCount: number | null | undefined, +): { number: number; unit: "action" | "free" | "reaction" } | undefined { + if (actionType === "action") { + return { number: actionCount ?? 1, unit: "action" }; + } + if (actionType === "reaction") { + return { number: 1, unit: "reaction" }; + } + if (actionType === "free") { + return { number: 1, unit: "free" }; + } + return undefined; +} + +// -- Ability normalization -- + +function normalizeAbility(item: RawFoundryItem): TraitBlock { + const sys = item.system as unknown as ActionSystem; + const actionType = sys.actionType?.value; + const actionCount = sys.actions?.value; + const description = stripFoundryTags(sys.description?.value ?? ""); + const traits = sys.traits?.value ?? []; + + const activity = parseActivity(actionType, actionCount); + + const traitStr = + traits.length > 0 + ? `(${traits.map((t) => capitalize(formatTrait(t))).join(", ")}) ` + : ""; + + const text = traitStr ? `${traitStr}${description}` : description; + const segments: { type: "text"; value: string }[] = text + ? [{ type: "text", value: text }] + : []; + + return { name: item.name, activity, segments }; +} + +// -- Spellcasting normalization -- + +function classifySpell(spell: RawFoundryItem): { + isCantrip: boolean; + rank: number; + label: string; +} { + const sys = spell.system as unknown as SpellSystem; + const isCantrip = (sys.traits?.value ?? []).includes("cantrip"); + const rank = sys.location?.heightenedLevel ?? sys.level?.value ?? 0; + const uses = sys.location?.uses; + const label = + uses && uses.max > 1 ? `${spell.name} (\u00d7${uses.max})` : spell.name; + return { isCantrip, rank, label }; +} + +function normalizeSpellcastingEntry( + entry: RawFoundryItem, + allSpells: readonly RawFoundryItem[], +): SpellcastingBlock { + const sys = entry.system as unknown as SpellcastingEntrySystem; + const tradition = capitalize(sys.tradition?.value ?? ""); + const prepared = sys.prepared?.value ?? ""; + const dc = sys.spelldc?.dc ?? 0; + const attack = sys.spelldc?.value ?? 0; + + const name = entry.name || `${tradition} ${capitalize(prepared)} Spells`; + const headerText = `DC ${dc}${attack ? `, attack +${attack}` : ""}`; + + const linkedSpells = allSpells.filter( + (s) => (s.system as unknown as SpellSystem).location?.value === entry._id, + ); + + const byRank = new Map(); + const cantrips: string[] = []; + + for (const spell of linkedSpells) { + const { isCantrip, rank, label } = classifySpell(spell); + if (isCantrip) { + cantrips.push(spell.name); + continue; + } + const existing = byRank.get(rank) ?? []; + existing.push(label); + byRank.set(rank, existing); + } + + const daily = [...byRank.entries()] + .sort(([a], [b]) => b - a) + .map(([rank, spellNames]) => ({ + uses: rank, + each: true, + spells: spellNames, + })); + + return { + name, + headerText, + atWill: orUndefined(cantrips), + daily: orUndefined(daily), + }; +} + +function normalizeSpellcasting( + items: readonly RawFoundryItem[], +): SpellcastingBlock[] { + const entries = items.filter((i) => i.type === "spellcastingEntry"); + const spells = items.filter((i) => i.type === "spell"); + return entries.map((entry) => normalizeSpellcastingEntry(entry, spells)); +} + // -- Main normalization -- -function normalizeCreature(raw: RawPf2eCreature): Pf2eCreature { - const source = raw.source ?? ""; - const defenses = extractDefenses(raw.defenses); - const mods = raw.abilityMods ?? {}; +function orUndefined(arr: T[]): T[] | undefined { + return arr.length > 0 ? arr : undefined; +} +/** Build display traits: [rarity (if not common), size, ...type traits] */ +function buildTraits(traits: { + rarity: string; + size: { value: string }; + value: string[]; +}): string[] { + const result: string[] = []; + if (traits.rarity && traits.rarity !== "common") { + result.push(traits.rarity); + } + const size = SIZE_MAP[traits.size.value] ?? "medium"; + result.push(size); + result.push(...traits.value); + return result; +} + +const HEALING_GLOSSARY = + /^

@Localize\[PF2E\.NPC\.Abilities\.Glossary\.(FastHealing|Regeneration|NegativeHealing)\]/; + +/** Glossary-only abilities that duplicate structured data shown elsewhere. */ +const REDUNDANT_GLOSSARY = + /^

@Localize\[PF2E\.NPC\.Abilities\.Glossary\.(ConstantSpells|AtWillSpells)\]/; + +const STRIP_GLOSSARY_AND_P = /

@Localize\[[^\]]+\]<\/p>|<\/?p>/g; + +/** True when the description has no user-visible content beyond glossary tags. */ +function isGlossaryOnly(desc: string | undefined): boolean { + if (!desc) return true; + return desc.replace(STRIP_GLOSSARY_AND_P, "").trim() === ""; +} + +function isRedundantAbility( + item: RawFoundryItem, + excludeName: string | undefined, + hpDetails: string | undefined, +): boolean { + const sys = item.system as unknown as ActionSystem; + const desc = sys.description?.value; + // Ability duplicates the allSaves line — suppress only if glossary-only + if (excludeName && item.name.toLowerCase() === excludeName.toLowerCase()) { + return isGlossaryOnly(desc); + } + if (!desc) return false; + // Healing/regen glossary when hp.details already shows the info + if (hpDetails && HEALING_GLOSSARY.test(desc)) return true; + // Spell mechanic glossary reminders shown in the spellcasting section + if (REDUNDANT_GLOSSARY.test(desc)) return true; + return false; +} + +function actionsByCategory( + items: readonly RawFoundryItem[], + category: string, + excludeName?: string, + hpDetails?: string, +): TraitBlock[] { + return items + .filter( + (a) => + a.type === "action" && + (a.system as unknown as ActionSystem).category === category && + !isRedundantAbility(a, excludeName, hpDetails), + ) + .map(normalizeAbility); +} + +function extractAbilityMods( + mods: Record, +): Pf2eCreature["abilityMods"] { return { - system: "pf2e", - id: makeCreatureId(source, raw.name), - name: raw.name, - source, - sourceDisplayName: sourceDisplayNames[source] ?? source, - level: raw.level ?? 0, - traits: raw.traits ?? [], - perception: raw.perception?.std ?? 0, - senses: formatSenses(raw.senses), - languages: formatLanguages(raw.languages), - skills: formatSkills(raw.skills), - abilityMods: { - str: mods.str ?? 0, - dex: mods.dex ?? 0, - con: mods.con ?? 0, - int: mods.int ?? 0, - wis: mods.wis ?? 0, - cha: mods.cha ?? 0, - }, - ...defenses, - speed: formatSpeed(raw.speed), - attacks: normalizeAttacks(raw.attacks), - abilitiesTop: normalizeAbilities(raw.abilities?.top), - abilitiesMid: normalizeAbilities(raw.abilities?.mid), - abilitiesBot: normalizeAbilities(raw.abilities?.bot), + str: mods.str?.mod ?? 0, + dex: mods.dex?.mod ?? 0, + con: mods.con?.mod ?? 0, + int: mods.int?.mod ?? 0, + wis: mods.wis?.mod ?? 0, + cha: mods.cha?.mod ?? 0, }; } -export function normalizePf2eBestiary(raw: { - creature: unknown[]; -}): Pf2eCreature[] { - return (raw.creature ?? []) - .filter((c: unknown) => { - const obj = c as { _copy?: unknown }; - return !obj._copy; - }) - .map((c) => normalizeCreature(c as RawPf2eCreature)); +export function normalizeFoundryCreature( + raw: unknown, + sourceCode?: string, + sourceDisplayName?: string, +): Pf2eCreature { + const r = raw as RawFoundryCreature; + const sys = r.system; + const publication = sys.details?.publication; + + const source = sourceCode ?? publication?.title ?? ""; + const items = r.items ?? []; + const allSavesText = sys.attributes.allSaves?.value ?? ""; + + return { + system: "pf2e", + id: makeCreatureId(source, r.name), + name: r.name, + source, + sourceDisplayName: sourceDisplayName ?? publication?.title ?? "", + level: sys.details?.level?.value ?? 0, + traits: buildTraits(sys.traits), + perception: sys.perception?.mod ?? 0, + senses: formatSenses(sys.perception?.senses), + languages: formatLanguages(sys.details?.languages), + skills: formatSkills(sys.skills), + abilityMods: extractAbilityMods(sys.abilities ?? {}), + ac: sys.attributes.ac.value, + acConditional: sys.attributes.ac.details || undefined, + saveFort: sys.saves.fortitude.value, + saveRef: sys.saves.reflex.value, + saveWill: sys.saves.will.value, + saveConditional: allSavesText || undefined, + hp: sys.attributes.hp.max, + hpDetails: sys.attributes.hp.details || undefined, + immunities: formatImmunities(sys.attributes.immunities), + resistances: formatResistances(sys.attributes.resistances), + weaknesses: formatWeaknesses(sys.attributes.weaknesses), + speed: formatSpeed(sys.attributes.speed), + attacks: orUndefined( + items.filter((i) => i.type === "melee").map(normalizeAttack), + ), + abilitiesTop: orUndefined(actionsByCategory(items, "interaction")), + abilitiesMid: orUndefined( + actionsByCategory( + items, + "defensive", + allSavesText || undefined, + sys.attributes.hp.details || undefined, + ), + ), + abilitiesBot: orUndefined(actionsByCategory(items, "offensive")), + spellcasting: orUndefined(normalizeSpellcasting(items)), + }; +} + +export function normalizeFoundryCreatures( + rawCreatures: unknown[], + sourceCode?: string, + sourceDisplayName?: string, +): Pf2eCreature[] { + return rawCreatures.map((raw) => + normalizeFoundryCreature(raw, sourceCode, sourceDisplayName), + ); } diff --git a/apps/web/src/adapters/pf2e-bestiary-index-adapter.ts b/apps/web/src/adapters/pf2e-bestiary-index-adapter.ts index db89769..8f8694c 100644 --- a/apps/web/src/adapters/pf2e-bestiary-index-adapter.ts +++ b/apps/web/src/adapters/pf2e-bestiary-index-adapter.ts @@ -14,6 +14,8 @@ interface CompactCreature { readonly pc: number; readonly sz: string; readonly tp: string; + readonly f: string; + readonly li: string; } interface CompactIndex { @@ -53,15 +55,18 @@ export function getAllPf2eSourceCodes(): string[] { } export function getDefaultPf2eFetchUrl( - sourceCode: string, + _sourceCode: string, baseUrl?: string, ): string { - const filename = `creatures-${sourceCode.toLowerCase()}.json`; if (baseUrl !== undefined) { - const normalized = baseUrl.endsWith("/") ? baseUrl : `${baseUrl}/`; - return `${normalized}${filename}`; + return baseUrl.endsWith("/") ? baseUrl : `${baseUrl}/`; } - return `https://raw.githubusercontent.com/Pf2eToolsOrg/Pf2eTools/dev/data/bestiary/${filename}`; + return "https://raw.githubusercontent.com/foundryvtt/pf2e/v13-dev/packs/pf2e/"; +} + +export function getCreaturePathsForSource(sourceCode: string): string[] { + const compact = rawIndex as unknown as CompactIndex; + return compact.creatures.filter((c) => c.s === sourceCode).map((c) => c.f); } export function getPf2eSourceDisplayName(sourceCode: string): string { diff --git a/apps/web/src/adapters/ports.ts b/apps/web/src/adapters/ports.ts index f09a985..a5db4b9 100644 --- a/apps/web/src/adapters/ports.ts +++ b/apps/web/src/adapters/ports.ts @@ -56,4 +56,5 @@ export interface Pf2eBestiaryIndexPort { getAllSourceCodes(): string[]; getDefaultFetchUrl(sourceCode: string, baseUrl?: string): string; getSourceDisplayName(sourceCode: string): string; + getCreaturePathsForSource(sourceCode: string): string[]; } diff --git a/apps/web/src/adapters/production-adapters.ts b/apps/web/src/adapters/production-adapters.ts index 1ac30eb..fb44fdb 100644 --- a/apps/web/src/adapters/production-adapters.ts +++ b/apps/web/src/adapters/production-adapters.ts @@ -47,5 +47,6 @@ export const productionAdapters: Adapters = { getAllSourceCodes: pf2eBestiaryIndex.getAllPf2eSourceCodes, getDefaultFetchUrl: pf2eBestiaryIndex.getDefaultPf2eFetchUrl, getSourceDisplayName: pf2eBestiaryIndex.getPf2eSourceDisplayName, + getCreaturePathsForSource: pf2eBestiaryIndex.getCreaturePathsForSource, }, }; diff --git a/apps/web/src/adapters/strip-foundry-tags.ts b/apps/web/src/adapters/strip-foundry-tags.ts new file mode 100644 index 0000000..7c8e891 --- /dev/null +++ b/apps/web/src/adapters/strip-foundry-tags.ts @@ -0,0 +1,99 @@ +/** + * Strips Foundry VTT HTML descriptions with enrichment syntax to plain + * readable text. Handles @Damage, @Check, @UUID, @Template and generic + * @Tag patterns as well as common HTML elements. + */ + +// -- Enrichment-param helpers -- + +function formatDamage(params: string): string { + // "3d6+10[fire]" → "3d6+10 fire" + return params.replaceAll(/\[([^\]]*)\]/g, " $1").trim(); +} + +function formatCheck(params: string): string { + // "reflex|dc:33|basic" → "DC 33 basic Reflex" + const parts = params.split("|"); + const type = parts[0] ?? ""; + let dc = ""; + let basic = false; + for (const part of parts.slice(1)) { + if (part.startsWith("dc:")) { + dc = part.slice(3); + } else if (part === "basic") { + basic = true; + } + } + const label = type.charAt(0).toUpperCase() + type.slice(1); + const dcStr = dc ? `DC ${dc} ` : ""; + const basicStr = basic ? "basic " : ""; + return `${dcStr}${basicStr}${label}`; +} + +function formatTemplate(params: string): string { + // "cone|distance:40" → "40-foot cone" + const parts = params.split("|"); + const shape = parts[0] ?? ""; + let distance = ""; + for (const part of parts.slice(1)) { + if (part.startsWith("distance:")) { + distance = part.slice(9); + } + } + return distance ? `${distance}-foot ${shape}` : shape; +} + +export function stripFoundryTags(html: string): string { + if (typeof html !== "string") return String(html); + let result = html; + + // Strip Foundry enrichment tags (with optional display text) + // @Tag[params]{display} → display (prefer display text) + // @Tag[params] → extracted content + + // @Damage has nested brackets: @Damage[3d6+10[fire]] + result = result.replaceAll( + /@Damage\[((?:[^[\]]|\[[^\]]*\])*)\](?:\{([^}]+)\})?/g, + (_, params: string, display: string | undefined) => + display ?? formatDamage(params), + ); + result = result.replaceAll( + /@Check\[([^\]]+)\](?:\{([^}]*)\})?/g, + (_, params: string) => formatCheck(params), + ); + result = result.replaceAll( + /@UUID\[[^\]]+?([^./\]]+)\](?:\{([^}]+)\})?/g, + (_, lastSegment: string, display: string | undefined) => + display ?? lastSegment, + ); + result = result.replaceAll( + /@Template\[([^\]]+)\](?:\{([^}]+)\})?/g, + (_, params: string, display: string | undefined) => + display ?? formatTemplate(params), + ); + // Catch-all for unknown @Tag patterns + result = result.replaceAll( + /@\w+\[[^\]]*\](?:\{([^}]+)\})?/g, + (_, display: string | undefined) => display ?? "", + ); + + // Strip action-glyph spans (content is a number the renderer handles) + result = result.replaceAll(/[^<]*<\/span>/gi, ""); + + // Strip HTML tags + result = result.replaceAll(//gi, "\n"); + result = result.replaceAll(//gi, "\n"); + result = result.replaceAll(/<\/p>\s*]*>/gi, "\n"); + result = result.replaceAll(/<[^>]+>/g, ""); + + // Decode common HTML entities + result = result.replaceAll("&", "&"); + result = result.replaceAll("<", "<"); + result = result.replaceAll(">", ">"); + result = result.replaceAll(""", '"'); + + // Collapse whitespace + result = result.replaceAll(/[ \t]+/g, " "); + result = result.replaceAll(/\n\s*\n/g, "\n"); + return result.trim(); +} diff --git a/apps/web/src/components/__tests__/pf2e-stat-block.test.tsx b/apps/web/src/components/__tests__/pf2e-stat-block.test.tsx new file mode 100644 index 0000000..603fc1b --- /dev/null +++ b/apps/web/src/components/__tests__/pf2e-stat-block.test.tsx @@ -0,0 +1,280 @@ +// @vitest-environment jsdom +import "@testing-library/jest-dom/vitest"; + +import type { Pf2eCreature } from "@initiative/domain"; +import { creatureId } from "@initiative/domain"; +import { cleanup, render, screen } from "@testing-library/react"; +import { afterEach, describe, expect, it } from "vitest"; +import { Pf2eStatBlock } from "../pf2e-stat-block.js"; + +afterEach(cleanup); + +const PERCEPTION_SENSES_REGEX = /\+2.*Darkvision/; +const SKILLS_REGEX = /Acrobatics \+5.*Stealth \+5/; +const SAVE_CONDITIONAL_REGEX = /\+12.*\+1 status to all saves vs\. magic/; +const SAVE_CONDITIONAL_ABSENT_REGEX = /status to all saves/; +const HP_DETAILS_REGEX = /115.*regeneration 20/; +const REGEN_REGEX = /regeneration/; +const ATTACK_NAME_REGEX = /Dogslicer/; +const ATTACK_DAMAGE_REGEX = /1d6 slashing/; +const SPELLCASTING_ENTRY_REGEX = /Divine Innate Spells\./; +const ABILITY_MID_NAME_REGEX = /Goblin Scuttle/; +const ABILITY_MID_DESC_REGEX = /The goblin Steps\./; +const CANTRIPS_REGEX = /Cantrips:/; +const AC_REGEX = /16/; + +const GOBLIN_WARRIOR: Pf2eCreature = { + system: "pf2e", + id: creatureId("pathfinder-monster-core:goblin-warrior"), + name: "Goblin Warrior", + source: "pathfinder-monster-core", + sourceDisplayName: "Monster Core", + level: -1, + traits: ["small", "goblin", "humanoid"], + perception: 2, + senses: "Darkvision", + languages: "Common, Goblin", + skills: "Acrobatics +5, Athletics +2, Nature +1, Stealth +5", + abilityMods: { str: 0, dex: 3, con: 1, int: 0, wis: -1, cha: 1 }, + ac: 16, + saveFort: 5, + saveRef: 7, + saveWill: 3, + hp: 6, + speed: "25 feet", + attacks: [ + { + name: "Dogslicer", + activity: { number: 1, unit: "action" }, + segments: [ + { + type: "text", + value: "+7 (agile, backstabber, finesse), 1d6 slashing", + }, + ], + }, + ], + abilitiesMid: [ + { + name: "Goblin Scuttle", + activity: { number: 1, unit: "reaction" }, + segments: [{ type: "text", value: "The goblin Steps." }], + }, + ], +}; + +const NAUNET: Pf2eCreature = { + system: "pf2e", + id: creatureId("pathfinder-monster-core-2:naunet"), + name: "Naunet", + source: "pathfinder-monster-core-2", + sourceDisplayName: "Monster Core 2", + level: 7, + traits: ["large", "monitor", "protean"], + perception: 14, + senses: "Darkvision", + languages: "Chthonian, Empyrean, Protean", + skills: + "Acrobatics +14, Athletics +16, Intimidation +16, Stealth +14, Survival +12", + abilityMods: { str: 5, dex: 3, con: 5, int: 0, wis: 3, cha: 3 }, + ac: 24, + saveFort: 18, + saveRef: 14, + saveWill: 12, + saveConditional: "+1 status to all saves vs. magic", + hp: 120, + resistances: "Precision 5, Protean anatomy 10", + speed: "25 feet, Fly 30 feet, Swim 25 feet (unfettered movement)", + spellcasting: [ + { + name: "Divine Innate Spells", + headerText: "DC 25, attack +17", + daily: [ + { uses: 4, each: true, spells: ["Unfettered Movement (Constant)"] }, + ], + atWill: ["Detect Magic"], + }, + ], +}; + +const TROLL: Pf2eCreature = { + system: "pf2e", + id: creatureId("pathfinder-monster-core:forest-troll"), + name: "Forest Troll", + source: "pathfinder-monster-core", + sourceDisplayName: "Monster Core", + level: 5, + traits: ["large", "giant", "troll"], + perception: 11, + senses: "Darkvision", + languages: "Jotun", + skills: "Athletics +12, Intimidation +12", + abilityMods: { str: 5, dex: 2, con: 6, int: -2, wis: 0, cha: -2 }, + ac: 20, + saveFort: 17, + saveRef: 11, + saveWill: 7, + hp: 115, + hpDetails: "regeneration 20 (deactivated by acid or fire)", + weaknesses: "Fire 10", + speed: "30 feet", +}; + +function renderStatBlock(creature: Pf2eCreature) { + return render(); +} + +describe("Pf2eStatBlock", () => { + describe("header", () => { + it("renders creature name and level", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect( + screen.getByRole("heading", { name: "Goblin Warrior" }), + ).toBeInTheDocument(); + expect(screen.getByText("Level -1")).toBeInTheDocument(); + }); + + it("renders traits as tags", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Small")).toBeInTheDocument(); + expect(screen.getByText("Goblin")).toBeInTheDocument(); + expect(screen.getByText("Humanoid")).toBeInTheDocument(); + }); + + it("renders source display name", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Monster Core")).toBeInTheDocument(); + }); + }); + + describe("perception and senses", () => { + it("renders perception modifier and senses", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Perception")).toBeInTheDocument(); + expect(screen.getByText(PERCEPTION_SENSES_REGEX)).toBeInTheDocument(); + }); + + it("renders languages", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Languages")).toBeInTheDocument(); + expect(screen.getByText("Common, Goblin")).toBeInTheDocument(); + }); + + it("renders skills", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Skills")).toBeInTheDocument(); + expect(screen.getByText(SKILLS_REGEX)).toBeInTheDocument(); + }); + }); + + describe("ability modifiers", () => { + it("renders all six ability labels", () => { + renderStatBlock(GOBLIN_WARRIOR); + for (const label of ["Str", "Dex", "Con", "Int", "Wis", "Cha"]) { + expect(screen.getByText(label)).toBeInTheDocument(); + } + }); + + it("renders positive and negative modifiers", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("+3")).toBeInTheDocument(); + expect(screen.getByText("-1")).toBeInTheDocument(); + }); + }); + + describe("defenses", () => { + it("renders AC and saves", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("AC")).toBeInTheDocument(); + expect(screen.getByText(AC_REGEX)).toBeInTheDocument(); + expect(screen.getByText("Fort")).toBeInTheDocument(); + expect(screen.getByText("Ref")).toBeInTheDocument(); + expect(screen.getByText("Will")).toBeInTheDocument(); + }); + + it("renders HP", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("HP")).toBeInTheDocument(); + expect(screen.getByText("6")).toBeInTheDocument(); + }); + + it("renders saveConditional inline with saves", () => { + renderStatBlock(NAUNET); + expect(screen.getByText(SAVE_CONDITIONAL_REGEX)).toBeInTheDocument(); + }); + + it("omits saveConditional when absent", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect( + screen.queryByText(SAVE_CONDITIONAL_ABSENT_REGEX), + ).not.toBeInTheDocument(); + }); + + it("renders hpDetails in parentheses after HP", () => { + renderStatBlock(TROLL); + expect(screen.getByText(HP_DETAILS_REGEX)).toBeInTheDocument(); + }); + + it("omits hpDetails when absent", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.queryByText(REGEN_REGEX)).not.toBeInTheDocument(); + }); + + it("renders resistances and weaknesses", () => { + renderStatBlock(NAUNET); + expect(screen.getByText("Resistances")).toBeInTheDocument(); + expect( + screen.getByText("Precision 5, Protean anatomy 10"), + ).toBeInTheDocument(); + }); + }); + + describe("abilities", () => { + it("renders mid (defensive) abilities", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText(ABILITY_MID_NAME_REGEX)).toBeInTheDocument(); + expect(screen.getByText(ABILITY_MID_DESC_REGEX)).toBeInTheDocument(); + }); + }); + + describe("speed and attacks", () => { + it("renders speed", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText("Speed")).toBeInTheDocument(); + expect(screen.getByText("25 feet")).toBeInTheDocument(); + }); + + it("renders attacks", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.getByText(ATTACK_NAME_REGEX)).toBeInTheDocument(); + expect(screen.getByText(ATTACK_DAMAGE_REGEX)).toBeInTheDocument(); + }); + }); + + describe("spellcasting", () => { + it("renders spellcasting entry with header", () => { + renderStatBlock(NAUNET); + expect(screen.getByText(SPELLCASTING_ENTRY_REGEX)).toBeInTheDocument(); + expect(screen.getByText("DC 25, attack +17")).toBeInTheDocument(); + }); + + it("renders ranked spells", () => { + renderStatBlock(NAUNET); + expect(screen.getByText("Rank 4:")).toBeInTheDocument(); + expect( + screen.getByText("Unfettered Movement (Constant)"), + ).toBeInTheDocument(); + }); + + it("renders cantrips", () => { + renderStatBlock(NAUNET); + expect(screen.getByText("Cantrips:")).toBeInTheDocument(); + expect(screen.getByText("Detect Magic")).toBeInTheDocument(); + }); + + it("omits spellcasting when absent", () => { + renderStatBlock(GOBLIN_WARRIOR); + expect(screen.queryByText(CANTRIPS_REGEX)).not.toBeInTheDocument(); + }); + }); +}); diff --git a/apps/web/src/components/bulk-import-prompt.tsx b/apps/web/src/components/bulk-import-prompt.tsx index abf8eaa..18beb47 100644 --- a/apps/web/src/components/bulk-import-prompt.tsx +++ b/apps/web/src/components/bulk-import-prompt.tsx @@ -12,7 +12,7 @@ const DND_BASE_URL = "https://raw.githubusercontent.com/5etools-mirror-3/5etools-src/main/data/bestiary/"; const PF2E_BASE_URL = - "https://raw.githubusercontent.com/Pf2eToolsOrg/Pf2eTools/dev/data/bestiary/"; + "https://raw.githubusercontent.com/foundryvtt/pf2e/v13-dev/packs/pf2e/"; export function BulkImportPrompt() { const { bestiaryIndex, pf2eBestiaryIndex } = useAdapters(); diff --git a/apps/web/src/components/pf2e-stat-block.tsx b/apps/web/src/components/pf2e-stat-block.tsx index 255c5aa..e202a82 100644 --- a/apps/web/src/components/pf2e-stat-block.tsx +++ b/apps/web/src/components/pf2e-stat-block.tsx @@ -114,9 +114,11 @@ export function Pf2eStatBlock({ creature }: Readonly) { {formatMod(creature.saveRef)},{" "} Will{" "} {formatMod(creature.saveWill)} + {creature.saveConditional ? `; ${creature.saveConditional}` : ""}

HP {creature.hp} + {creature.hpDetails ? ` (${creature.hpDetails})` : ""}
@@ -138,6 +140,35 @@ export function Pf2eStatBlock({ creature }: Readonly) { {/* Bottom abilities (active abilities) */} + + {/* Spellcasting */} + {creature.spellcasting && creature.spellcasting.length > 0 && ( + <> + + {creature.spellcasting.map((sc) => ( +
+
+ {sc.name}.{" "} + {sc.headerText} +
+ {sc.daily?.map((d) => ( +
+ + {d.uses === 0 ? "Cantrips" : `Rank ${d.uses}`}: + {" "} + {d.spells.join(", ")} +
+ ))} + {sc.atWill && sc.atWill.length > 0 && ( +
+ Cantrips:{" "} + {sc.atWill.join(", ")} +
+ )} +
+ ))} + + )} ); } diff --git a/apps/web/src/components/stat-block-panel.tsx b/apps/web/src/components/stat-block-panel.tsx index 714fb3d..78d5aad 100644 --- a/apps/web/src/components/stat-block-panel.tsx +++ b/apps/web/src/components/stat-block-panel.tsx @@ -21,7 +21,10 @@ interface StatBlockPanelProps { function extractSourceCode(cId: CreatureId): string { const colonIndex = cId.indexOf(":"); if (colonIndex === -1) return ""; - return cId.slice(0, colonIndex).toUpperCase(); + const prefix = cId.slice(0, colonIndex); + // D&D source codes are short uppercase (e.g. "mm" from "MM"). + // PF2e source codes use hyphens (e.g. "pathfinder-monster-core"). + return prefix.includes("-") ? prefix : prefix.toUpperCase(); } function CollapsedTab({ diff --git a/apps/web/src/hooks/use-bestiary.ts b/apps/web/src/hooks/use-bestiary.ts index 9ea8d24..a6bd00e 100644 --- a/apps/web/src/hooks/use-bestiary.ts +++ b/apps/web/src/hooks/use-bestiary.ts @@ -9,10 +9,7 @@ import { normalizeBestiary, setSourceDisplayNames, } from "../adapters/bestiary-adapter.js"; -import { - normalizePf2eBestiary, - setPf2eSourceDisplayNames, -} from "../adapters/pf2e-bestiary-adapter.js"; +import { normalizeFoundryCreatures } from "../adapters/pf2e-bestiary-adapter.js"; import { useAdapters } from "../contexts/adapter-context.js"; import { useRulesEditionContext } from "../contexts/rules-edition-context.js"; @@ -52,7 +49,6 @@ export function useBestiary(): BestiaryHook { setSourceDisplayNames(index.sources as Record); const pf2eIndex = pf2eBestiaryIndex.loadIndex(); - setPf2eSourceDisplayNames(pf2eIndex.sources as Record); if (index.creatures.length > 0 || pf2eIndex.creatures.length > 0) { setIsLoaded(true); @@ -113,17 +109,40 @@ export function useBestiary(): BestiaryHook { const fetchAndCacheSource = useCallback( async (sourceCode: string, url: string): Promise => { - const response = await fetch(url); - if (!response.ok) { - throw new Error( - `Failed to fetch: ${response.status} ${response.statusText}`, + let creatures: AnyCreature[]; + + if (edition === "pf2e") { + // PF2e: url is a base URL; fetch each creature file in parallel + const paths = pf2eBestiaryIndex.getCreaturePathsForSource(sourceCode); + const baseUrl = url.endsWith("/") ? url : `${url}/`; + const responses = await Promise.all( + paths.map(async (path) => { + const response = await fetch(`${baseUrl}${path}`); + if (!response.ok) { + throw new Error( + `Failed to fetch ${path}: ${response.status} ${response.statusText}`, + ); + } + return response.json(); + }), ); + const displayName = pf2eBestiaryIndex.getSourceDisplayName(sourceCode); + creatures = normalizeFoundryCreatures( + responses, + sourceCode, + displayName, + ); + } else { + const response = await fetch(url); + if (!response.ok) { + throw new Error( + `Failed to fetch: ${response.status} ${response.statusText}`, + ); + } + const json = await response.json(); + creatures = normalizeBestiary(json); } - const json = await response.json(); - const creatures = - edition === "pf2e" - ? normalizePf2eBestiary(json) - : normalizeBestiary(json); + const displayName = edition === "pf2e" ? pf2eBestiaryIndex.getSourceDisplayName(sourceCode) @@ -149,7 +168,11 @@ export function useBestiary(): BestiaryHook { async (sourceCode: string, jsonData: unknown): Promise => { const creatures = edition === "pf2e" - ? normalizePf2eBestiary(jsonData as { creature: unknown[] }) + ? normalizeFoundryCreatures( + Array.isArray(jsonData) ? jsonData : [jsonData], + sourceCode, + pf2eBestiaryIndex.getSourceDisplayName(sourceCode), + ) : normalizeBestiary( jsonData as Parameters[0], ); diff --git a/biome.json b/biome.json index c063c76..5b7c6d3 100644 --- a/biome.json +++ b/biome.json @@ -10,7 +10,8 @@ "!coverage", "!.pnpm-store", "!.rodney", - "!.agent-tests" + "!.agent-tests", + "!data" ] }, "assist": { diff --git a/data/bestiary/pf2e-index.json b/data/bestiary/pf2e-index.json index 388730c..596bf56 100644 --- a/data/bestiary/pf2e-index.json +++ b/data/bestiary/pf2e-index.json @@ -1,25103 +1 @@ -{ - "sources": { - "AFoF": "A Fistful of Flowers", - "AV1": "Abomination Vaults #1", - "AV2": "Abomination Vaults #2", - "AV3": "Abomination Vaults #3", - "AoA1": "Age of Ashes #1: Hellknight Hill", - "AoA2": "Age of Ashes #2: Cult of Cinders", - "AoA3": "Age of Ashes #3: Tomorrow Must Burn", - "AoA4": "Age of Ashes #4: Fires of the Haunted City", - "AoA5": "Age of Ashes #5: Against the Scarlet Triad", - "AoA6": "Age of Ashes #6: Broken Promises", - "AoE1": "Agents of Edgewatch #1", - "AoE2": "Agents of Edgewatch #2", - "AoE3": "Agents of Edgewatch #3", - "AoE4": "Agents of Edgewatch #4", - "AoE5": "Agents of Edgewatch #5", - "AoE6": "Agents of Edgewatch #6", - "B1": "Bestiary", - "B2": "Bestiary 2", - "B3": "Bestiary 3", - "BB": "Beginner Box", - "BotD": "Book of the Dead", - "CRB": "Core Rulebook", - "CotT": "Crown of the Kobold King", - "DA": "Dark Archive", - "DaLl": "Dinner at Lionlodge", - "EC1": "Extinction Curse #1", - "EC2": "Extinction Curse #2", - "EC3": "Extinction Curse #3", - "EC4": "Extinction Curse #4", - "EC5": "Extinction Curse #5", - "EC6": "Extinction Curse #6", - "FRP1": "Fists of the Ruby Phoenix #1", - "FRP2": "Fists of the Ruby Phoenix #2", - "FRP3": "Fists of the Ruby Phoenix #3", - "FoP": "The Fall of Plaguestone", - "GMG": "Gamemastery Guide", - "GW1": "Gatewalkers #1", - "GW2": "Gatewalkers #2", - "GW3": "Gatewalkers #3", - "LOACLO": "Lost Omens: Absalom, City of Lost Omens", - "LOCG": "Lost Omens: Character Guide", - "LOHh": "Lost Omens: Highhelm", - "LOIL": "Lost Omens: Impossible Lands", - "LOME": "Lost Omens: The Mwangi Expanse", - "LOMM": "Lost Omens: Monsters of Myth", - "LOSK": "Lost Omens: Knights of Lastwall", - "LOTXWG": "Lost Omens: Travel Guide", - "LTiBA": "Little Trouble in Big Absalom", - "Mal": "Malevolence", - "MotM": "Monsters of the Multiverse", - "NGD": "Night of the Gray Death", - "OoA1": "Outlaws of Alkenstar #1", - "OoA2": "Outlaws of Alkenstar #2", - "OoA3": "Outlaws of Alkenstar #3", - "POS1": "Pathfinder One-Shots", - "Rust": "Rusthenge", - "SF1": "Season of Ghosts #1", - "SF2": "Season of Ghosts #2", - "SF3": "Season of Ghosts #3", - "SaS": "Shadows at Sundown", - "Sli": "The Slithering", - "SoG1": "Sky King's Tomb #1", - "SoG2": "Sky King's Tomb #2", - "SoG3": "Sky King's Tomb #3", - "SoG4": "SoG4", - "SoT1": "Strength of Thousands #1", - "SoT2": "Strength of Thousands #2", - "SoT3": "Strength of Thousands #3", - "SoT4": "Strength of Thousands #4", - "SoT5": "Strength of Thousands #5", - "SoT6": "Strength of Thousands #6", - "TEC": "The Enmity Cycle", - "TiO": "Troubles in Otari", - "WoW1": "Wardens of Wildwood #1", - "WoW2": "Wardens of Wildwood #2", - "WoW3": "Wardens of Wildwood #3", - "WtD5": "WtD5" - }, - "creatures": [ - { - "n": "\"Lucky\" Lanks", - "s": "OoA2", - "lv": 5, - "ac": 20, - "hp": 70, - "pc": 11, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Aapoph Serpentfolk", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 60, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Aasimar Redeemer", - "s": "B1", - "lv": 5, - "ac": 23, - "hp": 73, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abandoned Zealot", - "s": "B3", - "lv": 6, - "ac": 22, - "hp": 75, - "pc": 14, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Abberton Ruffians", - "s": "EC1", - "lv": -1, - "ac": 13, - "hp": 8, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abbot Tsujon", - "s": "FRP3", - "lv": 18, - "ac": 44, - "hp": 350, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abendego Brute", - "s": "SoT3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abendego Jailer", - "s": "SoT3", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abendego Priest", - "s": "SoT3", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abridan Ashau", - "s": "SaS", - "lv": 10, - "ac": 28, - "hp": 190, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Abrikandilu", - "s": "B3", - "lv": 4, - "ac": 19, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Abrikandilu", - "s": "EC1", - "lv": 4, - "ac": 19, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Accursed Forge-spurned", - "s": "AoA4", - "lv": 15, - "ac": 37, - "hp": 285, - "pc": 26, - "sz": "large", - "tp": "undead" - }, - { - "n": "Acolyte of Nethys", - "s": "GMG", - "lv": 1, - "ac": 15, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Acolytes of Pharasma", - "s": "SaS", - "lv": 1, - "ac": 15, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Acrobat", - "s": "GMG", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Adachros", - "s": "B3", - "lv": 13, - "ac": 34, - "hp": 225, - "pc": 22, - "sz": "large", - "tp": "astral" - }, - { - "n": "Adamantine Golem", - "s": "B1", - "lv": 18, - "ac": 42, - "hp": 255, - "pc": 26, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Adept", - "s": "GMG", - "lv": -1, - "ac": 14, - "hp": 8, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Adhukait", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 130, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Adlet", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Adult Black Dragon", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 215, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Adult Blue Dragon", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 260, - "pc": 24, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Brass Dragon", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 215, - "pc": 21, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Adult Brine Dragon", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 222, - "pc": 23, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Bronze Dragon", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 260, - "pc": 23, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Cloud Dragon", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 254, - "pc": 28, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Copper Dragon", - "s": "B1", - "lv": 12, - "ac": 33, - "hp": 235, - "pc": 23, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Adult Crystal Dragon", - "s": "B2", - "lv": 11, - "ac": 33, - "hp": 185, - "pc": 20, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Forest Dragon", - "s": "B3", - "lv": 14, - "ac": 36, - "hp": 290, - "pc": 25, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Gold Dragon", - "s": "B1", - "lv": 15, - "ac": 38, - "hp": 330, - "pc": 29, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Green Dragon", - "s": "B1", - "lv": 12, - "ac": 34, - "hp": 215, - "pc": 22, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Magma Dragon", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 270, - "pc": 23, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Red Dragon", - "s": "B1", - "lv": 14, - "ac": 37, - "hp": 305, - "pc": 26, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Sea Dragon", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 225, - "pc": 21, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Silver Dragon", - "s": "B1", - "lv": 14, - "ac": 37, - "hp": 295, - "pc": 26, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Sky Dragon", - "s": "B3", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 24, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Sovereign Dragon", - "s": "B3", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 29, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Umbral Dragon", - "s": "B2", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 29, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult Underworld Dragon", - "s": "B3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 20, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Adult White Dragon", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 215, - "pc": 20, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Advisor", - "s": "GMG", - "lv": 5, - "ac": 21, - "hp": 56, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Agent of the Gray Queen", - "s": "AoE6", - "lv": 19, - "ac": 43, - "hp": 290, - "pc": 32, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Aghash", - "s": "B3", - "lv": 4, - "ac": 19, - "hp": 75, - "pc": 12, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Agile Warrior", - "s": "FRP1", - "lv": 13, - "ac": 35, - "hp": 180, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Agradaemon", - "s": "AoE6", - "lv": 19, - "ac": 45, - "hp": 400, - "pc": 31, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Ahuizotl", - "s": "B2", - "lv": 6, - "ac": 23, - "hp": 105, - "pc": 13, - "sz": "large", - "tp": "beast" - }, - { - "n": "Ahvothian", - "s": "Sli", - "lv": 7, - "ac": 25, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Aigamuxa", - "s": "LOME", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 19, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ain-Scribe", - "s": "LOCG", - "lv": 4, - "ac": 21, - "hp": 54, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ainamuuren", - "s": "GW3", - "lv": 12, - "ac": 32, - "hp": 215, - "pc": 23, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Ainamuuren", - "s": "LOMM", - "lv": 14, - "ac": 33, - "hp": 259, - "pc": 25, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Air Mephit", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 12, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Air Wisp", - "s": "B3", - "lv": 0, - "ac": 18, - "hp": 10, - "pc": 6, - "sz": "tiny", - "tp": "elemental" - }, - { - "n": "Aiudara Wraith", - "s": "AoA6", - "lv": 18, - "ac": 45, - "hp": 300, - "pc": 33, - "sz": "medium", - "tp": "astral" - }, - { - "n": "Aives the Smoke Dragon", - "s": "EC2", - "lv": 4, - "ac": 21, - "hp": 56, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ajbal Kimon", - "s": "SoT3", - "lv": 13, - "ac": 34, - "hp": 225, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Akashti", - "s": "SoG3", - "lv": 10, - "ac": 27, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Akata", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Akila Stormheel", - "s": "FRP2", - "lv": 13, - "ac": 34, - "hp": 230, - "pc": 24, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Akizendri", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 42, - "pc": 8, - "sz": "small", - "tp": "monitor" - }, - { - "n": "Akrida", - "s": "OoA2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "small", - "tp": "animal" - }, - { - "n": "Alak Stagram", - "s": "AoA1", - "lv": 2, - "ac": 20, - "hp": 34, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Alapolo", - "s": "SoT6", - "lv": 17, - "ac": 41, - "hp": 310, - "pc": 28, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Alate Ant", - "s": "SoT6", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 28, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Alchemical Golem", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 150, - "pc": 15, - "sz": "large", - "tp": "construct" - }, - { - "n": "Alchemical Horror", - "s": "AoE6", - "lv": 21, - "ac": 46, - "hp": 400, - "pc": 35, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Algea", - "s": "Mal", - "lv": 11, - "ac": 30, - "hp": 144, - "pc": 22, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Alghollthu Master", - "s": "B1", - "lv": 7, - "ac": 23, - "hp": 135, - "pc": 17, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Algriever", - "s": "SoG4", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Aliriel", - "s": "SaS", - "lv": 15, - "ac": 37, - "hp": 210, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "All-Seeing Hajeck", - "s": "SF2", - "lv": 12, - "ac": 31, - "hp": 215, - "pc": 22, - "sz": "large", - "tp": "beast" - }, - { - "n": "Aller Rosk", - "s": "AV1", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Almiraj", - "s": "AoE1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 8, - "sz": "small", - "tp": "beast" - }, - { - "n": "Aluum Enforcer", - "s": "AoA5", - "lv": 10, - "ac": 30, - "hp": 145, - "pc": 17, - "sz": "large", - "tp": "construct" - }, - { - "n": "Alyce Quinley", - "s": "WoW1", - "lv": 6, - "ac": 25, - "hp": 95, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Amalgamite", - "s": "B3", - "lv": 13, - "ac": 33, - "hp": 220, - "pc": 23, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Amar", - "s": "TEC", - "lv": 6, - "ac": 23, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Amateur Chemist", - "s": "AoE4", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ambrost Mugland", - "s": "OoA2", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 14, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Amelekana", - "s": "GW1", - "lv": 4, - "ac": 21, - "hp": 72, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Amihan", - "s": "FRP2", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ammut", - "s": "EC5", - "lv": 18, - "ac": 41, - "hp": 350, - "pc": 33, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Amoeba Swarm", - "s": "B2", - "lv": 1, - "ac": 9, - "hp": 35, - "pc": 3, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Amphisbaena", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Anadi Elder", - "s": "LOME", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anadi Fateweaver", - "s": "SoT1", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anadi Hunter", - "s": "LOME", - "lv": 2, - "ac": 17, - "hp": 27, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anadi Lurker", - "s": "SoT1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anadi Sage", - "s": "LOME", - "lv": 4, - "ac": 20, - "hp": 58, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anadi Seeker", - "s": "SoT1", - "lv": 1, - "ac": 15, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anancus", - "s": "B2", - "lv": 8, - "ac": 25, - "hp": 170, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Ancient Black Dragon", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 325, - "pc": 30, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Ancient Blue Dragon", - "s": "B1", - "lv": 18, - "ac": 42, - "hp": 370, - "pc": 31, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Ancient Brass Dragon", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 325, - "pc": 30, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Ancient Brine Dragon", - "s": "B2", - "lv": 17, - "ac": 40, - "hp": 330, - "pc": 32, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Bronze Dragon", - "s": "B1", - "lv": 18, - "ac": 43, - "hp": 360, - "pc": 32, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Cloud Dragon", - "s": "B2", - "lv": 19, - "ac": 44, - "hp": 355, - "pc": 34, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Copper Dragon", - "s": "B1", - "lv": 17, - "ac": 41, - "hp": 345, - "pc": 30, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Ancient Crystal Dragon", - "s": "B2", - "lv": 16, - "ac": 42, - "hp": 275, - "pc": 28, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Forest Dragon", - "s": "B3", - "lv": 19, - "ac": 44, - "hp": 410, - "pc": 33, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Gold Dragon", - "s": "B1", - "lv": 20, - "ac": 46, - "hp": 450, - "pc": 36, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Green Dragon", - "s": "B1", - "lv": 17, - "ac": 41, - "hp": 315, - "pc": 30, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Magma Dragon", - "s": "B2", - "lv": 18, - "ac": 42, - "hp": 390, - "pc": 33, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Red Dragon", - "s": "B1", - "lv": 19, - "ac": 45, - "hp": 425, - "pc": 35, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Ancient Rivener", - "s": "SoT5", - "lv": 14, - "ac": 35, - "hp": 280, - "pc": 25, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Ancient Sea Dragon", - "s": "B3", - "lv": 17, - "ac": 41, - "hp": 350, - "pc": 30, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Silver Dragon", - "s": "B1", - "lv": 19, - "ac": 45, - "hp": 410, - "pc": 32, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Sky Dragon", - "s": "B3", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 32, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Sovereign Dragon", - "s": "B3", - "lv": 20, - "ac": 46, - "hp": 410, - "pc": 36, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Tupilaq", - "s": "GW3", - "lv": 11, - "ac": 32, - "hp": 145, - "pc": 22, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Ancient Umbral Dragon", - "s": "B2", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 36, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient Underworld Dragon", - "s": "B3", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 28, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ancient White Dragon", - "s": "B1", - "lv": 15, - "ac": 36, - "hp": 330, - "pc": 30, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Andera Paldreen", - "s": "EC2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Android Infiltrator", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Angazhani", - "s": "B3", - "lv": 8, - "ac": 26, - "hp": 180, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Angazhani Cultist", - "s": "Sli", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Angheuvore Flesh-gnawer", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Angoyang", - "s": "FRP2", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 25, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Animate Dream", - "s": "B2", - "lv": 8, - "ac": 24, - "hp": 110, - "pc": 14, - "sz": "medium", - "tp": "dream" - }, - { - "n": "Animated Armor", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Animated Armor", - "s": "BB", - "lv": 2, - "ac": 17, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Animated Axe", - "s": "SoG3", - "lv": 5, - "ac": 23, - "hp": 65, - "pc": 9, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Animated Bamboo Figure", - "s": "LOTXWG", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Animated Broom", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 3, - "sz": "small", - "tp": "construct" - }, - { - "n": "Animated Colossus", - "s": "B3", - "lv": 15, - "ac": 39, - "hp": 245, - "pc": 23, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Animated Cookware Swarm", - "s": "SoG1", - "lv": 1, - "ac": 16, - "hp": 14, - "pc": 5, - "sz": "large", - "tp": "construct" - }, - { - "n": "Animated Dragonstorm", - "s": "AoA6", - "lv": 18, - "ac": 42, - "hp": 255, - "pc": 30, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Animated Furnace", - "s": "B3", - "lv": 9, - "ac": 30, - "hp": 135, - "pc": 15, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Animated Kite", - "s": "LOTXWG", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 6, - "sz": "small", - "tp": "construct" - }, - { - "n": "Animated Silverware Swarm", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 14, - "pc": 5, - "sz": "large", - "tp": "construct" - }, - { - "n": "Animated Statue", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 35, - "pc": 9, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Animated Trebuchet", - "s": "B3", - "lv": 13, - "ac": 36, - "hp": 200, - "pc": 21, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Animated Wine Vessel", - "s": "LOTXWG", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "large", - "tp": "construct" - }, - { - "n": "Anitoli Nostraema", - "s": "Mal", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 15, - "sz": "small", - "tp": "undead" - }, - { - "n": "Anjelique Loveless", - "s": "OoA3", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ankhrav", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 40, - "pc": 7, - "sz": "large", - "tp": "animal" - }, - { - "n": "Ankou", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 280, - "pc": 25, - "sz": "large", - "tp": "fey" - }, - { - "n": "Ankylosaurus", - "s": "B1", - "lv": 6, - "ac": 26, - "hp": 90, - "pc": 12, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Annis Hag", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 85, - "pc": 15, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Antaro Boldblade", - "s": "AoE1", - "lv": -1, - "ac": 15, - "hp": 9, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Antipaladin", - "s": "GMG", - "lv": 5, - "ac": 25, - "hp": 75, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Anugobu Apprentice", - "s": "FRP1", - "lv": 3, - "ac": 17, - "hp": 35, - "pc": 12, - "sz": "tiny", - "tp": "humanoid" - }, - { - "n": "Anugobu Wondercrafter", - "s": "FRP1", - "lv": 7, - "ac": 23, - "hp": 90, - "pc": 18, - "sz": "tiny", - "tp": "humanoid" - }, - { - "n": "Aolaz", - "s": "B2", - "lv": 18, - "ac": 42, - "hp": 255, - "pc": 33, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Aoyin", - "s": "LOTXWG", - "lv": 10, - "ac": 29, - "hp": 210, - "pc": 19, - "sz": "large", - "tp": "animal" - }, - { - "n": "Aphorite Sharpshooter", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Apocalypse Ant Swarm", - "s": "SoT6", - "lv": 18, - "ac": 41, - "hp": 260, - "pc": 30, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Apothecary", - "s": "GMG", - "lv": -1, - "ac": 14, - "hp": 9, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Apothecary's Cabinet", - "s": "GW2", - "lv": 6, - "ac": 24, - "hp": 80, - "pc": 11, - "sz": "large", - "tp": "construct" - }, - { - "n": "Apprentice", - "s": "GMG", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 2, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ararda", - "s": "EC5", - "lv": 18, - "ac": 43, - "hp": 280, - "pc": 31, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Arbiter", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 22, - "pc": 7, - "sz": "tiny", - "tp": "monitor" - }, - { - "n": "Arboreal Archive", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 230, - "pc": 25, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Arboreal Reaper", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 130, - "pc": 15, - "sz": "large", - "tp": "plant" - }, - { - "n": "Arboreal Regent", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 18, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Arboreal Sapling", - "s": "WoW1", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 11, - "sz": "large", - "tp": "plant" - }, - { - "n": "Arboreal Sapstriker", - "s": "WoW1", - "lv": 6, - "ac": 23, - "hp": 115, - "pc": 17, - "sz": "large", - "tp": "plant" - }, - { - "n": "Arboreal Shepherd", - "s": "WoW1", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 15, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Arboreal Warden", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 75, - "pc": 11, - "sz": "large", - "tp": "plant" - }, - { - "n": "Arcane Living Rune", - "s": "B3", - "lv": 13, - "ac": 34, - "hp": 245, - "pc": 25, - "sz": "small", - "tp": "construct" - }, - { - "n": "Archer Sentry", - "s": "GMG", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Archery Specialist", - "s": "FRP1", - "lv": 13, - "ac": 35, - "hp": 190, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ardande Ghost", - "s": "WoW3", - "lv": 11, - "ac": 30, - "hp": 150, - "pc": 21, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Argyrzei", - "s": "SoG4", - "lv": 13, - "ac": 34, - "hp": 240, - "pc": 23, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Arms of Balance", - "s": "FRP2", - "lv": 15, - "ac": 35, - "hp": 300, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Army Ant Swarm", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 55, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Arodeth", - "s": "SF1", - "lv": 14, - "ac": 35, - "hp": 255, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Arskuva the Gnasher", - "s": "EC4", - "lv": 12, - "ac": 31, - "hp": 270, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Artus Rodrivan", - "s": "FRP2", - "lv": 15, - "ac": 35, - "hp": 330, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Arzuu", - "s": "SF2", - "lv": 13, - "ac": 34, - "hp": 240, - "pc": 24, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Asanbosam", - "s": "LOME", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 17, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Aso Berang", - "s": "LOTXWG", - "lv": 12, - "ac": 32, - "hp": 260, - "pc": 23, - "sz": "large", - "tp": "spirit" - }, - { - "n": "Aspect of Hunger", - "s": "SoT6", - "lv": 19, - "ac": 40, - "hp": 410, - "pc": 25, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Aspect of Insects", - "s": "SoT6", - "lv": 20, - "ac": 0, - "hp": 420, - "pc": 31, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Aspis Guard", - "s": "Sli", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Aspis Technician", - "s": "Sli", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Assassin", - "s": "GMG", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Assassin Vine", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 68, - "pc": 10, - "sz": "large", - "tp": "plant" - }, - { - "n": "Astradaemon", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 240, - "pc": 28, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Astral Deva", - "s": "B1", - "lv": 14, - "ac": 36, - "hp": 285, - "pc": 26, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Astronomer", - "s": "GMG", - "lv": 2, - "ac": 15, - "hp": 23, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Athach", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 250, - "pc": 22, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Attic Whisperer", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "small", - "tp": "undead" - }, - { - "n": "Augdunar", - "s": "LOHh", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Augnagar", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 225, - "pc": 27, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Augrael", - "s": "AV1", - "lv": 3, - "ac": 18, - "hp": 48, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Augur", - "s": "B2", - "lv": 1, - "ac": 17, - "hp": 14, - "pc": 8, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Aukashungi Swarm", - "s": "EC4", - "lv": 10, - "ac": 28, - "hp": 210, - "pc": 18, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Auldegrund Grimcarver", - "s": "DaLl", - "lv": 7, - "ac": 24, - "hp": 125, - "pc": 11, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Aurosrath", - "s": "LOSK", - "lv": 5, - "ac": 19, - "hp": 95, - "pc": 12, - "sz": "large", - "tp": "undead" - }, - { - "n": "Aurumvorax", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 18, - "sz": "small", - "tp": "animal" - }, - { - "n": "Avarek", - "s": "AoE3", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 16, - "sz": "small", - "tp": "fey" - }, - { - "n": "Avatar of Walkena", - "s": "SoT4", - "lv": 17, - "ac": 40, - "hp": 380, - "pc": 29, - "sz": "huge", - "tp": "humanoid" - }, - { - "n": "Avathrael Realmshaper", - "s": "WoW2", - "lv": 12, - "ac": 32, - "hp": 214, - "pc": 25, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Avsheros the Betrayer", - "s": "AoE6", - "lv": 23, - "ac": 50, - "hp": 400, - "pc": 41, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Awakened Tree", - "s": "B1", - "lv": 6, - "ac": 22, - "hp": 100, - "pc": 13, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Axiomite", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 155, - "pc": 19, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Azarketi Crab Catcher", - "s": "LOACLO", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Azarketi Explorer", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Azarketi Sailor", - "s": "LOACLO", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Azarketi Tide Tamer", - "s": "LOACLO", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Azer", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Azhana", - "s": "WoW1", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 12, - "sz": "small", - "tp": "fey" - }, - { - "n": "Azure Worm", - "s": "B1", - "lv": 15, - "ac": 35, - "hp": 320, - "pc": 22, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Azuretzi", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "small", - "tp": "monitor" - }, - { - "n": "Ba'aupa Mdoudu", - "s": "SoT4", - "lv": 13, - "ac": 33, - "hp": 245, - "pc": 23, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Baatamidar", - "s": "AoE6", - "lv": 21, - "ac": 42, - "hp": 350, - "pc": 39, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Babau", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 130, - "pc": 13, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Badger", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Bakeneko", - "s": "SoG2", - "lv": 3, - "ac": 20, - "hp": 35, - "pc": 9, - "sz": "small", - "tp": "beast" - }, - { - "n": "Balisse", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 145, - "pc": 18, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Ball Python", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Balor", - "s": "B1", - "lv": 20, - "ac": 45, - "hp": 480, - "pc": 36, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Bandit", - "s": "GMG", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Banshee", - "s": "B1", - "lv": 17, - "ac": 39, - "hp": 250, - "pc": 32, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Baobhan Sith", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 12, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Baomal", - "s": "B1", - "lv": 20, - "ac": 48, - "hp": 315, - "pc": 34, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Barbazu", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 60, - "pc": 13, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Barghest", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 50, - "pc": 12, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Barkeep", - "s": "GMG", - "lv": 1, - "ac": 14, - "hp": 25, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Barking Stag", - "s": "EC6", - "lv": 13, - "ac": 34, - "hp": 245, - "pc": 28, - "sz": "large", - "tp": "animal" - }, - { - "n": "Barnacle Ghoul", - "s": "AoE3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Barrister", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 8, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Barushak Il-varashma", - "s": "AoA3", - "lv": 11, - "ac": 28, - "hp": 170, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Basidirond", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 8, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Basilisk", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Basilisk", - "s": "BB", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Bastion Archon", - "s": "B2", - "lv": 20, - "ac": 47, - "hp": 280, - "pc": 37, - "sz": "huge", - "tp": "celestial" - }, - { - "n": "Battle Leader Rekarek", - "s": "AoE1", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Bauble Beast", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 100, - "pc": 13, - "sz": "large", - "tp": "beast" - }, - { - "n": "Baykok", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 200, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Beast Tamer", - "s": "GMG", - "lv": 4, - "ac": 20, - "hp": 54, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bebilith", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 200, - "pc": 21, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Bee Swarm", - "s": "FoP", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 5, - "sz": "large", - "tp": "animal" - }, - { - "n": "Beetle Carapace", - "s": "BotD", - "lv": 6, - "ac": 25, - "hp": 90, - "pc": 12, - "sz": "large", - "tp": "undead" - }, - { - "n": "Beggar", - "s": "GMG", - "lv": -1, - "ac": 15, - "hp": 10, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Behemoth Hippopotamus", - "s": "B2", - "lv": 10, - "ac": 29, - "hp": 190, - "pc": 19, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Behir", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 17, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Beiran Frosthunt", - "s": "LOSK", - "lv": 3, - "ac": 18, - "hp": 54, - "pc": 12, - "sz": "gargantuan", - "tp": "fey" - }, - { - "n": "Belcorra Haruvex", - "s": "AV3", - "lv": 12, - "ac": 30, - "hp": 175, - "pc": 22, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Belker", - "s": "B2", - "lv": 6, - "ac": 25, - "hp": 78, - "pc": 14, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Belmazog", - "s": "AoA2", - "lv": 9, - "ac": 28, - "hp": 145, - "pc": 18, - "sz": "medium", - "tp": "dragon" - }, - { - "n": "Benthic Reaver", - "s": "LOIL", - "lv": 21, - "ac": 46, - "hp": 500, - "pc": 41, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Berberoka", - "s": "FRP1", - "lv": 15, - "ac": 36, - "hp": 310, - "pc": 26, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Besieged Logging Crew", - "s": "WoW1", - "lv": 4, - "ac": 18, - "hp": 60, - "pc": 7, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Betobeto-san", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 170, - "pc": 22, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Bhanyada Behemoth", - "s": "SF1", - "lv": 12, - "ac": 31, - "hp": 250, - "pc": 23, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Bhanyada Scavenger", - "s": "SF1", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 17, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Bhanyada Swarm", - "s": "SF1", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 20, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Bharlen Sajor", - "s": "SoT3", - "lv": 11, - "ac": 32, - "hp": 190, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bhazrade", - "s": "AV3", - "lv": 9, - "ac": 27, - "hp": 110, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bhuta", - "s": "BotD", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bibliodaemon", - "s": "LOSK", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 18, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Bida", - "s": "AoA2", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 15, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Biloko Reaver", - "s": "SoT4", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 19, - "sz": "small", - "tp": "fey" - }, - { - "n": "Biloko Veteran", - "s": "LOME", - "lv": 4, - "ac": 21, - "hp": 58, - "pc": 11, - "sz": "small", - "tp": "fey" - }, - { - "n": "Biloko Warrior", - "s": "LOME", - "lv": 1, - "ac": 16, - "hp": 19, - "pc": 7, - "sz": "small", - "tp": "fey" - }, - { - "n": "Binumir", - "s": "AoE1", - "lv": 3, - "ac": 19, - "hp": 25, - "pc": 10, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Bishop Keppira D'bear", - "s": "SaS", - "lv": 11, - "ac": 31, - "hp": 150, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bison", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 70, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Bitter Truth Bandit", - "s": "EC3", - "lv": 6, - "ac": 22, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Black Bear", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Black Pudding", - "s": "B1", - "lv": 7, - "ac": 14, - "hp": 165, - "pc": 9, - "sz": "huge", - "tp": "ooze" - }, - { - "n": "Black Scorpion", - "s": "B2", - "lv": 15, - "ac": 38, - "hp": 275, - "pc": 27, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Black Whale Guard", - "s": "AoE5", - "lv": 12, - "ac": 32, - "hp": 230, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blackfingers Acolyte", - "s": "AoE4", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blackfrost Guecubus", - "s": "GW3", - "lv": 8, - "ac": 27, - "hp": 110, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Blackfrost Prophet", - "s": "GW3", - "lv": 9, - "ac": 28, - "hp": 180, - "pc": 21, - "sz": "large", - "tp": "undead" - }, - { - "n": "Blackfrost Zombie", - "s": "GW3", - "lv": 6, - "ac": 23, - "hp": 120, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Blade Magi", - "s": "SF1", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blade Mercenary", - "s": "SF1", - "lv": 9, - "ac": 27, - "hp": 165, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blighted Speaker in Spores", - "s": "WoW3", - "lv": 13, - "ac": 32, - "hp": 250, - "pc": 25, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Blindheim", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 27, - "pc": 9, - "sz": "small", - "tp": "animal" - }, - { - "n": "Blink Dog", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Blizzardborn", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 14, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Blodeuwedd", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 14, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Blood Boar", - "s": "AoA3", - "lv": 6, - "ac": 23, - "hp": 98, - "pc": 15, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Blood Hag", - "s": "B3", - "lv": 8, - "ac": 26, - "hp": 170, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blood Ooze", - "s": "FoP", - "lv": 4, - "ac": 12, - "hp": 90, - "pc": 8, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Blood Painter", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 19, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Blood Wolf", - "s": "EC1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Blood-Pear Tree", - "s": "SF2", - "lv": 17, - "ac": 38, - "hp": 350, - "pc": 29, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Bloodlash Bush", - "s": "FoP", - "lv": 2, - "ac": 16, - "hp": 35, - "pc": 6, - "sz": "small", - "tp": "plant" - }, - { - "n": "Bloodseeker", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 6, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Bloodsiphon", - "s": "AV1", - "lv": 4, - "ac": 19, - "hp": 80, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bloody Barber Goon", - "s": "AoE5", - "lv": 12, - "ac": 32, - "hp": 210, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bloody Berleth", - "s": "AoE3", - "lv": 11, - "ac": 30, - "hp": 245, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bloody Blade Mercenary", - "s": "AoA1", - "lv": 1, - "ac": 18, - "hp": 19, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Blue Viper", - "s": "FRP1", - "lv": 14, - "ac": 34, - "hp": 260, - "pc": 28, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Blue Viper", - "s": "FRP2", - "lv": 16, - "ac": 36, - "hp": 300, - "pc": 30, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Blue Viper", - "s": "FRP3", - "lv": 20, - "ac": 44, - "hp": 366, - "pc": 33, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Blue-ringed Octopus", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Blune Bandersworth", - "s": "AoE6", - "lv": 20, - "ac": 43, - "hp": 375, - "pc": 36, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Blune's Illusory Toady", - "s": "AoE6", - "lv": 16, - "ac": 36, - "hp": 150, - "pc": 27, - "sz": "medium", - "tp": "" - }, - { - "n": "Boar", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Boar", - "s": "BB", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Bodak", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 160, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bodyguard", - "s": "GMG", - "lv": 1, - "ac": 16, - "hp": 25, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bog Mummy", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bog Mummy Amalgamation", - "s": "SoT3", - "lv": 9, - "ac": 27, - "hp": 160, - "pc": 18, - "sz": "large", - "tp": "undead" - }, - { - "n": "Bog Strider", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Bogey", - "s": "EC2", - "lv": 3, - "ac": 20, - "hp": 35, - "pc": 9, - "sz": "small", - "tp": "fey" - }, - { - "n": "Bogeyman", - "s": "EC2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Boggard Hunter", - "s": "SoT3", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Boggard Scout", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Boggard Swampseer", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 40, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Boggard Warrior", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 38, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bolan Nogasso", - "s": "GW1", - "lv": 2, - "ac": 18, - "hp": 40, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bolar of Stonemoor", - "s": "AoE1", - "lv": -1, - "ac": 14, - "hp": 13, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bolti Sorrinson", - "s": "SF3", - "lv": 20, - "ac": 44, - "hp": 399, - "pc": 34, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bone Croupier", - "s": "BotD", - "lv": 5, - "ac": 22, - "hp": 50, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bone Croupier", - "s": "EC1", - "lv": 5, - "ac": 22, - "hp": 50, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Bone Prophet", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bone Ship", - "s": "B3", - "lv": 18, - "ac": 42, - "hp": 415, - "pc": 32, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Bone Skipper Swarm", - "s": "AoE2", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 17, - "sz": "large", - "tp": "animal" - }, - { - "n": "Bonebleacher Bugbear", - "s": "WoW3", - "lv": 12, - "ac": 31, - "hp": 220, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bore Worm Swarm", - "s": "B3", - "lv": 5, - "ac": 20, - "hp": 60, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Boss Skrawng", - "s": "AV1", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 7, - "sz": "small", - "tp": "fey" - }, - { - "n": "Bosun", - "s": "GMG", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bottlenose Dolphin", - "s": "B2", - "lv": 0, - "ac": 15, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Bounty Hunter", - "s": "GMG", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Brain Collector", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Brainchild", - "s": "B3", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 18, - "sz": "large", - "tp": "" - }, - { - "n": "Bralani", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Bramble Champion Construct", - "s": "SoT1", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 10, - "sz": "large", - "tp": "construct" - }, - { - "n": "Bregdi", - "s": "AoE3", - "lv": 9, - "ac": 27, - "hp": 180, - "pc": 18, - "sz": "large", - "tp": "animal" - }, - { - "n": "Bright Walker", - "s": "AV3", - "lv": 9, - "ac": 26, - "hp": 115, - "pc": 19, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Brimorak", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 12, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Brine Shark", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Bristlebane", - "s": "OoA1", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Brontosaurus", - "s": "B1", - "lv": 10, - "ac": 28, - "hp": 220, - "pc": 16, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Brood Leech Swarm", - "s": "B2", - "lv": 4, - "ac": 19, - "hp": 40, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Brownie", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 25, - "pc": 7, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Brughadatch", - "s": "EC4", - "lv": 10, - "ac": 30, - "hp": 210, - "pc": 19, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Bshez \"Sand Claws\" Shak", - "s": "AoA5", - "lv": 17, - "ac": 40, - "hp": 330, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bugaboo", - "s": "EC2", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 14, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Bugbear Marauder", - "s": "BB", - "lv": 2, - "ac": 17, - "hp": 34, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bugbear Thug", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 34, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bugbear Tormentor", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 44, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bugul Noz", - "s": "EC3", - "lv": 12, - "ac": 31, - "hp": 200, - "pc": 23, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Bul-gae", - "s": "FRP3", - "lv": 14, - "ac": 33, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Bul-Gae", - "s": "LOTXWG", - "lv": 14, - "ac": 22, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Bulette", - "s": "B1", - "lv": 8, - "ac": 30, - "hp": 120, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Bunyip", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Burglar", - "s": "GMG", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Buso Farmer", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 48, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Butterfly Blade Warrior", - "s": "FRP1", - "lv": 13, - "ac": 33, - "hp": 235, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Bythos", - "s": "B2", - "lv": 16, - "ac": 39, - "hp": 245, - "pc": 30, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Cacodaemon", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 22, - "pc": 6, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Cactus Leshy", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "small", - "tp": "plant" - }, - { - "n": "Cadaverous Rake", - "s": "BotD", - "lv": 8, - "ac": 27, - "hp": 125, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Cairn Linnorm", - "s": "B2", - "lv": 18, - "ac": 43, - "hp": 360, - "pc": 30, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Cairn Wight", - "s": "B2", - "lv": 4, - "ac": 20, - "hp": 67, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Calathgar", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 75, - "pc": 10, - "sz": "small", - "tp": "plant" - }, - { - "n": "Calennia", - "s": "AoE5", - "lv": 16, - "ac": 39, - "hp": 290, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Caligni Caller", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 70, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Caligni Creeper", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Caligni Dancer", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Caligni Defender", - "s": "AV3", - "lv": 8, - "ac": 28, - "hp": 125, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Caligni Slayer", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Caligni Stalker", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Caligni Vanguard", - "s": "B3", - "lv": 5, - "ac": 24, - "hp": 50, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Calikang", - "s": "B3", - "lv": 12, - "ac": 31, - "hp": 235, - "pc": 22, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Calmont", - "s": "AoA1", - "lv": 3, - "ac": 20, - "hp": 35, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Camarach", - "s": "AoE6", - "lv": 17, - "ac": 40, - "hp": 320, - "pc": 27, - "sz": "gargantuan", - "tp": "monitor" - }, - { - "n": "Camel", - "s": "B3", - "lv": 1, - "ac": 15, - "hp": 20, - "pc": 4, - "sz": "large", - "tp": "animal" - }, - { - "n": "Candlaron's Echo", - "s": "AoA6", - "lv": 21, - "ac": 46, - "hp": 315, - "pc": 35, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Canker Cultist", - "s": "AV1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Canopy Elder", - "s": "FRP3", - "lv": 19, - "ac": 42, - "hp": 445, - "pc": 32, - "sz": "gargantuan", - "tp": "plant" - }, - { - "n": "Capstan Swabbie", - "s": "GW2", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 12, - "sz": "large", - "tp": "construct" - }, - { - "n": "Captain of the Guard", - "s": "GMG", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Carbuncle", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Carman Rajani", - "s": "AV2", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Carnivorous Blob", - "s": "B2", - "lv": 13, - "ac": 20, - "hp": 300, - "pc": 23, - "sz": "gargantuan", - "tp": "ooze" - }, - { - "n": "Carnivorous Crystal", - "s": "AoA4", - "lv": 11, - "ac": 20, - "hp": 300, - "pc": 15, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Carrion Golem", - "s": "B2", - "lv": 4, - "ac": 19, - "hp": 60, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Casino Bouncer", - "s": "AoE3", - "lv": 8, - "ac": 27, - "hp": 150, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Cassisian", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 6, - "sz": "tiny", - "tp": "celestial" - }, - { - "n": "Cat Sith", - "s": "EC3", - "lv": 6, - "ac": 23, - "hp": 110, - "pc": 14, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Cat, Leopard", - "s": "BB", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Cataclysm Beetle", - "s": "SoT6", - "lv": 18, - "ac": 44, - "hp": 340, - "pc": 30, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Catfolk Pouncer", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 19, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Catoblepas", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 22, - "sz": "large", - "tp": "beast" - }, - { - "n": "Catrina", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 13, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Caulborn", - "s": "B3", - "lv": 7, - "ac": 24, - "hp": 105, - "pc": 18, - "sz": "medium", - "tp": "astral" - }, - { - "n": "Caustic Monitor", - "s": "FRP1", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 22, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Caustic Wolf", - "s": "FoP", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Caustic Wraith", - "s": "WoW3", - "lv": 9, - "ac": 28, - "hp": 130, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Cauthooj", - "s": "B1", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 22, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Cave Bear", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Cave Fisher", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Cave Giant", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 110, - "pc": 15, - "sz": "large", - "tp": "giant" - }, - { - "n": "Cave Scorpion", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Cavern Troll", - "s": "B2", - "lv": 6, - "ac": 22, - "hp": 135, - "pc": 14, - "sz": "large", - "tp": "giant" - }, - { - "n": "Cavnakash", - "s": "EC1", - "lv": 5, - "ac": 22, - "hp": 83, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Cecaelia Trapper", - "s": "B3", - "lv": 5, - "ac": 24, - "hp": 53, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Celestial Menagerie Bruiser", - "s": "EC2", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Centaur", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 40, - "pc": 9, - "sz": "large", - "tp": "beast" - }, - { - "n": "Centipede Swarm", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Centipede, Giant", - "s": "BB", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Ceustodaemon", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 130, - "pc": 14, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Chafkhem", - "s": "AV2", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Chained Norn", - "s": "CotT", - "lv": 20, - "ac": 46, - "hp": 375, - "pc": 41, - "sz": "large", - "tp": "undead" - }, - { - "n": "Chakanaj", - "s": "NGD", - "lv": 14, - "ac": 36, - "hp": 300, - "pc": 25, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Chandriu Invisar", - "s": "AV1", - "lv": 6, - "ac": 23, - "hp": 64, - "pc": 17, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Changeling Exile", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Changeling Hellknight", - "s": "LOCG", - "lv": 4, - "ac": 22, - "hp": 45, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Chaos Gulgamodh", - "s": "AoE6", - "lv": 21, - "ac": 46, - "hp": 400, - "pc": 35, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Charau-ka Acolyte Of Angazhan", - "s": "LOME", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Charau-ka Butcher", - "s": "LOME", - "lv": 6, - "ac": 21, - "hp": 95, - "pc": 13, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Charau-ka Dragon Priest", - "s": "AoA2", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 15, - "sz": "small", - "tp": "dragon" - }, - { - "n": "Charau-ka Warrior", - "s": "LOME", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Charlatan", - "s": "GMG", - "lv": 3, - "ac": 18, - "hp": 40, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Charming Scoundrel", - "s": "LOCG", - "lv": 4, - "ac": 21, - "hp": 54, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Chernasardo Ranger", - "s": "CotT", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Chernobue", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 220, - "pc": 25, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Chetamog", - "s": "WoW1", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Child of Urgathoa", - "s": "BotD", - "lv": 8, - "ac": 27, - "hp": 165, - "pc": 18, - "sz": "large", - "tp": "undead" - }, - { - "n": "Child of Venom", - "s": "AoE5", - "lv": 13, - "ac": 31, - "hp": 300, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Chimera", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "large", - "tp": "beast" - }, - { - "n": "Chimeric Manticore", - "s": "OoA2", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 15, - "sz": "large", - "tp": "beast" - }, - { - "n": "Chimpanzee Visitant", - "s": "EC2", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 9, - "sz": "small", - "tp": "animal" - }, - { - "n": "Choker", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 7, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Choral", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 14, - "sz": "small", - "tp": "celestial" - }, - { - "n": "Chouchin-obake", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 75, - "pc": 15, - "sz": "medium", - "tp": "" - }, - { - "n": "Chromatic Ooze", - "s": "SoT6", - "lv": 18, - "ac": 28, - "hp": 550, - "pc": 30, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Chronicler", - "s": "GMG", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Chupacabra", - "s": "B2", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 9, - "sz": "small", - "tp": "beast" - }, - { - "n": "Chuul", - "s": "B1", - "lv": 7, - "ac": 28, - "hp": 100, - "pc": 15, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Chyzaedu", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 135, - "pc": 21, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Cinder Rat", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 9, - "sz": "small", - "tp": "elemental" - }, - { - "n": "City Guard Squadron", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 12, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Clacking Skull Swarm", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 120, - "pc": 18, - "sz": "large", - "tp": "undead" - }, - { - "n": "Clay Golem", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 16, - "sz": "large", - "tp": "construct" - }, - { - "n": "Cloaker", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 12, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Clockwork Amalgam", - "s": "AoE5", - "lv": 20, - "ac": 43, - "hp": 455, - "pc": 36, - "sz": "large", - "tp": "construct" - }, - { - "n": "Clockwork Assassin", - "s": "AoE4", - "lv": 13, - "ac": 34, - "hp": 230, - "pc": 23, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Assassin", - "s": "AoE5", - "lv": 13, - "ac": 34, - "hp": 230, - "pc": 23, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Belimarius", - "s": "Rust", - "lv": 4, - "ac": 20, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Brewer", - "s": "OoA1", - "lv": 3, - "ac": 18, - "hp": 40, - "pc": 8, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Buccaneer", - "s": "OoA3", - "lv": 9, - "ac": 28, - "hp": 140, - "pc": 18, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Cannoneer", - "s": "LOIL", - "lv": 15, - "ac": 38, - "hp": 250, - "pc": 25, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Clockwork Clock Tower", - "s": "SoT6", - "lv": 20, - "ac": 48, - "hp": 325, - "pc": 34, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Clockwork Disposer", - "s": "OoA2", - "lv": 5, - "ac": 21, - "hp": 70, - "pc": 13, - "sz": "small", - "tp": "construct" - }, - { - "n": "Clockwork Door Warden", - "s": "OoA2", - "lv": 4, - "ac": 20, - "hp": 50, - "pc": 12, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Dragon", - "s": "B3", - "lv": 16, - "ac": 39, - "hp": 265, - "pc": 28, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Clockwork Fabricator", - "s": "OoA1", - "lv": 4, - "ac": 19, - "hp": 50, - "pc": 8, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Gunner", - "s": "OoA2", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 16, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Handler", - "s": "OoA1", - "lv": 1, - "ac": 16, - "hp": 16, - "pc": 8, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Hunter", - "s": "OoA1", - "lv": 0, - "ac": 18, - "hp": 12, - "pc": 7, - "sz": "small", - "tp": "construct" - }, - { - "n": "Clockwork Mage", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 115, - "pc": 17, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Puppeteer", - "s": "OoA3", - "lv": 12, - "ac": 33, - "hp": 205, - "pc": 20, - "sz": "large", - "tp": "construct" - }, - { - "n": "Clockwork Serpent Spy", - "s": "Rust", - "lv": 1, - "ac": 19, - "hp": 15, - "pc": 10, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Clockwork Shambler Hordes", - "s": "OoA3", - "lv": 9, - "ac": 25, - "hp": 240, - "pc": 14, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Clockwork Soldier", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 80, - "pc": 16, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Clockwork Sphinx", - "s": "OoA2", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 19, - "sz": "large", - "tp": "construct" - }, - { - "n": "Clockwork Spy", - "s": "B3", - "lv": -1, - "ac": 17, - "hp": 8, - "pc": 8, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Cloud Giant", - "s": "B1", - "lv": 11, - "ac": 30, - "hp": 220, - "pc": 22, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Cloudsplitter", - "s": "FRP3", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 32, - "sz": "large", - "tp": "spirit" - }, - { - "n": "Cobbleswarm", - "s": "AoE1", - "lv": 2, - "ac": 17, - "hp": 20, - "pc": 9, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Cobbleswarm", - "s": "B3", - "lv": 2, - "ac": 16, - "hp": 20, - "pc": 9, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Cockatrice", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "small", - "tp": "beast" - }, - { - "n": "Cockroach Swarm", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Coil Spy", - "s": "B2", - "lv": 4, - "ac": 22, - "hp": 48, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Coiled Conifer", - "s": "WoW3", - "lv": 13, - "ac": 34, - "hp": 238, - "pc": 21, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Combusted", - "s": "BotD", - "lv": 3, - "ac": 19, - "hp": 65, - "pc": 6, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Commander Arsiella Dei", - "s": "CotT", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Committee Loyalists", - "s": "GW2", - "lv": 4, - "ac": 22, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Common Eurypterid", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 9, - "pc": 2, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Commoner", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 10, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Compsognathus", - "s": "B2", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Conqueror Worm", - "s": "NGD", - "lv": 21, - "ac": 46, - "hp": 460, - "pc": 37, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Consonite Choir", - "s": "B3", - "lv": 13, - "ac": 32, - "hp": 200, - "pc": 23, - "sz": "gargantuan", - "tp": "elemental" - }, - { - "n": "Contemplative", - "s": "SoT5", - "lv": 2, - "ac": 19, - "hp": 32, - "pc": 8, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Contemplative Meditant", - "s": "SoT5", - "lv": 15, - "ac": 38, - "hp": 275, - "pc": 29, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Contemplative Mentor", - "s": "SoT5", - "lv": 18, - "ac": 44, - "hp": 335, - "pc": 31, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Convergent Giant Eagle", - "s": "EC6", - "lv": 15, - "ac": 37, - "hp": 290, - "pc": 29, - "sz": "large", - "tp": "beast" - }, - { - "n": "Convergent Kendley Nathrael", - "s": "EC6", - "lv": 19, - "ac": 41, - "hp": 440, - "pc": 35, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Convergent Soldier", - "s": "EC6", - "lv": 16, - "ac": 39, - "hp": 315, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Copper Hand Illusionist", - "s": "AoE2", - "lv": 5, - "ac": 22, - "hp": 70, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Copper Hand Rogue", - "s": "AoE2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Coral Capuchin", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 8, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Corbayrant", - "s": "LOSK", - "lv": 16, - "ac": 38, - "hp": 295, - "pc": 28, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Cornugon", - "s": "B2", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 28, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Corpselight", - "s": "AV1", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Corpseroot", - "s": "BotD", - "lv": 11, - "ac": 30, - "hp": 225, - "pc": 18, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Corrosive Lizard", - "s": "EC1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Corrupt Guard", - "s": "AoA4", - "lv": 12, - "ac": 32, - "hp": 215, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Corrupt Shieldmarshal", - "s": "OoA3", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Corrupted Nosois", - "s": "Mal", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 8, - "sz": "tiny", - "tp": "monitor" - }, - { - "n": "Corrupted Priest", - "s": "EC1", - "lv": 3, - "ac": 17, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Corrupted Relic", - "s": "B3", - "lv": 4, - "ac": 19, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Corrupted Retainer", - "s": "EC1", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Counteflora", - "s": "EC3", - "lv": 10, - "ac": 29, - "hp": 220, - "pc": 18, - "sz": "large", - "tp": "plant" - }, - { - "n": "Crag Linnorm", - "s": "B1", - "lv": 14, - "ac": 37, - "hp": 270, - "pc": 26, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Cranium Preserver", - "s": "OoA3", - "lv": 10, - "ac": 28, - "hp": 220, - "pc": 19, - "sz": "large", - "tp": "construct" - }, - { - "n": "Crawling Hand", - "s": "B2", - "lv": -1, - "ac": 12, - "hp": 8, - "pc": 5, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Crawling Slurry", - "s": "SoT6", - "lv": 16, - "ac": 30, - "hp": 300, - "pc": 26, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Creeping Cone Swarm", - "s": "WoW3", - "lv": 10, - "ac": 29, - "hp": 135, - "pc": 18, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Crimson Acolyte", - "s": "SoT5", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Crimson Worm", - "s": "B1", - "lv": 18, - "ac": 40, - "hp": 410, - "pc": 25, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Croakchief Globblit Skink-eater", - "s": "Sli", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Crocodile", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "large", - "tp": "animal" - }, - { - "n": "Crocodile", - "s": "TiO", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "large", - "tp": "animal" - }, - { - "n": "Crossroads Guardian", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 19, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Crownbound Constellation", - "s": "GW3", - "lv": 8, - "ac": 30, - "hp": 98, - "pc": 19, - "sz": "huge", - "tp": "astral" - }, - { - "n": "Crucidaemon", - "s": "AoA5", - "lv": 15, - "ac": 38, - "hp": 225, - "pc": 26, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Crystal Sentinel", - "s": "SF2", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 19, - "sz": "large", - "tp": "construct" - }, - { - "n": "Crystalline Sentinel", - "s": "SF2", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 20, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Cu Sith", - "s": "EC3", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 16, - "sz": "large", - "tp": "fey" - }, - { - "n": "Cuetzmonquali", - "s": "LOMM", - "lv": 17, - "ac": 40, - "hp": 360, - "pc": 32, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Culdewen", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 15, - "sz": "small", - "tp": "fey" - }, - { - "n": "Cult Leader", - "s": "GMG", - "lv": 7, - "ac": 23, - "hp": 95, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Cultist", - "s": "GMG", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Cultist of Alocer", - "s": "DaLl", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Cunning Fox", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 14, - "pc": 9, - "sz": "small", - "tp": "beast" - }, - { - "n": "Cursebreaker", - "s": "Sli", - "lv": 9, - "ac": 27, - "hp": 140, - "pc": 18, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Cursed King", - "s": "LOIL", - "lv": 10, - "ac": 29, - "hp": 210, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Cyclops", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 12, - "sz": "large", - "tp": "giant" - }, - { - "n": "Cyclops Bully", - "s": "SoT3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 17, - "sz": "large", - "tp": "giant" - }, - { - "n": "Cythnigot", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 14, - "pc": 5, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Cythnophorian", - "s": "WoW1", - "lv": 8, - "ac": 27, - "hp": 161, - "pc": 12, - "sz": "tiny", - "tp": "fungus" - }, - { - "n": "D'ziriak", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Daelum", - "s": "OoA2", - "lv": 4, - "ac": 21, - "hp": 76, - "pc": 11, - "sz": "large", - "tp": "construct" - }, - { - "n": "Daemonic Infector", - "s": "AoE6", - "lv": 22, - "ac": 45, - "hp": 475, - "pc": 40, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Daemonic Rumormonger", - "s": "AoE6", - "lv": 22, - "ac": 48, - "hp": 350, - "pc": 41, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Daemonic Skinner", - "s": "AoE6", - "lv": 20, - "ac": 43, - "hp": 450, - "pc": 36, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Daeodon", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Dalgyal Gwishin", - "s": "SoG2", - "lv": 5, - "ac": 21, - "hp": 58, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Dalos", - "s": "AoA4", - "lv": 13, - "ac": 34, - "hp": 240, - "pc": 23, - "sz": "huge", - "tp": "fey" - }, - { - "n": "Damibwa", - "s": "SoT2", - "lv": 4, - "ac": 21, - "hp": 62, - "pc": 12, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Danava Titan", - "s": "B3", - "lv": 23, - "ac": 49, - "hp": 470, - "pc": 41, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Dancer", - "s": "GMG", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dancing Night Parade", - "s": "FRP3", - "lv": 19, - "ac": 40, - "hp": 450, - "pc": 28, - "sz": "gargantuan", - "tp": "spirit" - }, - { - "n": "Dandasuka", - "s": "B1", - "lv": 5, - "ac": 23, - "hp": 60, - "pc": 12, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Daqqanoenyent", - "s": "BotD", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 17, - "sz": "large", - "tp": "undead" - }, - { - "n": "Daring Danika", - "s": "EC1", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Darius", - "s": "AFoF", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dark Naga", - "s": "B1", - "lv": 7, - "ac": 27, - "hp": 115, - "pc": 15, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Darricus Stallit", - "s": "EC2", - "lv": 8, - "ac": 28, - "hp": 122, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Deadly Mantis", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 220, - "pc": 20, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Death Coach", - "s": "BotD", - "lv": 14, - "ac": 35, - "hp": 228, - "pc": 26, - "sz": "huge", - "tp": "spirit" - }, - { - "n": "Death Drider", - "s": "EC5", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 24, - "sz": "large", - "tp": "undead" - }, - { - "n": "Deathless Acolyte of Urgathoa", - "s": "BotD", - "lv": 3, - "ac": 17, - "hp": 36, - "pc": 9, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Deathless Hierophant of Urgathoa", - "s": "BotD", - "lv": 7, - "ac": 23, - "hp": 87, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Decrepit Mummy", - "s": "BotD", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Deculi", - "s": "AoA4", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 23, - "sz": "large", - "tp": "beast" - }, - { - "n": "Deep Gnome Rockwarden", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 63, - "pc": 14, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Deep Gnome Scout", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 7, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Deep Gnome Warrior", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 34, - "pc": 7, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Deepwater Dhuthorex", - "s": "AV3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Deghuun (Child of Mhar)", - "s": "EC6", - "lv": 18, - "ac": 42, - "hp": 420, - "pc": 30, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Deimavigga", - "s": "B3", - "lv": 17, - "ac": 40, - "hp": 285, - "pc": 32, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Deinonychus", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Deinosuchus", - "s": "B1", - "lv": 9, - "ac": 26, - "hp": 175, - "pc": 17, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Delamar Gianvin", - "s": "EC2", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Demilich", - "s": "B1", - "lv": 15, - "ac": 38, - "hp": 220, - "pc": 19, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Demongate Colossus", - "s": "SF2", - "lv": 14, - "ac": 35, - "hp": 240, - "pc": 24, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Demonic Rabble", - "s": "SF2", - "lv": 13, - "ac": 33, - "hp": 260, - "pc": 23, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Demonologist", - "s": "GMG", - "lv": 7, - "ac": 22, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Denizen of Leng", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 100, - "pc": 17, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Derghodaemon", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 240, - "pc": 24, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Derhii", - "s": "SF2", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 12, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Dero Magister", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 65, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Dero Stalker", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Dero Strangler", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Desa-Desa", - "s": "GW1", - "lv": 2, - "ac": 18, - "hp": 34, - "pc": 10, - "sz": "small", - "tp": "animal" - }, - { - "n": "Desecrated Guardian", - "s": "FRP3", - "lv": 18, - "ac": 42, - "hp": 360, - "pc": 30, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Desert Drake", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 15, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Desert Giant", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 185, - "pc": 19, - "sz": "large", - "tp": "giant" - }, - { - "n": "Desert's Howl", - "s": "LOMM", - "lv": 19, - "ac": 43, - "hp": 330, - "pc": 33, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Despot", - "s": "GMG", - "lv": 5, - "ac": 19, - "hp": 56, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Destrachan", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 20, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Devourer", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 175, - "pc": 22, - "sz": "large", - "tp": "undead" - }, - { - "n": "Dewey Daystar", - "s": "OoA1", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 10, - "sz": "small", - "tp": "plant" - }, - { - "n": "Dezullon", - "s": "B1", - "lv": 10, - "ac": 30, - "hp": 130, - "pc": 18, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Dhampir Wizard", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 22, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dig-widget", - "s": "B2", - "lv": 5, - "ac": 23, - "hp": 65, - "pc": 9, - "sz": "small", - "tp": "construct" - }, - { - "n": "Dimari-Diji", - "s": "SoT4", - "lv": 25, - "ac": 52, - "hp": 550, - "pc": 43, - "sz": "gargantuan", - "tp": "plant" - }, - { - "n": "Diobel Sweeper Tough", - "s": "AoE3", - "lv": 7, - "ac": 24, - "hp": 125, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dire Wolf", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Divine Warden of Iomedae", - "s": "CotT", - "lv": 16, - "ac": 37, - "hp": 290, - "pc": 27, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Divine Warden of Nethys", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 60, - "pc": 11, - "sz": "large", - "tp": "construct" - }, - { - "n": "Divine Wardens of Arazni", - "s": "CotT", - "lv": 16, - "ac": 37, - "hp": 290, - "pc": 27, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Djinni", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 71, - "pc": 13, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Dmiri Yoltosha", - "s": "AoA1", - "lv": 4, - "ac": 22, - "hp": 52, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Doatara the Poisoner", - "s": "MotM", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Doatara the Priest", - "s": "MotM", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Doblagub", - "s": "EC4", - "lv": 13, - "ac": 35, - "hp": 250, - "pc": 26, - "sz": "large", - "tp": "fey" - }, - { - "n": "Dockhand", - "s": "GMG", - "lv": 0, - "ac": 14, - "hp": 20, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Domovoi", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 11, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Doorwarden", - "s": "AoA1", - "lv": 5, - "ac": 22, - "hp": 60, - "pc": 13, - "sz": "large", - "tp": "construct" - }, - { - "n": "Doppelganger", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Doppelganger", - "s": "BB", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Doprillu", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 260, - "pc": 22, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Doru", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Dracolisk", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Draconal", - "s": "B3", - "lv": 20, - "ac": 45, - "hp": 370, - "pc": 36, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Draft Lizard", - "s": "LOHh", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Dragon Turtle", - "s": "B1", - "lv": 9, - "ac": 29, - "hp": 140, - "pc": 18, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Dragon, Wyrmling Green", - "s": "BB", - "lv": 4, - "ac": 22, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "dragon" - }, - { - "n": "Dragon's Blood Puffball", - "s": "AV3", - "lv": 8, - "ac": 24, - "hp": 170, - "pc": 12, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Dragonscarred Dead", - "s": "AoA4", - "lv": 13, - "ac": 33, - "hp": 210, - "pc": 24, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Dragonshard Guardian", - "s": "AoA6", - "lv": 22, - "ac": 48, - "hp": 430, - "pc": 39, - "sz": "large", - "tp": "construct" - }, - { - "n": "Dragonstorm Fire Giant", - "s": "AoA6", - "lv": 18, - "ac": 42, - "hp": 400, - "pc": 30, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Drainberry Bush", - "s": "B2", - "lv": 7, - "ac": 23, - "hp": 135, - "pc": 16, - "sz": "large", - "tp": "plant" - }, - { - "n": "Drakauthix", - "s": "B1", - "lv": 9, - "ac": 25, - "hp": 190, - "pc": 17, - "sz": "huge", - "tp": "fungus" - }, - { - "n": "Drake Courser", - "s": "FRP2", - "lv": 12, - "ac": 32, - "hp": 230, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Drake Skeleton", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 14, - "sz": "large", - "tp": "undead" - }, - { - "n": "Dramofir", - "s": "B3", - "lv": 14, - "ac": 35, - "hp": 290, - "pc": 28, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Draugr", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Draxie", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Dread Dhuthorex", - "s": "AV3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Dread Roc", - "s": "FRP1", - "lv": 15, - "ac": 36, - "hp": 290, - "pc": 26, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Dread Wisp", - "s": "AV3", - "lv": 9, - "ac": 31, - "hp": 90, - "pc": 20, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Dread Wraith", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 130, - "pc": 19, - "sz": "large", - "tp": "undead" - }, - { - "n": "Dreadsong Dancer", - "s": "AoE2", - "lv": 8, - "ac": 27, - "hp": 160, - "pc": 13, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Dream Spider", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Dreamscraper", - "s": "GW3", - "lv": 7, - "ac": 24, - "hp": 115, - "pc": 15, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Drenchdead", - "s": "SoT4", - "lv": 12, - "ac": 32, - "hp": 230, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Dreshkan", - "s": "AV2", - "lv": 4, - "ac": 20, - "hp": 72, - "pc": 11, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Dretch", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 45, - "pc": 6, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Drider", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 13, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Dromornis", - "s": "FRP1", - "lv": 10, - "ac": 28, - "hp": 150, - "pc": 19, - "sz": "large", - "tp": "animal" - }, - { - "n": "Drow Fighter", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 18, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Hunter", - "s": "AV3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Priestess", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 39, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Priestess", - "s": "BB", - "lv": 3, - "ac": 20, - "hp": 39, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Rogue", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 26, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Shootist", - "s": "AV3", - "lv": 8, - "ac": 27, - "hp": 120, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Sneak", - "s": "BB", - "lv": 2, - "ac": 19, - "hp": 26, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Warden", - "s": "AV3", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drow Warrior", - "s": "BB", - "lv": 1, - "ac": 18, - "hp": 18, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drunkard", - "s": "GMG", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Drunken Farmer", - "s": "FoP", - "lv": -1, - "ac": 13, - "hp": 16, - "pc": 2, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Druulbach", - "s": "WoW3", - "lv": 12, - "ac": 32, - "hp": 230, - "pc": 25, - "sz": "large", - "tp": "giant" - }, - { - "n": "Dryad", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 55, - "pc": 10, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Dryad Queen", - "s": "B1", - "lv": 13, - "ac": 35, - "hp": 220, - "pc": 25, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Duende", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 7, - "sz": "small", - "tp": "fey" - }, - { - "n": "Duergar Bombardier", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Duergar Sharpshooter", - "s": "B1", - "lv": 0, - "ac": 17, - "hp": 16, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Duergar Slave Lord", - "s": "AoA4", - "lv": 13, - "ac": 35, - "hp": 240, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Duergar Taskmaster", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dulac", - "s": "AV3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dullahan", - "s": "B1", - "lv": 7, - "ac": 28, - "hp": 95, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Duneshaker Solifugid", - "s": "B2", - "lv": 18, - "ac": 42, - "hp": 340, - "pc": 30, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Durnolith", - "s": "WoW2", - "lv": 9, - "ac": 28, - "hp": 150, - "pc": 16, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Duskwalker Ghost Hunter", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 56, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Dust Mephit", - "s": "B2", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Dvorovoi", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 44, - "pc": 12, - "sz": "small", - "tp": "fey" - }, - { - "n": "Dwandek", - "s": "SoT5", - "lv": 17, - "ac": 40, - "hp": 270, - "pc": 31, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Dweomercat", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Dybbuk", - "s": "B3", - "lv": 15, - "ac": 35, - "hp": 175, - "pc": 27, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Dyzallin Shraen", - "s": "EC5", - "lv": 19, - "ac": 42, - "hp": 380, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Eagle", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Earth Mephit", - "s": "B1", - "lv": 1, - "ac": 15, - "hp": 20, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Earth Wisp", - "s": "B3", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "tiny", - "tp": "elemental" - }, - { - "n": "Earthen Destrier", - "s": "B2", - "lv": 4, - "ac": 20, - "hp": 72, - "pc": 10, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Eberark", - "s": "AoE3", - "lv": 10, - "ac": 30, - "hp": 275, - "pc": 19, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Ecorche", - "s": "BotD", - "lv": 16, - "ac": 38, - "hp": 275, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Efreeti", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 175, - "pc": 17, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Einherji", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 17, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Ekujae Guardian", - "s": "AoA2", - "lv": 2, - "ac": 19, - "hp": 26, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Elananx", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 14, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Elasmosaurus", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Elder Cauthooj", - "s": "FRP1", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 25, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Elder Child of Belcorra", - "s": "AV3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "small", - "tp": "undead" - }, - { - "n": "Elder Sphinx", - "s": "B3", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 31, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Elder Thing", - "s": "GW3", - "lv": 5, - "ac": 21, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Elder Thing Researcher", - "s": "GW3", - "lv": 10, - "ac": 29, - "hp": 218, - "pc": 21, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Elder Wyrmwraith", - "s": "B3", - "lv": 23, - "ac": 49, - "hp": 450, - "pc": 40, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Electric Eel", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 18, - "pc": 4, - "sz": "small", - "tp": "animal" - }, - { - "n": "Elemental Avalanche", - "s": "B1", - "lv": 11, - "ac": 32, - "hp": 215, - "pc": 20, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Elemental Hurricane", - "s": "B1", - "lv": 11, - "ac": 32, - "hp": 140, - "pc": 20, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Elemental Inferno", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 210, - "pc": 20, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Elemental Tsunami", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Elemental Vessel, Water", - "s": "AoE5", - "lv": 16, - "ac": 40, - "hp": 225, - "pc": 28, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Elemental, Brine Shark", - "s": "BB", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Elemental, Cinder Rat", - "s": "BB", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 9, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Elemental, Sod Hound", - "s": "BB", - "lv": 3, - "ac": 19, - "hp": 44, - "pc": 9, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Elemental, Zephyr Hawk", - "s": "BB", - "lv": 3, - "ac": 21, - "hp": 36, - "pc": 7, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Elephant", - "s": "B1", - "lv": 7, - "ac": 23, - "hp": 130, - "pc": 13, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Elite Ecorches", - "s": "CotT", - "lv": 17, - "ac": 40, - "hp": 295, - "pc": 29, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Elite Yeast Ooze", - "s": "CotT", - "lv": 3, - "ac": 14, - "hp": 75, - "pc": 8, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Eloko", - "s": "LOME", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "small", - "tp": "fey" - }, - { - "n": "Elysian Sheep", - "s": "EC6", - "lv": 7, - "ac": 25, - "hp": 140, - "pc": 18, - "sz": "large", - "tp": "animal" - }, - { - "n": "Elysian Titan", - "s": "B3", - "lv": 21, - "ac": 46, - "hp": 400, - "pc": 36, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Elysian Titan", - "s": "EC6", - "lv": 21, - "ac": 46, - "hp": 400, - "pc": 36, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Emaliza Zandivar", - "s": "AoA6", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 36, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ember Fox", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 8, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Emorga All-Seer", - "s": "WoW1", - "lv": 9, - "ac": 29, - "hp": 170, - "pc": 21, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Emperor Bird", - "s": "AoA1", - "lv": 2, - "ac": 18, - "hp": 27, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Emperor Cobra", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Empress Bore Worm", - "s": "B3", - "lv": 7, - "ac": 23, - "hp": 140, - "pc": 13, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Endlo Kiver", - "s": "SF1", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Engerra", - "s": "CotT", - "lv": 9, - "ac": 27, - "hp": 152, - "pc": 20, - "sz": "tiny", - "tp": "celestial" - }, - { - "n": "Ephialtes", - "s": "SF2", - "lv": 16, - "ac": 39, - "hp": 299, - "pc": 30, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Equendia", - "s": "GW3", - "lv": 11, - "ac": 31, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Eremite", - "s": "B2", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 34, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Erinys", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 120, - "pc": 18, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Esipil", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 7, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Esobok", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 12, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Esobok Ghouls", - "s": "Mal", - "lv": 5, - "ac": 21, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ether Spider", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 12, - "sz": "large", - "tp": "beast" - }, - { - "n": "Etioling Blightmage", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 150, - "pc": 19, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Ettin", - "s": "B1", - "lv": 6, - "ac": 21, - "hp": 110, - "pc": 16, - "sz": "large", - "tp": "giant" - }, - { - "n": "Etward Ritalson", - "s": "GW3", - "lv": 9, - "ac": 28, - "hp": 140, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Eunemvro", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 78, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Eunice", - "s": "AoE1", - "lv": 0, - "ac": 15, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Evangelist", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 13, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Evora Yarket", - "s": "EC2", - "lv": 7, - "ac": 22, - "hp": 115, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Excorion", - "s": "AoE2", - "lv": 7, - "ac": 24, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Excorion", - "s": "BotD", - "lv": 7, - "ac": 24, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Excorion Paragon", - "s": "AoE6", - "lv": 18, - "ac": 41, - "hp": 300, - "pc": 30, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Executioner", - "s": "GMG", - "lv": 6, - "ac": 23, - "hp": 105, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Exorcist", - "s": "SoG3", - "lv": 8, - "ac": 24, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Eyelet", - "s": "WoW2", - "lv": 1, - "ac": 15, - "hp": 20, - "pc": 10, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Eyelet Swarm", - "s": "WoW2", - "lv": 7, - "ac": 24, - "hp": 90, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Fabled Harrowkin", - "s": "SF3", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 29, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Faceless Butcher", - "s": "EC4", - "lv": 11, - "ac": 31, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Faceless Stalker", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Fading Fox", - "s": "B3", - "lv": 2, - "ac": 21, - "hp": 25, - "pc": 11, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Faerie Dragon", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 16, - "sz": "tiny", - "tp": "dragon" - }, - { - "n": "Fafnheir", - "s": "LOMM", - "lv": 24, - "ac": 51, - "hp": 500, - "pc": 38, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Failed Prophet", - "s": "LOSK", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 20, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Faithless Ecclesiarch", - "s": "BotD", - "lv": 6, - "ac": 21, - "hp": 93, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Fallen Acolyte", - "s": "Rust", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Fallen Champion", - "s": "BotD", - "lv": 8, - "ac": 28, - "hp": 130, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Falrok", - "s": "AoA4", - "lv": 14, - "ac": 37, - "hp": 250, - "pc": 28, - "sz": "medium", - "tp": "undead" - }, - { - "n": "False Governor", - "s": "SoG4", - "lv": 12, - "ac": 32, - "hp": 220, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "False Priest", - "s": "GMG", - "lv": 4, - "ac": 21, - "hp": 51, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Familiar Shadow", - "s": "SoG3", - "lv": 4, - "ac": 20, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Fan Hongrui", - "s": "SoG1", - "lv": 2, - "ac": 15, - "hp": 16, - "pc": 9, - "sz": "small", - "tp": "undead" - }, - { - "n": "Farmer", - "s": "GMG", - "lv": 0, - "ac": 14, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Fate's Prophet", - "s": "SF2", - "lv": 14, - "ac": 35, - "hp": 255, - "pc": 25, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Fayati Alummur", - "s": "AoE2", - "lv": 8, - "ac": 27, - "hp": 150, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Feathered Bear", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 160, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Fen Mosquito Swarm", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 25, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Fence", - "s": "GMG", - "lv": 5, - "ac": 20, - "hp": 70, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Feral Skull Swarm", - "s": "B3", - "lv": 12, - "ac": 32, - "hp": 160, - "pc": 21, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Ferrugon", - "s": "SF1", - "lv": 12, - "ac": 33, - "hp": 190, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Festering Gnasher", - "s": "BotD", - "lv": 1, - "ac": 16, - "hp": 18, - "pc": 8, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Festrog", - "s": "B3", - "lv": 1, - "ac": 15, - "hp": 24, - "pc": 6, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Fetchling Scout", - "s": "B2", - "lv": 1, - "ac": 18, - "hp": 18, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Fiddling Bones", - "s": "BotD", - "lv": 3, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Fiery Leopard", - "s": "FoP", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Filth Fire", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 11, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Fire Giant", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 175, - "pc": 18, - "sz": "large", - "tp": "giant" - }, - { - "n": "Fire Jellyfish Swarm", - "s": "B2", - "lv": 6, - "ac": 13, - "hp": 155, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Fire Mephit", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Fire Wisp", - "s": "B3", - "lv": 0, - "ac": 16, - "hp": 18, - "pc": 6, - "sz": "tiny", - "tp": "elemental" - }, - { - "n": "Fire Yai", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 26, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Fire-pot Ubanu", - "s": "SoT2", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Firewyrm", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 165, - "pc": 16, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Five-Color Orchid Mantis", - "s": "LOTXWG", - "lv": 9, - "ac": 27, - "hp": 137, - "pc": 18, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Fjord Linnorm", - "s": "B2", - "lv": 16, - "ac": 40, - "hp": 315, - "pc": 28, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Flame Drake", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 12, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Flaming Skull", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Flash Beetle", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Flea Swarm", - "s": "EC1", - "lv": 5, - "ac": 18, - "hp": 55, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Flesh Golem", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 12, - "sz": "large", - "tp": "construct" - }, - { - "n": "Fleshforged Conformer", - "s": "LOIL", - "lv": 8, - "ac": 26, - "hp": 145, - "pc": 19, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Fleshforged Dreadnought", - "s": "LOIL", - "lv": 18, - "ac": 42, - "hp": 300, - "pc": 29, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Flickerwisp", - "s": "AV1", - "lv": 2, - "ac": 20, - "hp": 18, - "pc": 9, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Flumph", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 17, - "pc": 8, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Fluxwraith", - "s": "BotD", - "lv": 17, - "ac": 39, - "hp": 250, - "pc": 35, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Flying Mountain Kaminari", - "s": "FRP3", - "lv": 18, - "ac": 42, - "hp": 320, - "pc": 33, - "sz": "huge", - "tp": "humanoid" - }, - { - "n": "Flytrap Leshy", - "s": "B2", - "lv": 4, - "ac": 20, - "hp": 72, - "pc": 11, - "sz": "small", - "tp": "plant" - }, - { - "n": "Followers of Shumfallow", - "s": "OoA1", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 6, - "sz": "small", - "tp": "fungus" - }, - { - "n": "Forge-spurned", - "s": "AoA4", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Formian Mageslayer", - "s": "SoT5", - "lv": 16, - "ac": 38, - "hp": 240, - "pc": 31, - "sz": "medium", - "tp": "" - }, - { - "n": "Formian Queen", - "s": "SoT5", - "lv": 17, - "ac": 40, - "hp": 255, - "pc": 31, - "sz": "large", - "tp": "" - }, - { - "n": "Formian Worker", - "s": "SoT5", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "" - }, - { - "n": "Fortune Eater", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 100, - "pc": 13, - "sz": "large", - "tp": "spirit" - }, - { - "n": "Fossil Golem", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 195, - "pc": 20, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Franca Laurentz", - "s": "AoE3", - "lv": 13, - "ac": 35, - "hp": 195, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Frefferth", - "s": "AoE2", - "lv": 9, - "ac": 30, - "hp": 125, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Froghemoth", - "s": "B2", - "lv": 13, - "ac": 32, - "hp": 285, - "pc": 25, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Froglegs", - "s": "SoT2", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Frost Drake", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 14, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Frost Giant", - "s": "B1", - "lv": 9, - "ac": 29, - "hp": 150, - "pc": 17, - "sz": "large", - "tp": "giant" - }, - { - "n": "Frost Troll", - "s": "B2", - "lv": 4, - "ac": 19, - "hp": 90, - "pc": 12, - "sz": "large", - "tp": "giant" - }, - { - "n": "Frost Worm", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 225, - "pc": 22, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Fuath", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 8, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Fuming Sludge", - "s": "Sli", - "lv": 7, - "ac": 16, - "hp": 160, - "pc": 11, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Fungus Leshy", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 6, - "sz": "small", - "tp": "fungus" - }, - { - "n": "Gage Carlyle", - "s": "AoE3", - "lv": 11, - "ac": 24, - "hp": 120, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gahlepod", - "s": "EC4", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 13, - "sz": "small", - "tp": "fey" - }, - { - "n": "Gallowdead", - "s": "BotD", - "lv": 15, - "ac": 37, - "hp": 280, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Galudu", - "s": "AV3", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Galvo", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 158, - "pc": 17, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Gambulami", - "s": "SoT4", - "lv": 11, - "ac": 31, - "hp": 200, - "pc": 21, - "sz": "small", - "tp": "fey" - }, - { - "n": "Gancanagh", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Gang Leader", - "s": "GMG", - "lv": 7, - "ac": 26, - "hp": 104, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ganzi Martial Artist", - "s": "B3", - "lv": 3, - "ac": 21, - "hp": 36, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gargoyle", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Gargoyle", - "s": "BB", - "lv": 4, - "ac": 21, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Garrholdion", - "s": "CotT", - "lv": 20, - "ac": 46, - "hp": 350, - "pc": 33, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Garrote Master Assassin", - "s": "AoE5", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Garuda", - "s": "B3", - "lv": 9, - "ac": 28, - "hp": 135, - "pc": 20, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Gashadokuro", - "s": "BotD", - "lv": 13, - "ac": 33, - "hp": 230, - "pc": 24, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Gathlain Wanderer", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 14, - "pc": 6, - "sz": "small", - "tp": "fey" - }, - { - "n": "Gau Cho Rong", - "s": "LOTXWG", - "lv": 4, - "ac": 20, - "hp": 50, - "pc": 10, - "sz": "small", - "tp": "beast" - }, - { - "n": "Gbahali", - "s": "SoT2", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 17, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Gegnir", - "s": "SF3", - "lv": 20, - "ac": 44, - "hp": 470, - "pc": 35, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Geist", - "s": "BotD", - "lv": 9, - "ac": 26, - "hp": 120, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Gelatinous Cube", - "s": "B1", - "lv": 3, - "ac": 10, - "hp": 90, - "pc": 5, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Gelugon", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 215, - "pc": 26, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Gerhard Pendergrast", - "s": "AoA2", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ghaele", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 25, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Ghaele of Kharnas", - "s": "AoE6", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 32, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Ghalzarokh", - "s": "SF2", - "lv": 15, - "ac": 36, - "hp": 330, - "pc": 28, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Ghast", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ghastly Bear", - "s": "AoA3", - "lv": 9, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "large", - "tp": "undead" - }, - { - "n": "Ghodrak the Quick", - "s": "GW2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gholdako", - "s": "BotD", - "lv": 10, - "ac": 27, - "hp": 215, - "pc": 16, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Ghonhatine", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Ghoran Manipulator", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ghost Commoner", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 30, - "pc": 10, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ghost Commoner", - "s": "BB", - "lv": 4, - "ac": 20, - "hp": 30, - "pc": 10, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ghost Mage", - "s": "B1", - "lv": 10, - "ac": 27, - "hp": 135, - "pc": 17, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ghost Monk", - "s": "FRP1", - "lv": 9, - "ac": 25, - "hp": 115, - "pc": 18, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ghost Pirate Captain", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 17, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ghoul", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ghoul", - "s": "BB", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ghul", - "s": "BotD", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Giant Amoeba", - "s": "B2", - "lv": 1, - "ac": 8, - "hp": 45, - "pc": 4, - "sz": "small", - "tp": "ooze" - }, - { - "n": "Giant Anaconda", - "s": "B1", - "lv": 8, - "ac": 25, - "hp": 175, - "pc": 17, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Animated Statue", - "s": "B1", - "lv": 7, - "ac": 26, - "hp": 100, - "pc": 13, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Giant Ant", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Aukashungi", - "s": "EC4", - "lv": 14, - "ac": 36, - "hp": 300, - "pc": 24, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Giant Badger", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Bat", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Bone Skipper", - "s": "AoE2", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 17, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Centipede", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Chameleon", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 60, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Cockroach", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Crab", - "s": "B2", - "lv": 2, - "ac": 19, - "hp": 24, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Crawling Hand", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Giant Dragonfly", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Dragonfly Nymph", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 46, - "pc": 8, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Eagle", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 11, - "sz": "large", - "tp": "beast" - }, - { - "n": "Giant Flea", - "s": "EC1", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Fly", - "s": "B2", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Flying Squirrel", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Flytrap", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 185, - "pc": 17, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Giant Frilled Lizard", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Frog", - "s": "B2", - "lv": 1, - "ac": 15, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Gecko", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Hermit Crab", - "s": "B3", - "lv": 5, - "ac": 21, - "hp": 114, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Hippocampus", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 170, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Jellyfish", - "s": "B2", - "lv": 7, - "ac": 15, - "hp": 165, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Leech", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 32, - "pc": 5, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Lightning Serpent", - "s": "FoP", - "lv": 2, - "ac": 19, - "hp": 27, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Maggot", - "s": "B2", - "lv": 0, - "ac": 13, - "hp": 18, - "pc": 3, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Mantis", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 40, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Mining Bee", - "s": "SoT1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Monitor Lizard", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Moray Eel", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 65, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Mosquito", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 80, - "pc": 17, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Octopus", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 15, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Opossum", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Orchid Mantis", - "s": "LOTXWG", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Pangolin", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 63, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Pirate Skeleton", - "s": "POS1", - "lv": 8, - "ac": 26, - "hp": 125, - "pc": 18, - "sz": "large", - "tp": "undead" - }, - { - "n": "Giant Porcupine", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Rat", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Scorpion", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Seahorse", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 58, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Silverfish", - "s": "SoT1", - "lv": 0, - "ac": 15, - "hp": 17, - "pc": 8, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Skunk", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 21, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Slug", - "s": "B2", - "lv": 8, - "ac": 25, - "hp": 165, - "pc": 14, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Snapping Turtle", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 17, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Giant Solifugid", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Squid", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 21, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Stag Beetle", - "s": "B1", - "lv": 4, - "ac": 22, - "hp": 55, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Tarantula", - "s": "B1", - "lv": 6, - "ac": 21, - "hp": 135, - "pc": 14, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Tick", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Giant Toad", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 36, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Tsetse Fly", - "s": "SoT1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Viper", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 26, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Giant Vulture", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Wasp", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Whiptail Centipede", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Giant Wolverine", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 65, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Giant Worker Bee", - "s": "SoT1", - "lv": 0, - "ac": 16, - "hp": 16, - "pc": 5, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Gibbering Mouther", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 120, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Gibtanius", - "s": "AV2", - "lv": 8, - "ac": 28, - "hp": 140, - "pc": 16, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Gibtas Bounder", - "s": "AV2", - "lv": 5, - "ac": 22, - "hp": 76, - "pc": 13, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Gibtas Spawn Swarm", - "s": "AV2", - "lv": 6, - "ac": 23, - "hp": 70, - "pc": 14, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Gilded Gunner Assassins", - "s": "OoA2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gilded Gunner Goons", - "s": "OoA2", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gilded Gunner Safecrackers", - "s": "OoA2", - "lv": 4, - "ac": 20, - "hp": 65, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gimmerling", - "s": "B1", - "lv": 12, - "ac": 34, - "hp": 235, - "pc": 21, - "sz": "small", - "tp": "fey" - }, - { - "n": "Ginjana Mindkeeper", - "s": "EC3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Girtablilu Seer", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 210, - "pc": 25, - "sz": "large", - "tp": "beast" - }, - { - "n": "Girtablilu Sentry", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 160, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Glabrezu", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 280, - "pc": 24, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Glass Elephant", - "s": "OoA3", - "lv": 12, - "ac": 32, - "hp": 245, - "pc": 22, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Glass Golem", - "s": "B2", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 14, - "sz": "large", - "tp": "construct" - }, - { - "n": "Glaz Nixbrix", - "s": "OoA1", - "lv": 4, - "ac": 24, - "hp": 60, - "pc": 9, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Gliminal", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Glimmervine", - "s": "GW2", - "lv": 4, - "ac": 21, - "hp": 90, - "pc": 11, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Glitterspore", - "s": "WoW2", - "lv": 8, - "ac": 24, - "hp": 105, - "pc": 17, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Gloaming Will-o'-wisp", - "s": "AoE4", - "lv": 13, - "ac": 37, - "hp": 110, - "pc": 25, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Globster", - "s": "B3", - "lv": 5, - "ac": 12, - "hp": 170, - "pc": 9, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Gluttondark Babau", - "s": "EC2", - "lv": 7, - "ac": 26, - "hp": 135, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Gluttonworm", - "s": "SoT5", - "lv": 19, - "ac": 41, - "hp": 445, - "pc": 32, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Glutu", - "s": "Rust", - "lv": 3, - "ac": 19, - "hp": 44, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gnagrif", - "s": "SoT1", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 7, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Gnoll Cultist", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gnoll Hunter", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 29, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gnoll Sergeant", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Goblin Commando", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin Commando", - "s": "BB", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin Dog", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 17, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Goblin Igniter", - "s": "BB", - "lv": 1, - "ac": 17, - "hp": 15, - "pc": 4, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin Pyro", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 15, - "pc": 4, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin War Chanter", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin Warrior", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 2, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Goblin Warrior", - "s": "BB", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 2, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Gogiteth", - "s": "B1", - "lv": 12, - "ac": 31, - "hp": 250, - "pc": 21, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Gold Defender", - "s": "SoT4", - "lv": 13, - "ac": 34, - "hp": 190, - "pc": 21, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Gold Defender Garrison", - "s": "SoT4", - "lv": 13, - "ac": 29, - "hp": 240, - "pc": 22, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Gold Tank Investors", - "s": "OoA1", - "lv": -1, - "ac": 14, - "hp": 8, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Golden Bamboo Leshy", - "s": "AFoF", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "plant" - }, - { - "n": "Goldpebble", - "s": "LOSK", - "lv": 5, - "ac": 21, - "hp": 90, - "pc": 9, - "sz": "large", - "tp": "beast" - }, - { - "n": "Golgopo", - "s": "SoT3", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 16, - "sz": "small", - "tp": "construct" - }, - { - "n": "Goliath Spider", - "s": "B1", - "lv": 11, - "ac": 30, - "hp": 220, - "pc": 22, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Gomwai", - "s": "FRP1", - "lv": 12, - "ac": 33, - "hp": 235, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gorgon", - "s": "B2", - "lv": 8, - "ac": 28, - "hp": 135, - "pc": 19, - "sz": "large", - "tp": "beast" - }, - { - "n": "Gorilla", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Gosreg", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 21, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Gourd Leshy", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 5, - "sz": "small", - "tp": "plant" - }, - { - "n": "Grabble Forden", - "s": "AoE4", - "lv": 13, - "ac": 32, - "hp": 285, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Graem", - "s": "AoE5", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grand Defender", - "s": "LOHh", - "lv": 15, - "ac": 40, - "hp": 280, - "pc": 29, - "sz": "huge", - "tp": "celestial" - }, - { - "n": "Grandfather Mantis", - "s": "FRP2", - "lv": 15, - "ac": 36, - "hp": 300, - "pc": 27, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Granite Glyptodont", - "s": "B2", - "lv": 8, - "ac": 28, - "hp": 145, - "pc": 17, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Grappling Spirit", - "s": "BotD", - "lv": 9, - "ac": 27, - "hp": 125, - "pc": 17, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Graul", - "s": "LOHh", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 14, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Grauladon", - "s": "AoA1", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 7, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Grave Karina", - "s": "SoT4", - "lv": 11, - "ac": 30, - "hp": 240, - "pc": 21, - "sz": "large", - "tp": "beast" - }, - { - "n": "Grave Robber", - "s": "GMG", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grave Spinosaurus", - "s": "FRP1", - "lv": 15, - "ac": 30, - "hp": 280, - "pc": 26, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Gravedigger", - "s": "GMG", - "lv": 1, - "ac": 15, - "hp": 22, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Graveknight", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Graveknight Captain", - "s": "SoT4", - "lv": 6, - "ac": 25, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Graveknight Champion", - "s": "SoT4", - "lv": 15, - "ac": 38, - "hp": 275, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Graveknight of Kharnas", - "s": "AoE6", - "lv": 17, - "ac": 40, - "hp": 260, - "pc": 30, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Graveknight Warmaster", - "s": "BotD", - "lv": 14, - "ac": 38, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Graveshell", - "s": "AoA1", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 4, - "sz": "large", - "tp": "beast" - }, - { - "n": "Gray Death", - "s": "NGD", - "lv": 20, - "ac": 44, - "hp": 330, - "pc": 33, - "sz": "huge", - "tp": "spirit" - }, - { - "n": "Gray Gardener Assassin", - "s": "NGD", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gray Gardener Director General", - "s": "NGD", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gray Gardener Enforcer", - "s": "NGD", - "lv": 17, - "ac": 39, - "hp": 350, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gray Ooze", - "s": "B2", - "lv": 4, - "ac": 14, - "hp": 60, - "pc": 8, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Graytusk", - "s": "FoP", - "lv": 3, - "ac": 21, - "hp": 47, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Great Cyclops", - "s": "B1", - "lv": 12, - "ac": 32, - "hp": 235, - "pc": 22, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Great Grodair", - "s": "SoT2", - "lv": 7, - "ac": 23, - "hp": 130, - "pc": 16, - "sz": "large", - "tp": "beast" - }, - { - "n": "Great White Shark", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Greater Barghest", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 16, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Greater Nightmare", - "s": "B1", - "lv": 11, - "ac": 31, - "hp": 200, - "pc": 22, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Greater Shadow", - "s": "B1", - "lv": 7, - "ac": 24, - "hp": 75, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Green Hag", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Green Man", - "s": "B3", - "lv": 24, - "ac": 51, - "hp": 525, - "pc": 42, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Green Monkey", - "s": "GW2", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 12, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Gref", - "s": "AoE1", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 9, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Gremlin, Pugwampi", - "s": "BB", - "lv": 0, - "ac": 16, - "hp": 19, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Grendel", - "s": "B2", - "lv": 19, - "ac": 44, - "hp": 360, - "pc": 35, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Grick", - "s": "AoE1", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 12, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Griffon", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Grig", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 7, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Grikkitog", - "s": "B1", - "lv": 14, - "ac": 36, - "hp": 200, - "pc": 29, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Grim Reaper", - "s": "B1", - "lv": 21, - "ac": 47, - "hp": 320, - "pc": 41, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Grimple", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 9, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Grimstalker", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Grimwold", - "s": "AoE5", - "lv": 14, - "ac": 36, - "hp": 270, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grindylow", - "s": "B2", - "lv": 0, - "ac": 15, - "hp": 14, - "pc": 5, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Grioth Cultist", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grioth Scout", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grippli Archer", - "s": "AoA2", - "lv": 3, - "ac": 20, - "hp": 44, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Grippli Greenspeaker", - "s": "AoA2", - "lv": 5, - "ac": 21, - "hp": 71, - "pc": 13, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Grippli Jinxer", - "s": "SoT2", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 16, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Grippli Scout", - "s": "B2", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Grippli Skirmisher", - "s": "SoT2", - "lv": 4, - "ac": 22, - "hp": 60, - "pc": 12, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Grisantian Lion", - "s": "LOMM", - "lv": 12, - "ac": 32, - "hp": 215, - "pc": 25, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Gritblight", - "s": "WoW3", - "lv": 13, - "ac": 33, - "hp": 235, - "pc": 23, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Grizzly Bear", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Grodair", - "s": "B2", - "lv": 5, - "ac": 20, - "hp": 88, - "pc": 13, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Grogrisant", - "s": "LOMM", - "lv": 16, - "ac": 38, - "hp": 295, - "pc": 30, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Grootslang", - "s": "LOME", - "lv": 16, - "ac": 38, - "hp": 370, - "pc": 28, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Grospek Lavarsus", - "s": "AoE1", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Grothlut", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 5, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Grouloop", - "s": "SoT3", - "lv": 9, - "ac": 27, - "hp": 185, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Guard", - "s": "GMG", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Guard Dog", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Guardian Aluum", - "s": "SF2", - "lv": 13, - "ac": 34, - "hp": 210, - "pc": 22, - "sz": "large", - "tp": "construct" - }, - { - "n": "Guardian Naga", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 175, - "pc": 22, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Guecubu", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 110, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Gug", - "s": "B1", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Guhdggi", - "s": "SoG2", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 14, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Guide", - "s": "GMG", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Guildmaster", - "s": "GMG", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Guillotine Golem", - "s": "NGD", - "lv": 18, - "ac": 42, - "hp": 270, - "pc": 28, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Gulzash", - "s": "AV2", - "lv": 4, - "ac": 20, - "hp": 72, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gumiho", - "s": "FRP3", - "lv": 17, - "ac": 39, - "hp": 310, - "pc": 29, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Gunmarshal", - "s": "OoA1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gunpowder Ooze", - "s": "LOIL", - "lv": 14, - "ac": 29, - "hp": 400, - "pc": 22, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Gurgist Mauler", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 120, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Gurglegut", - "s": "SoG4", - "lv": 12, - "ac": 32, - "hp": 216, - "pc": 23, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Guthallath", - "s": "B1", - "lv": 19, - "ac": 43, - "hp": 325, - "pc": 30, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Gylou", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 240, - "pc": 28, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Hadi Mob", - "s": "SF2", - "lv": 15, - "ac": 37, - "hp": 270, - "pc": 25, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Hadrinnex", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 118, - "pc": 17, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hadrosaurid", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 13, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Halbrux Far-Sight", - "s": "SoT3", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 21, - "sz": "large", - "tp": "giant" - }, - { - "n": "Hallod", - "s": "FoP", - "lv": 3, - "ac": 19, - "hp": 44, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Halspin the Stung", - "s": "FRP2", - "lv": 15, - "ac": 35, - "hp": 250, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hamatula", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 165, - "pc": 24, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Hana's Hundreds", - "s": "FRP1", - "lv": 15, - "ac": 37, - "hp": 270, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Haniver", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 9, - "pc": 5, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Hantu Belian", - "s": "FRP1", - "lv": 11, - "ac": 27, - "hp": 150, - "pc": 24, - "sz": "small", - "tp": "beast" - }, - { - "n": "Hantu Denai", - "s": "FRP1", - "lv": 9, - "ac": 22, - "hp": 125, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Harbormaster", - "s": "GMG", - "lv": 3, - "ac": 17, - "hp": 46, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hargrit Leadbuster", - "s": "TiO", - "lv": 4, - "ac": 20, - "hp": 65, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Harlo Krant", - "s": "BotD", - "lv": 4, - "ac": 20, - "hp": 80, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Harlo Krant", - "s": "BotD", - "lv": 4, - "ac": 20, - "hp": 80, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Harmona", - "s": "B3", - "lv": 11, - "ac": 30, - "hp": 190, - "pc": 24, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Harpy", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 68, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Harpy", - "s": "BB", - "lv": 5, - "ac": 22, - "hp": 68, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Harpy Skeleton", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 60, - "pc": 9, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Harpy Warbird", - "s": "SF1", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Harrow Doll", - "s": "EC4", - "lv": 8, - "ac": 26, - "hp": 120, - "pc": 14, - "sz": "large", - "tp": "construct" - }, - { - "n": "Harrow Reader", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 9, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hateful Logger", - "s": "WoW1", - "lv": 4, - "ac": 20, - "hp": 70, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hatred Siktempora", - "s": "B3", - "lv": 18, - "ac": 42, - "hp": 240, - "pc": 33, - "sz": "medium", - "tp": "time" - }, - { - "n": "Haunted Nosoi", - "s": "Mal", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 8, - "sz": "tiny", - "tp": "monitor" - }, - { - "n": "Headless Xulgath", - "s": "EC3", - "lv": 11, - "ac": 29, - "hp": 195, - "pc": 20, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Heart-Eating Vulture", - "s": "SoG2", - "lv": 4, - "ac": 21, - "hp": 68, - "pc": 10, - "sz": "large", - "tp": "beast" - }, - { - "n": "Hegessik", - "s": "AoE6", - "lv": 15, - "ac": 37, - "hp": 250, - "pc": 29, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Heh Shan-Bao", - "s": "SoG3", - "lv": 9, - "ac": 25, - "hp": 135, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Heh Shan-Bao", - "s": "SoG4", - "lv": 13, - "ac": 35, - "hp": 180, - "pc": 23, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Hekatonkheires Titan", - "s": "B3", - "lv": 24, - "ac": 52, - "hp": 500, - "pc": 43, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Helg Eats-the-eaters", - "s": "EC4", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 26, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hell Hound", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Hell Hound", - "s": "BB", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Hellbound Attorney", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Hellcat", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 110, - "pc": 16, - "sz": "large", - "tp": "beast" - }, - { - "n": "Hellcrown", - "s": "AoA1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 10, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Hellknight Armiger", - "s": "LOCG", - "lv": 4, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hellknight Cavalry Brigade", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Hellknight Paravicar", - "s": "LOCG", - "lv": 11, - "ac": 30, - "hp": 145, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hellwasp Swarm", - "s": "B3", - "lv": 8, - "ac": 24, - "hp": 95, - "pc": 16, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Hendrid Pratchett", - "s": "AoE1", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Herecite of Zevgavizeb", - "s": "EC3", - "lv": 10, - "ac": 30, - "hp": 200, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Herexen", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Hermean Mutant", - "s": "AoA6", - "lv": 19, - "ac": 43, - "hp": 380, - "pc": 35, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Hermit Crab Swarm", - "s": "B3", - "lv": 4, - "ac": 19, - "hp": 42, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Hesperid", - "s": "B3", - "lv": 9, - "ac": 28, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Hesperid Queen", - "s": "B3", - "lv": 19, - "ac": 45, - "hp": 306, - "pc": 34, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Hestriviniaas", - "s": "AoE6", - "lv": 22, - "ac": 48, - "hp": 400, - "pc": 40, - "sz": "huge", - "tp": "monitor" - }, - { - "n": "Heuberk Thropp", - "s": "AoA3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hezle", - "s": "AoA2", - "lv": 8, - "ac": 27, - "hp": 122, - "pc": 14, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Hezrou", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 245, - "pc": 21, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Hieracosphinx", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 70, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Hill Giant", - "s": "B1", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 13, - "sz": "large", - "tp": "giant" - }, - { - "n": "Hippocampus", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Hippogriff", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Hippopotamus", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Hive Mother", - "s": "B1", - "lv": 8, - "ac": 29, - "hp": 120, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Hivebound Arboreal", - "s": "SoT6", - "lv": 19, - "ac": 44, - "hp": 400, - "pc": 33, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Hobgoblin Archer", - "s": "B1", - "lv": 4, - "ac": 23, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hobgoblin General", - "s": "B1", - "lv": 6, - "ac": 25, - "hp": 90, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hobgoblin Soldier", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hobgoblin Warrior", - "s": "BB", - "lv": 1, - "ac": 18, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hodag", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Hollow Hush", - "s": "EC5", - "lv": 18, - "ac": 41, - "hp": 355, - "pc": 33, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hollow Serpent", - "s": "BotD", - "lv": 15, - "ac": 37, - "hp": 280, - "pc": 27, - "sz": "large", - "tp": "undead" - }, - { - "n": "Homunculus", - "s": "B1", - "lv": 0, - "ac": 17, - "hp": 17, - "pc": 3, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Hong Meigui", - "s": "SoG4", - "lv": 10, - "ac": 29, - "hp": 220, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Hooklimb Xulgath", - "s": "EC3", - "lv": 10, - "ac": 29, - "hp": 190, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hopping Head", - "s": "LOTXWG", - "lv": 1, - "ac": 14, - "hp": 25, - "pc": 8, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Horde Lich", - "s": "BotD", - "lv": 15, - "ac": 35, - "hp": 250, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Horned Archon", - "s": "B1", - "lv": 4, - "ac": 22, - "hp": 65, - "pc": 11, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Hound Archon", - "s": "B2", - "lv": 4, - "ac": 22, - "hp": 70, - "pc": 13, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Hound of Tindalos", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 90, - "pc": 17, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "House Drake", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 8, - "sz": "tiny", - "tp": "dragon" - }, - { - "n": "Howling Spawn", - "s": "LOMM", - "lv": 11, - "ac": 31, - "hp": 175, - "pc": 21, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hu Ban-Niang", - "s": "SoG1", - "lv": 5, - "ac": 20, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Huldra", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 13, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Huldrin Skolsdottir", - "s": "FRP2", - "lv": 14, - "ac": 34, - "hp": 280, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hummingbird", - "s": "FRP2", - "lv": 13, - "ac": 31, - "hp": 260, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hundun Chaos Mage", - "s": "AoE6", - "lv": 18, - "ac": 41, - "hp": 300, - "pc": 30, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hungry Ghost", - "s": "BotD", - "lv": 6, - "ac": 23, - "hp": 60, - "pc": 13, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Hunter", - "s": "GMG", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Hunter Wight", - "s": "BotD", - "lv": 7, - "ac": 24, - "hp": 112, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Hunting Spider", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Hurlilu", - "s": "SF1", - "lv": 11, - "ac": 32, - "hp": 170, - "pc": 21, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Husk Zombie", - "s": "BotD", - "lv": 2, - "ac": 17, - "hp": 55, - "pc": 5, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Hyaenodon", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Hyakume", - "s": "B3", - "lv": 15, - "ac": 36, - "hp": 275, - "pc": 29, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Hydra", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 17, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Hyena", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "I", - "s": "OoA2", - "lv": 7, - "ac": 25, - "hp": 110, - "pc": 19, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "I'iko Dragon", - "s": "SoT2", - "lv": 6, - "ac": 23, - "hp": 110, - "pc": 12, - "sz": "small", - "tp": "dragon" - }, - { - "n": "Ibrique", - "s": "SaS", - "lv": 13, - "ac": 35, - "hp": 200, - "pc": 18, - "sz": "small", - "tp": "undead" - }, - { - "n": "Ibrium", - "s": "OoA3", - "lv": 10, - "ac": 28, - "hp": 145, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ice Golem", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 9, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Ice Linnorm", - "s": "B1", - "lv": 17, - "ac": 41, - "hp": 330, - "pc": 29, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ice Mephit", - "s": "B2", - "lv": 1, - "ac": 17, - "hp": 18, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Ice Mummy", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ice Yai", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 230, - "pc": 26, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Icewyrm", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 185, - "pc": 19, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Ichor Slinger", - "s": "BotD", - "lv": 4, - "ac": 20, - "hp": 65, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Icicle Snake", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 7, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Icy Rats", - "s": "FoP", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 5, - "sz": "small", - "tp": "animal" - }, - { - "n": "Iffdahsil", - "s": "EC5", - "lv": 21, - "ac": 43, - "hp": 380, - "pc": 38, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Ifrit Pyrochemist", - "s": "B2", - "lv": 1, - "ac": 18, - "hp": 18, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Iguanodon", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 14, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Ijda", - "s": "SoG2", - "lv": 6, - "ac": 23, - "hp": 100, - "pc": 15, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Ijhyeojin", - "s": "LOTXWG", - "lv": 14, - "ac": 35, - "hp": 310, - "pc": 28, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Ikeshti Brood-Minder", - "s": "SoT5", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Il'setsya Wyrmtouched", - "s": "AoE6", - "lv": 18, - "ac": 40, - "hp": 300, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ilakni", - "s": "GW3", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 22, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Ildamir", - "s": "SF3", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 36, - "sz": "large", - "tp": "beast" - }, - { - "n": "Ileosa's Shell", - "s": "SaS", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 24, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ilgreth", - "s": "AoA6", - "lv": 20, - "ac": 28, - "hp": 350, - "pc": 39, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ilssrah Embermead", - "s": "AoA4", - "lv": 15, - "ac": 40, - "hp": 270, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ilverani Sentries", - "s": "GW3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Imentesh", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Immolis", - "s": "GW1", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 12, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Immortal Ichor", - "s": "AoA5", - "lv": 15, - "ac": 26, - "hp": 350, - "pc": 20, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Imp", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 15, - "pc": 7, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Imprecasia", - "s": "SoG4", - "lv": 11, - "ac": 31, - "hp": 180, - "pc": 23, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Imugi", - "s": "LOTXWG", - "lv": 7, - "ac": 24, - "hp": 135, - "pc": 13, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Incutilis", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 21, - "pc": 7, - "sz": "tiny", - "tp": "aberration" - }, - { - "n": "Ingnovim Tluss", - "s": "AoA6", - "lv": 19, - "ac": 43, - "hp": 350, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ingnovim's Assistant", - "s": "AoA6", - "lv": 17, - "ac": 43, - "hp": 330, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Inizra Arumelo", - "s": "AoA6", - "lv": 20, - "ac": 46, - "hp": 375, - "pc": 36, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Inkdrop", - "s": "LOTXWG", - "lv": -1, - "ac": 7, - "hp": 15, - "pc": 6, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Inmyeonjo", - "s": "FRP3", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 30, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Innkeeper", - "s": "GMG", - "lv": 1, - "ac": 14, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Intellect Devourer", - "s": "B2", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 16, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Interlocutor", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 24, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Invidiak", - "s": "B2", - "lv": 7, - "ac": 22, - "hp": 90, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Invisible Stalker", - "s": "B1", - "lv": 7, - "ac": 26, - "hp": 70, - "pc": 16, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Iobane Magus", - "s": "SoT5", - "lv": 13, - "ac": 33, - "hp": 235, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Iogaka", - "s": "SoG2", - "lv": 5, - "ac": 21, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ioseff Xarwin", - "s": "Mal", - "lv": 9, - "ac": 29, - "hp": 112, - "pc": 16, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Ioton", - "s": "B3", - "lv": 0, - "ac": 14, - "hp": 14, - "pc": 3, - "sz": "tiny", - "tp": "astral" - }, - { - "n": "Iridescent Elephant", - "s": "EC2", - "lv": 7, - "ac": 21, - "hp": 110, - "pc": 11, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Irkem Dresh", - "s": "OoA1", - "lv": 3, - "ac": 19, - "hp": 37, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Irlgaunt", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 265, - "pc": 24, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Irnakurse", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 152, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Iron Golem", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 190, - "pc": 21, - "sz": "large", - "tp": "construct" - }, - { - "n": "Ironclad Annihilator Beetle", - "s": "SoT6", - "lv": 21, - "ac": 49, - "hp": 400, - "pc": 36, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Iroran Mummy", - "s": "BotD", - "lv": 10, - "ac": 31, - "hp": 190, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Iroran Skeleton", - "s": "AoE3", - "lv": 11, - "ac": 31, - "hp": 210, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Iruxi Ossature", - "s": "BotD", - "lv": 5, - "ac": 22, - "hp": 76, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Ishti", - "s": "AoA5", - "lv": 18, - "ac": 41, - "hp": 340, - "pc": 29, - "sz": "large", - "tp": "beast" - }, - { - "n": "Isqulug", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 230, - "pc": 24, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Ittan-momen", - "s": "B3", - "lv": 2, - "ac": 20, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "" - }, - { - "n": "Ixamè", - "s": "SoT3", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Ixirizmid", - "s": "Mal", - "lv": 8, - "ac": 26, - "hp": 170, - "pc": 17, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Ixusoth", - "s": "AoE5", - "lv": 15, - "ac": 36, - "hp": 275, - "pc": 29, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Izfiitar", - "s": "AoE6", - "lv": 20, - "ac": 44, - "hp": 360, - "pc": 36, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Izurran", - "s": "WoW2", - "lv": 9, - "ac": 25, - "hp": 140, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jabberwock", - "s": "B2", - "lv": 23, - "ac": 49, - "hp": 500, - "pc": 40, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Jackal Guard", - "s": "SoT4", - "lv": 10, - "ac": 29, - "hp": 180, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jafaki", - "s": "AV2", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Jaggaki", - "s": "AoA2", - "lv": 13, - "ac": 34, - "hp": 200, - "pc": 22, - "sz": "large", - "tp": "undead" - }, - { - "n": "Jahsi", - "s": "AoA2", - "lv": 8, - "ac": 28, - "hp": 135, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jaiban", - "s": "FRP1", - "lv": 15, - "ac": 36, - "hp": 170, - "pc": 23, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Jailer", - "s": "GMG", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jaleen", - "s": "EC1", - "lv": 1, - "ac": 14, - "hp": 27, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Janni", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Japalisura", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 235, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Japu Thalenger", - "s": "AoE4", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jarelle Kaldrian", - "s": "AV1", - "lv": 5, - "ac": 21, - "hp": 48, - "pc": 12, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Jaul Mezmin", - "s": "AV1", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Jaul's Wolf", - "s": "AV1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Jellico Bounce-bounce", - "s": "EC1", - "lv": 2, - "ac": 17, - "hp": 32, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ji-yook", - "s": "FRP1", - "lv": 9, - "ac": 29, - "hp": 130, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ji-yook", - "s": "FRP2", - "lv": 13, - "ac": 35, - "hp": 190, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jiidon", - "s": "LOTXWG", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 10, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Jimbilin", - "s": "TEC", - "lv": 4, - "ac": 21, - "hp": 62, - "pc": 12, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Jin-hae", - "s": "FRP3", - "lv": 18, - "ac": 43, - "hp": 340, - "pc": 33, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Jinkin", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 19, - "pc": 7, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Jitterbone Contortionist", - "s": "BotD", - "lv": 4, - "ac": 20, - "hp": 56, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Jonis Flakfatter", - "s": "AoE4", - "lv": 15, - "ac": 36, - "hp": 300, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Joon-seo", - "s": "FRP2", - "lv": 15, - "ac": 35, - "hp": 250, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jorogumo", - "s": "AoE4", - "lv": 13, - "ac": 33, - "hp": 270, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jorogumo", - "s": "B3", - "lv": 13, - "ac": 33, - "hp": 270, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Joseung Saja", - "s": "LOTXWG", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 28, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Jotund Troll", - "s": "B2", - "lv": 15, - "ac": 35, - "hp": 360, - "pc": 29, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Judge", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 9, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Jungle Drake", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 13, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Juspix Rammel", - "s": "FRP2", - "lv": 14, - "ac": 33, - "hp": 240, - "pc": 27, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Juvenile Boar", - "s": "EC1", - "lv": 0, - "ac": 15, - "hp": 16, - "pc": 5, - "sz": "small", - "tp": "animal" - }, - { - "n": "Jyoti", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "K.H.W.'s Echo", - "s": "DA", - "lv": 14, - "ac": 36, - "hp": 280, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "K'nonna", - "s": "LOME", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 16, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Kaava Stalker", - "s": "LOME", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kagekuma", - "s": "SoG3", - "lv": 8, - "ac": 25, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Kalavakus", - "s": "AoA3", - "lv": 10, - "ac": 30, - "hp": 200, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Kallas Devil", - "s": "LOMM", - "lv": 9, - "ac": 27, - "hp": 180, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kalyn Pounch", - "s": "AoE4", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kaneepo the Slim", - "s": "GW1", - "lv": 4, - "ac": 20, - "hp": 80, - "pc": 14, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Kangaroo", - "s": "B3", - "lv": 0, - "ac": 15, - "hp": 18, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Kannijo", - "s": "SF1", - "lv": 13, - "ac": 34, - "hp": 180, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Kannitri", - "s": "FRP1", - "lv": 13, - "ac": 33, - "hp": 175, - "pc": 26, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Kappa", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 9, - "sz": "small", - "tp": "beast" - }, - { - "n": "Kapral", - "s": "AoE5", - "lv": 14, - "ac": 34, - "hp": 220, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kareq", - "s": "GW1", - "lv": 5, - "ac": 22, - "hp": 95, - "pc": 15, - "sz": "large", - "tp": "animal" - }, - { - "n": "Karina", - "s": "LOME", - "lv": 5, - "ac": 21, - "hp": 95, - "pc": 12, - "sz": "large", - "tp": "beast" - }, - { - "n": "Karumzek", - "s": "SoT3", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Karumzek Swarm", - "s": "SoT3", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 21, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Kas Xi Rai", - "s": "FRP2", - "lv": 17, - "ac": 38, - "hp": 300, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kasa-obake", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 65, - "pc": 13, - "sz": "medium", - "tp": "" - }, - { - "n": "Kasesh", - "s": "LOIL", - "lv": 3, - "ac": 19, - "hp": 35, - "pc": 10, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Kashrishi Evaluator", - "s": "LOIL", - "lv": 4, - "ac": 20, - "hp": 50, - "pc": 13, - "sz": "small", - "tp": "" - }, - { - "n": "Katpaskir", - "s": "SF2", - "lv": 18, - "ac": 41, - "hp": 415, - "pc": 31, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Keketar", - "s": "B1", - "lv": 17, - "ac": 40, - "hp": 290, - "pc": 30, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Kekker", - "s": "AoE1", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 9, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kelda Halrig", - "s": "AoA4", - "lv": 8, - "ac": 24, - "hp": 135, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kelorbeyan Guard", - "s": "MotM", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kelpie", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "large", - "tp": "fey" - }, - { - "n": "Kemeneles", - "s": "AoE1", - "lv": 2, - "ac": 15, - "hp": 30, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Keznin Nevarmo", - "s": "NGD", - "lv": 9, - "ac": 26, - "hp": 150, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kharostan", - "s": "EC5", - "lv": 16, - "ac": 38, - "hp": 280, - "pc": 29, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Khasprickle", - "s": "WoW2", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 21, - "sz": "small", - "tp": "fey" - }, - { - "n": "Khefak Scuttler", - "s": "SoT5", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 4, - "sz": "small", - "tp": "animal" - }, - { - "n": "Khravgodon", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 160, - "pc": 18, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Khurfel", - "s": "AV3", - "lv": 10, - "ac": 28, - "hp": 200, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ki Adept", - "s": "FRP1", - "lv": 13, - "ac": 33, - "hp": 230, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kilia Mwibo", - "s": "SoT4", - "lv": 15, - "ac": 36, - "hp": 345, - "pc": 26, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Kimenhul", - "s": "B3", - "lv": 20, - "ac": 45, - "hp": 425, - "pc": 35, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Kimilekki", - "s": "EC6", - "lv": 17, - "ac": 40, - "hp": 380, - "pc": 30, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "King Harral", - "s": "AoA4", - "lv": 14, - "ac": 35, - "hp": 195, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "King of Biting Ants", - "s": "SoT5", - "lv": 19, - "ac": 0, - "hp": 300, - "pc": 32, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Kirin", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 17, - "sz": "large", - "tp": "beast" - }, - { - "n": "Kirosthrek", - "s": "EC6", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 36, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kiru", - "s": "SoT2", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kishi", - "s": "B3", - "lv": 8, - "ac": 25, - "hp": 138, - "pc": 14, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Kithangian", - "s": "GW2", - "lv": 9, - "ac": 28, - "hp": 205, - "pc": 19, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Kitsune Trickster", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 24, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Knight Reclaimant", - "s": "CotT", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Knurr Ragnulf", - "s": "Rust", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kobold Dragon Mage", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 25, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Dragon Mage", - "s": "BB", - "lv": 2, - "ac": 17, - "hp": 25, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Scout", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 16, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Scout", - "s": "BB", - "lv": 1, - "ac": 18, - "hp": 16, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Trapmaster", - "s": "BB", - "lv": 2, - "ac": 19, - "hp": 28, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Warrior", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 8, - "pc": 3, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kobold Warrior", - "s": "BB", - "lv": -1, - "ac": 16, - "hp": 8, - "pc": 3, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kodama", - "s": "B3", - "lv": 5, - "ac": 21, - "hp": 95, - "pc": 16, - "sz": "small", - "tp": "spirit" - }, - { - "n": "Kokogiak", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 25, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Kolbo", - "s": "SoT2", - "lv": 6, - "ac": 24, - "hp": 115, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kolo Harvan", - "s": "AoE2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Kolyarut", - "s": "B1", - "lv": 12, - "ac": 34, - "hp": 215, - "pc": 23, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Kongamato", - "s": "B3", - "lv": 11, - "ac": 30, - "hp": 190, - "pc": 19, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Korred", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 65, - "pc": 12, - "sz": "small", - "tp": "fey" - }, - { - "n": "Kotgar Leadbuster", - "s": "TiO", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kothogaz, Dance of Disharmony", - "s": "LOMM", - "lv": 21, - "ac": 49, - "hp": 400, - "pc": 41, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Koto Zekora", - "s": "FRP1", - "lv": 17, - "ac": 39, - "hp": 295, - "pc": 30, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Kovintus Geomancer", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 40, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kragala", - "s": "AV2", - "lv": 4, - "ac": 21, - "hp": 62, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kraken", - "s": "B1", - "lv": 18, - "ac": 42, - "hp": 360, - "pc": 34, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Kralgurn", - "s": "AoA4", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Krampus", - "s": "B3", - "lv": 21, - "ac": 46, - "hp": 380, - "pc": 38, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Krampus", - "s": "LOMM", - "lv": 21, - "ac": 46, - "hp": 380, - "pc": 38, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Krampus Celebrant", - "s": "LOMM", - "lv": 8, - "ac": 27, - "hp": 125, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Krashk", - "s": "TEC", - "lv": 5, - "ac": 21, - "hp": 82, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Kreekoss", - "s": "SoT2", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 15, - "sz": "large", - "tp": "beast" - }, - { - "n": "Kreeth-Ni", - "s": "OoA2", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 11, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Krooth", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 16, - "sz": "large", - "tp": "animal" - }, - { - "n": "Kuchisake-onna", - "s": "B3", - "lv": 14, - "ac": 36, - "hp": 252, - "pc": 28, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Kugaptee's Blessing", - "s": "SoG1", - "lv": 2, - "ac": 15, - "hp": 70, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Kun", - "s": "FRP2", - "lv": 14, - "ac": 36, - "hp": 230, - "pc": 27, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Kun", - "s": "LOTXWG", - "lv": 14, - "ac": 36, - "hp": 230, - "pc": 27, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Kurnugian Jackal", - "s": "TiO", - "lv": 6, - "ac": 23, - "hp": 98, - "pc": 17, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Kurobozu", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Kurshkin", - "s": "SoT1", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 10, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Kushtaka", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 40, - "pc": 12, - "sz": "small", - "tp": "beast" - }, - { - "n": "Kuworsys", - "s": "LOMM", - "lv": 12, - "ac": 34, - "hp": 213, - "pc": 22, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Kvernknurr", - "s": "GW2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 12, - "sz": "large", - "tp": "fey" - }, - { - "n": "Kyem and Daleesha", - "s": "TEC", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 15, - "sz": "small", - "tp": "celestial" - }, - { - "n": "Lacedon", - "s": "BotD", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Lady Siccale", - "s": "CotT", - "lv": 19, - "ac": 43, - "hp": 360, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Lady's Whisper", - "s": "AV3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Lamia", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 13, - "sz": "large", - "tp": "beast" - }, - { - "n": "Lamia Matriarch", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 15, - "sz": "large", - "tp": "beast" - }, - { - "n": "Lamp Blighter", - "s": "LOSK", - "lv": 6, - "ac": 23, - "hp": 75, - "pc": 15, - "sz": "small", - "tp": "fey" - }, - { - "n": "Lampad", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 85, - "pc": 12, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Lampad Queen", - "s": "B3", - "lv": 15, - "ac": 39, - "hp": 234, - "pc": 27, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Lantern Archon", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "celestial" - }, - { - "n": "Lantondo", - "s": "FRP2", - "lv": 15, - "ac": 36, - "hp": 275, - "pc": 27, - "sz": "small", - "tp": "construct" - }, - { - "n": "Laruhao", - "s": "FRP3", - "lv": 19, - "ac": 43, - "hp": 360, - "pc": 35, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Laslunn", - "s": "AoA3", - "lv": 13, - "ac": 35, - "hp": 235, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Last Guard", - "s": "BotD", - "lv": 20, - "ac": 45, - "hp": 330, - "pc": 33, - "sz": "gargantuan", - "tp": "spirit" - }, - { - "n": "Last Guard", - "s": "CotT", - "lv": 20, - "ac": 45, - "hp": 330, - "pc": 33, - "sz": "gargantuan", - "tp": "spirit" - }, - { - "n": "Lazurite-infused Stone Golem", - "s": "AoA4", - "lv": 12, - "ac": 33, - "hp": 195, - "pc": 22, - "sz": "large", - "tp": "construct" - }, - { - "n": "Leadsmiths", - "s": "OoA3", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Leaf Leshy", - "s": "B1", - "lv": 0, - "ac": 18, - "hp": 15, - "pc": 4, - "sz": "small", - "tp": "plant" - }, - { - "n": "Ledalusca", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 8, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Ledorick Banyan", - "s": "EC4", - "lv": 14, - "ac": 36, - "hp": 260, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Legion Archon", - "s": "B1", - "lv": 7, - "ac": 27, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Lemure", - "s": "B1", - "lv": 0, - "ac": 13, - "hp": 20, - "pc": 0, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Leng Ghoul", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 180, - "pc": 19, - "sz": "medium", - "tp": "dream" - }, - { - "n": "Leng Spider", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 24, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Leopard", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Leprechaun", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 25, - "pc": 11, - "sz": "small", - "tp": "fey" - }, - { - "n": "Lerritan", - "s": "B2", - "lv": 21, - "ac": 46, - "hp": 490, - "pc": 35, - "sz": "gargantuan", - "tp": "elemental" - }, - { - "n": "Leshy Mob", - "s": "WoW3", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 21, - "sz": "gargantuan", - "tp": "plant" - }, - { - "n": "Lesser Death", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 255, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Lesser Manifestation of Dahak", - "s": "AoA6", - "lv": 22, - "ac": 50, - "hp": 500, - "pc": 39, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Leucrotta", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 11, - "sz": "large", - "tp": "beast" - }, - { - "n": "Leukodaemon", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 20, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Levaloch", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 16, - "sz": "large", - "tp": "construct" - }, - { - "n": "Leydroth", - "s": "B2", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 30, - "sz": "large", - "tp": "beast" - }, - { - "n": "Librarian", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 6, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lich", - "s": "B1", - "lv": 12, - "ac": 31, - "hp": 190, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Lifeleecher Brawler", - "s": "B3", - "lv": 8, - "ac": 25, - "hp": 165, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lignified Adamantine Golem", - "s": "SoT6", - "lv": 17, - "ac": 40, - "hp": 255, - "pc": 26, - "sz": "large", - "tp": "construct" - }, - { - "n": "Lillend", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 145, - "pc": 16, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Lion", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Lion Visitant", - "s": "EC2", - "lv": 5, - "ac": 22, - "hp": 95, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Little Man in the Woods", - "s": "BotD", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 12, - "sz": "small", - "tp": "undead" - }, - { - "n": "Living Boulder", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 36, - "pc": 6, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Living Landslide", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 90, - "pc": 12, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Living Mural", - "s": "AoE6", - "lv": 19, - "ac": 43, - "hp": 100, - "pc": 32, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Living Sap", - "s": "AoA2", - "lv": 6, - "ac": 13, - "hp": 175, - "pc": 7, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Living Sun-Spire", - "s": "SoT4", - "lv": 13, - "ac": 36, - "hp": 200, - "pc": 21, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Living Thunderclap", - "s": "B2", - "lv": 4, - "ac": 22, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Living Waterfall", - "s": "B1", - "lv": 5, - "ac": 20, - "hp": 90, - "pc": 10, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Living Whirlwind", - "s": "B1", - "lv": 5, - "ac": 24, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Living Wildfire", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 10, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Lizardfolk Defender", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 21, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lizardfolk Scout", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 17, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lizardfolk Stargazer", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Llorona", - "s": "BotD", - "lv": 12, - "ac": 32, - "hp": 165, - "pc": 20, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Lloyd the Leaper", - "s": "WoW1", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 17, - "sz": "small", - "tp": "fey" - }, - { - "n": "Loakan", - "s": "SoT2", - "lv": 6, - "ac": 23, - "hp": 100, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Locathah Hunter", - "s": "B3", - "lv": 3, - "ac": 20, - "hp": 38, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lophiithu", - "s": "FRP3", - "lv": 21, - "ac": 43, - "hp": 400, - "pc": 38, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Lord Guirden", - "s": "AoE5", - "lv": 19, - "ac": 41, - "hp": 450, - "pc": 37, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Lord Nar", - "s": "FoP", - "lv": 4, - "ac": 21, - "hp": 68, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Loreavor", - "s": "SaS", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 19, - "sz": "small", - "tp": "astral" - }, - { - "n": "Lorthact", - "s": "SaS", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 27, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Love Siktempora", - "s": "B3", - "lv": 16, - "ac": 38, - "hp": 210, - "pc": 28, - "sz": "medium", - "tp": "time" - }, - { - "n": "Lovelorn", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Luminous Ooze", - "s": "EC1", - "lv": 4, - "ac": 11, - "hp": 80, - "pc": 6, - "sz": "small", - "tp": "ooze" - }, - { - "n": "Lunar Naga", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 16, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Lurker in Light", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 72, - "pc": 13, - "sz": "small", - "tp": "fey" - }, - { - "n": "Lusca", - "s": "AoE5", - "lv": 17, - "ac": 40, - "hp": 320, - "pc": 31, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Lyrakien", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 25, - "pc": 8, - "sz": "tiny", - "tp": "celestial" - }, - { - "n": "Lyrma Swampwalker", - "s": "AoE1", - "lv": 2, - "ac": 14, - "hp": 38, - "pc": 11, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Lyrt Cozurn", - "s": "EC4", - "lv": 15, - "ac": 35, - "hp": 280, - "pc": 27, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Mafika Ayuwari", - "s": "FRP2", - "lv": 17, - "ac": 37, - "hp": 250, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Maftet Guardian", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 92, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mage for Hire", - "s": "GMG", - "lv": 3, - "ac": 17, - "hp": 31, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mage of Many Styles", - "s": "FRP1", - "lv": 13, - "ac": 32, - "hp": 220, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Magma Scorpion", - "s": "B2", - "lv": 8, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Mago Kai", - "s": "SoG3", - "lv": 11, - "ac": 29, - "hp": 220, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Maharaja", - "s": "B3", - "lv": 20, - "ac": 45, - "hp": 320, - "pc": 37, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Malarunk", - "s": "AoA1", - "lv": 5, - "ac": 22, - "hp": 63, - "pc": 13, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Maliadi", - "s": "LOME", - "lv": 17, - "ac": 40, - "hp": 285, - "pc": 29, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Mamlambo", - "s": "LOME", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 19, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Mammoth", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 190, - "pc": 18, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Mammoth Turtle", - "s": "FRP1", - "lv": 14, - "ac": 36, - "hp": 270, - "pc": 24, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Manananggal", - "s": "FRP1", - "lv": 8, - "ac": 26, - "hp": 180, - "pc": 16, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Manananggal", - "s": "LOTXWG", - "lv": 8, - "ac": 26, - "hp": 180, - "pc": 16, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Mandragora", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "small", - "tp": "plant" - }, - { - "n": "Mangy Wolves", - "s": "FoP", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Manifestation of Dahak", - "s": "AoA6", - "lv": 24, - "ac": 52, - "hp": 600, - "pc": 46, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Manta Ray", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Manticore", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Manticore Paaridar", - "s": "B3", - "lv": 7, - "ac": 26, - "hp": 110, - "pc": 18, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Marid", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 145, - "pc": 18, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Marilith", - "s": "B1", - "lv": 17, - "ac": 40, - "hp": 380, - "pc": 30, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Markish Aghayarea", - "s": "SF2", - "lv": 15, - "ac": 37, - "hp": 250, - "pc": 29, - "sz": "large", - "tp": "undead" - }, - { - "n": "Marrmora", - "s": "B2", - "lv": 15, - "ac": 37, - "hp": 280, - "pc": 27, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Marsh Giant", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 150, - "pc": 16, - "sz": "large", - "tp": "giant" - }, - { - "n": "Martial Noppera-Bo Impersonator", - "s": "SoG3", - "lv": 6, - "ac": 22, - "hp": 93, - "pc": 14, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Marut", - "s": "B2", - "lv": 15, - "ac": 37, - "hp": 230, - "pc": 26, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Mashkudu the Bully", - "s": "SoT2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Master Xun", - "s": "FRP2", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mastermind", - "s": "GMG", - "lv": 4, - "ac": 21, - "hp": 54, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mastodon", - "s": "B2", - "lv": 9, - "ac": 26, - "hp": 175, - "pc": 17, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Masu", - "s": "OoA2", - "lv": -1, - "ac": 14, - "hp": 6, - "pc": 8, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Maurrisa Jonne", - "s": "AoE3", - "lv": 10, - "ac": 29, - "hp": 230, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mechanical Assistant", - "s": "TEC", - "lv": 5, - "ac": 22, - "hp": 42, - "pc": 12, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Mechanical Carny", - "s": "EC1", - "lv": 2, - "ac": 17, - "hp": 33, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Medusa", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Megalania", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 15, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Megalictis", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 42, - "pc": 10, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Megalodon", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 180, - "pc": 20, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Megaprimatus", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 15, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Megatherium", - "s": "B3", - "lv": 5, - "ac": 21, - "hp": 85, - "pc": 13, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Meitremar", - "s": "Rust", - "lv": 3, - "ac": 18, - "hp": 42, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Meladaemon", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 225, - "pc": 21, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Melfesh Monster", - "s": "LOMM", - "lv": 6, - "ac": 23, - "hp": 78, - "pc": 14, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Melixie", - "s": "B3", - "lv": 0, - "ac": 16, - "hp": 17, - "pc": 4, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Melodic Squall", - "s": "FRP2", - "lv": 16, - "ac": 39, - "hp": 280, - "pc": 30, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Melody on the Wind", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 170, - "pc": 21, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Mengkare", - "s": "AoA6", - "lv": 23, - "ac": 50, - "hp": 575, - "pc": 40, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Meokdan", - "s": "SoG2", - "lv": 2, - "ac": 17, - "hp": 32, - "pc": 9, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Mercenary Assassin", - "s": "SF1", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mercenary Sailor", - "s": "AoA3", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Merchant", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 7, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Merfolk Warrior", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 19, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Merfolk Wavecaller", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mezlan", - "s": "B3", - "lv": 14, - "ac": 31, - "hp": 260, - "pc": 25, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Mi-Go", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Mialari Docur", - "s": "AoA3", - "lv": 10, - "ac": 30, - "hp": 160, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mighty Bul-Gae", - "s": "SF3", - "lv": 17, - "ac": 40, - "hp": 310, - "pc": 30, - "sz": "large", - "tp": "beast" - }, - { - "n": "Millindemalion", - "s": "B3", - "lv": 13, - "ac": 34, - "hp": 275, - "pc": 23, - "sz": "small", - "tp": "fey" - }, - { - "n": "Mimic", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 75, - "pc": 9, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Mimic", - "s": "BB", - "lv": 4, - "ac": 20, - "hp": 75, - "pc": 9, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Minchgorm", - "s": "AoE5", - "lv": 18, - "ac": 42, - "hp": 440, - "pc": 30, - "sz": "huge", - "tp": "fey" - }, - { - "n": "Mindmoppet", - "s": "GW3", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 12, - "sz": "tiny", - "tp": "ooze" - }, - { - "n": "Miner", - "s": "GMG", - "lv": 0, - "ac": 14, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Minister of Tumult", - "s": "BotD", - "lv": 14, - "ac": 36, - "hp": 190, - "pc": 28, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Minister of Tumult", - "s": "FRP2", - "lv": 14, - "ac": 36, - "hp": 190, - "pc": 28, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Minkaian Honeysuckle Leshy", - "s": "AFoF", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "plant" - }, - { - "n": "Minotaur", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 70, - "pc": 12, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Mint Leshy", - "s": "AFoF", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Miogimo", - "s": "AoE5", - "lv": 17, - "ac": 40, - "hp": 310, - "pc": 31, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Miriel Grayleaf", - "s": "AoE1", - "lv": -1, - "ac": 13, - "hp": 5, - "pc": 2, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mirmicette", - "s": "CotT", - "lv": 6, - "ac": 22, - "hp": 95, - "pc": 16, - "sz": "small", - "tp": "fey" - }, - { - "n": "Misery Siktempora", - "s": "B3", - "lv": 12, - "ac": 32, - "hp": 160, - "pc": 25, - "sz": "large", - "tp": "time" - }, - { - "n": "Mist Stalker", - "s": "B2", - "lv": 4, - "ac": 20, - "hp": 58, - "pc": 13, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Mistress Dusklight", - "s": "EC2", - "lv": 11, - "ac": 30, - "hp": 195, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mitflit", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 10, - "pc": 4, - "sz": "small", - "tp": "fey" - }, - { - "n": "Mithral Golem", - "s": "B3", - "lv": 16, - "ac": 40, - "hp": 220, - "pc": 26, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Mivanian Soldier", - "s": "SF1", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mix Couatl", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 19, - "sz": "large", - "tp": "beast" - }, - { - "n": "Mobogo", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 160, - "pc": 21, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Mogaran", - "s": "SF2", - "lv": 17, - "ac": 38, - "hp": 325, - "pc": 30, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Mohrg", - "s": "B2", - "lv": 8, - "ac": 28, - "hp": 120, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Mokele-mbembe", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 172, - "pc": 15, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Moldering Steed", - "s": "CotT", - "lv": 16, - "ac": 38, - "hp": 370, - "pc": 28, - "sz": "large", - "tp": "undead" - }, - { - "n": "Monadic Deva", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 245, - "pc": 25, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Monkey", - "s": "B3", - "lv": -1, - "ac": 14, - "hp": 9, - "pc": 6, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Monkey Swarm", - "s": "B3", - "lv": 2, - "ac": 16, - "hp": 20, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Monster Hunter", - "s": "GMG", - "lv": 6, - "ac": 23, - "hp": 108, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Moon Hag", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 190, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Moonflower", - "s": "B2", - "lv": 8, - "ac": 24, - "hp": 120, - "pc": 16, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Moose", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Morgrat", - "s": "AoE4", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Morgrym Leadbuster", - "s": "TiO", - "lv": 4, - "ac": 19, - "hp": 50, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Morlock", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 38, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Morlock Cultist", - "s": "AV1", - "lv": 4, - "ac": 21, - "hp": 58, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Morlock Engineer", - "s": "AV1", - "lv": 3, - "ac": 18, - "hp": 46, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Morlock Scavenger", - "s": "AV1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Morrigna", - "s": "B1", - "lv": 15, - "ac": 38, - "hp": 240, - "pc": 28, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Mosquito Witch", - "s": "LOMM", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 22, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Mother Mitera", - "s": "DA", - "lv": 8, - "ac": 25, - "hp": 140, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mother Venom", - "s": "AoE5", - "lv": 17, - "ac": 38, - "hp": 400, - "pc": 33, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Mothman", - "s": "B3", - "lv": 7, - "ac": 26, - "hp": 90, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Movanic Deva", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 195, - "pc": 22, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Mpeshi", - "s": "SoT2", - "lv": 6, - "ac": 24, - "hp": 110, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Mpondo", - "s": "SoT5", - "lv": 15, - "ac": 37, - "hp": 285, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Mu Spore", - "s": "B1", - "lv": 21, - "ac": 45, - "hp": 350, - "pc": 36, - "sz": "gargantuan", - "tp": "fungus" - }, - { - "n": "Muckish Creep", - "s": "FRP1", - "lv": 8, - "ac": 27, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Mudwretch", - "s": "B2", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 9, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Mukradi", - "s": "B1", - "lv": 15, - "ac": 37, - "hp": 300, - "pc": 24, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Mulventok", - "s": "AV2", - "lv": 7, - "ac": 24, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Mummified Cat", - "s": "BotD", - "lv": 0, - "ac": 15, - "hp": 17, - "pc": 7, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Mummy Guardian", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 110, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Mummy Pharaoh", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 165, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Mummy Prophet of Set", - "s": "BotD", - "lv": 13, - "ac": 33, - "hp": 250, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Munagola", - "s": "B3", - "lv": 11, - "ac": 31, - "hp": 165, - "pc": 24, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Munavri Spellblade", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Murschen", - "s": "AV2", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Muse Phantom", - "s": "EC2", - "lv": 5, - "ac": 21, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Mutant Bats", - "s": "OoA3", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Mutant Desert Drake", - "s": "OoA2", - "lv": 9, - "ac": 28, - "hp": 150, - "pc": 17, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Mutant Giant Toad", - "s": "OoA2", - "lv": 3, - "ac": 18, - "hp": 44, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Mutant Gnoll Hulk", - "s": "LOIL", - "lv": 9, - "ac": 26, - "hp": 195, - "pc": 17, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Mutant Wolves", - "s": "FoP", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Mutated Sewer Ooze", - "s": "SoT2", - "lv": 6, - "ac": 16, - "hp": 45, - "pc": 10, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Muurfeli", - "s": "EC5", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 30, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Myceloid", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Myrna Rath", - "s": "AoE5", - "lv": 16, - "ac": 39, - "hp": 340, - "pc": 30, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Myroga", - "s": "GW2", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 17, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Myrucarx", - "s": "AoE5", - "lv": 18, - "ac": 41, - "hp": 340, - "pc": 33, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Nabasu", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 165, - "pc": 17, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Nagaji Soldier", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nai Yan Fei", - "s": "FRP1", - "lv": 20, - "ac": 44, - "hp": 375, - "pc": 36, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Naiad", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Naiad Queen", - "s": "B1", - "lv": 7, - "ac": 26, - "hp": 100, - "pc": 18, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Najra Lizard", - "s": "AoE2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "tiny", - "tp": "dragon" - }, - { - "n": "Nalfeshnee", - "s": "B2", - "lv": 14, - "ac": 34, - "hp": 365, - "pc": 25, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Namorrodor", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 85, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Narwhal", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Nasurgeth", - "s": "BotD", - "lv": 20, - "ac": 45, - "hp": 510, - "pc": 36, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Naunet", - "s": "B1", - "lv": 7, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Navigator", - "s": "GMG", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Necromancer", - "s": "GMG", - "lv": 5, - "ac": 20, - "hp": 58, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Necrophidius", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Nemhaith", - "s": "B3", - "lv": 15, - "ac": 36, - "hp": 255, - "pc": 31, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Nemmia Bramblecloak", - "s": "EC1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Nenchuuj", - "s": "AoE6", - "lv": 19, - "ac": 43, - "hp": 355, - "pc": 33, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Neothelid", - "s": "B2", - "lv": 15, - "ac": 37, - "hp": 345, - "pc": 29, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Nereid", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 20, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Nessian Warhound", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 150, - "pc": 19, - "sz": "large", - "tp": "beast" - }, - { - "n": "Nhakazarin", - "s": "AV1", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Night Hag", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 18, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Nightgaunt", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Nightmarchers", - "s": "B3", - "lv": 14, - "ac": 30, - "hp": 240, - "pc": 27, - "sz": "gargantuan", - "tp": "spirit" - }, - { - "n": "Nightmare", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Nikaramsa", - "s": "B3", - "lv": 14, - "ac": 35, - "hp": 315, - "pc": 25, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Nilith", - "s": "B1", - "lv": 10, - "ac": 32, - "hp": 150, - "pc": 19, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Nils Kelveken", - "s": "Mal", - "lv": 5, - "ac": 23, - "hp": 55, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Nixie", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 25, - "pc": 6, - "sz": "small", - "tp": "fey" - }, - { - "n": "Nketiah", - "s": "AoA2", - "lv": 6, - "ac": 23, - "hp": 74, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nkiruka", - "s": "SoT4", - "lv": 14, - "ac": 36, - "hp": 260, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Noble", - "s": "GMG", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nolly Peltry", - "s": "AoA3", - "lv": 11, - "ac": 31, - "hp": 185, - "pc": 21, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Noolik", - "s": "TEC", - "lv": 4, - "ac": 21, - "hp": 58, - "pc": 11, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Noppera-Bo Grunt", - "s": "SoG1", - "lv": 0, - "ac": 15, - "hp": 18, - "pc": 4, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Noppera-Bo Occultist", - "s": "SoG1", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Noppera-Bo Trickster", - "s": "SoG1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 5, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Norgorberite Poisoner", - "s": "AoE4", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Norgorberite Spy", - "s": "SoT3", - "lv": 10, - "ac": 29, - "hp": 170, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Norn", - "s": "B2", - "lv": 20, - "ac": 46, - "hp": 375, - "pc": 41, - "sz": "large", - "tp": "fey" - }, - { - "n": "Nornhound", - "s": "SF3", - "lv": 18, - "ac": 40, - "hp": 421, - "pc": 32, - "sz": "gargantuan", - "tp": "fey" - }, - { - "n": "Nosferatu Malefactor", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 135, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Nosferatu Overlord", - "s": "B3", - "lv": 15, - "ac": 37, - "hp": 216, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Nosferatu Thrall", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nosoi", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 18, - "pc": 6, - "sz": "tiny", - "tp": "monitor" - }, - { - "n": "Nox", - "s": "AV2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nuckelavee", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 190, - "pc": 16, - "sz": "large", - "tp": "fey" - }, - { - "n": "Nucol", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Nue", - "s": "LOTXWG", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 21, - "sz": "large", - "tp": "beast" - }, - { - "n": "Nuglub", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 34, - "pc": 5, - "sz": "small", - "tp": "fey" - }, - { - "n": "Nyamat Mshwe", - "s": "Sli", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nyctessa", - "s": "WtD5", - "lv": 5, - "ac": 19, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Nyktera", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 10, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Nyogoth", - "s": "B2", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Oaksteward Enforcers", - "s": "GW1", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Obcisidaemon", - "s": "SF3", - "lv": 19, - "ac": 43, - "hp": 425, - "pc": 35, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Obrousian", - "s": "AoE5", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 26, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Obrousian", - "s": "BotD", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 26, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Obsidian Golem", - "s": "EC5", - "lv": 16, - "ac": 40, - "hp": 230, - "pc": 28, - "sz": "large", - "tp": "construct" - }, - { - "n": "Oceanius and Glory Arcely", - "s": "CotT", - "lv": 18, - "ac": 42, - "hp": 360, - "pc": 32, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Ochre Jelly", - "s": "B1", - "lv": 5, - "ac": 12, - "hp": 150, - "pc": 7, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Ocluai", - "s": "GW1", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 12, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Ofalth", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 170, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Ofalth Zombie", - "s": "AoE2", - "lv": 7, - "ac": 22, - "hp": 190, - "pc": 15, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Ogmunzorius", - "s": "GW3", - "lv": 11, - "ac": 28, - "hp": 145, - "pc": 21, - "sz": "large", - "tp": "dream" - }, - { - "n": "Ogre Boss", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 130, - "pc": 12, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ogre Bully", - "s": "WoW2", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 12, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ogre Glutton", - "s": "B1", - "lv": 4, - "ac": 18, - "hp": 70, - "pc": 6, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ogre Spider", - "s": "B2", - "lv": 5, - "ac": 23, - "hp": 70, - "pc": 13, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Ogre Warrior", - "s": "B1", - "lv": 3, - "ac": 17, - "hp": 50, - "pc": 5, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ogre Warrior", - "s": "BB", - "lv": 3, - "ac": 17, - "hp": 50, - "pc": 5, - "sz": "large", - "tp": "giant" - }, - { - "n": "Ohancanu", - "s": "WoW1", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 12, - "sz": "large", - "tp": "fey" - }, - { - "n": "Oil Living Graffiti", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Oil Living Graffiti", - "s": "EC1", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Olansa Terimor", - "s": "AoE6", - "lv": 23, - "ac": 48, - "hp": 500, - "pc": 43, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Old Man Statue", - "s": "FRP1", - "lv": 14, - "ac": 36, - "hp": 160, - "pc": 24, - "sz": "huge", - "tp": "construct" - }, - { - "n": "Old Thornbarker", - "s": "WoW3", - "lv": 12, - "ac": 33, - "hp": 230, - "pc": 25, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Old Thrasher", - "s": "SoT2", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 16, - "sz": "large", - "tp": "animal" - }, - { - "n": "Olethrodaemon", - "s": "B2", - "lv": 20, - "ac": 44, - "hp": 450, - "pc": 33, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Omblin Leadbuster", - "s": "TiO", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Omelia", - "s": "CotT", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Omox", - "s": "B3", - "lv": 12, - "ac": 25, - "hp": 395, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "One-eye Amnin", - "s": "AoA3", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Onidoshi", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 125, - "pc": 17, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Onryo", - "s": "BotD", - "lv": 12, - "ac": 32, - "hp": 180, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Onturat", - "s": "CotT", - "lv": 19, - "ac": 44, - "hp": 335, - "pc": 34, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Onyiji", - "s": "SoT3", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ooze Mephit", - "s": "B2", - "lv": 1, - "ac": 14, - "hp": 24, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Ooze, Sewer", - "s": "BB", - "lv": 1, - "ac": 8, - "hp": 40, - "pc": 3, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Oppali", - "s": "SF1", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "large", - "tp": "plant" - }, - { - "n": "Orc Brute", - "s": "B1", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Commander", - "s": "BB", - "lv": 2, - "ac": 19, - "hp": 32, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Scrapper", - "s": "BB", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Scrapper", - "s": "TiO", - "lv": 1, - "ac": 18, - "hp": 23, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Trooper", - "s": "BB", - "lv": 1, - "ac": 18, - "hp": 23, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Warchief", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 32, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orc Warrior", - "s": "B1", - "lv": 1, - "ac": 18, - "hp": 23, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orca", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 12, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Orchid Mantis Swarm", - "s": "LOTXWG", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Oread Guard", - "s": "B2", - "lv": 1, - "ac": 19, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Orochi", - "s": "FRP3", - "lv": 18, - "ac": 42, - "hp": 400, - "pc": 33, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Ossuary Warden", - "s": "CotT", - "lv": 19, - "ac": 42, - "hp": 265, - "pc": 32, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Ostiarius", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 67, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Ostovite", - "s": "B3", - "lv": 1, - "ac": 15, - "hp": 30, - "pc": 4, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Osyluth", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 135, - "pc": 21, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Otari Ilvashti", - "s": "AV1", - "lv": 9, - "ac": 25, - "hp": 120, - "pc": 18, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Otyugh", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 70, - "pc": 10, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Ouroboros", - "s": "B3", - "lv": 21, - "ac": 45, - "hp": 500, - "pc": 33, - "sz": "gargantuan", - "tp": "astral" - }, - { - "n": "Overdrive Imentesh", - "s": "AoE6", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 29, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Ovinnik", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 59, - "pc": 14, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Owb", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 13, - "sz": "medium", - "tp": "" - }, - { - "n": "Owb Prophet", - "s": "B3", - "lv": 13, - "ac": 34, - "hp": 225, - "pc": 24, - "sz": "large", - "tp": "" - }, - { - "n": "Owlbear", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Owlbear", - "s": "BB", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Pachycephalosaurus", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 65, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Padli", - "s": "AV3", - "lv": 9, - "ac": 26, - "hp": 160, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Paga Nikohian", - "s": "Sli", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 19, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Pagulin", - "s": "LOHh", - "lv": 7, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "large", - "tp": "animal" - }, - { - "n": "Pairaka", - "s": "B3", - "lv": 7, - "ac": 24, - "hp": 105, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Pairaka", - "s": "MotM", - "lv": 7, - "ac": 24, - "hp": 105, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Pakalchi", - "s": "B3", - "lv": 9, - "ac": 26, - "hp": 140, - "pc": 18, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Palace Guard", - "s": "GMG", - "lv": 4, - "ac": 22, - "hp": 60, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Palace Skelm", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 155, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Pale Sovereign", - "s": "BotD", - "lv": 16, - "ac": 36, - "hp": 298, - "pc": 28, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Pale Stranger", - "s": "BotD", - "lv": 10, - "ac": 29, - "hp": 155, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Palzu", - "s": "OoA2", - "lv": 8, - "ac": 25, - "hp": 135, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Parsus", - "s": "OoA3", - "lv": 10, - "ac": 29, - "hp": 160, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Path Maiden", - "s": "SoG4", - "lv": 12, - "ac": 31, - "hp": 160, - "pc": 22, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Pathfinder Field Agent", - "s": "LOCG", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Pathfinder Venture-Captain", - "s": "LOCG", - "lv": 11, - "ac": 32, - "hp": 195, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Pegasus", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 55, - "pc": 12, - "sz": "large", - "tp": "beast" - }, - { - "n": "Peluda", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 170, - "pc": 21, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Penanggalan", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 83, - "pc": 11, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Peng", - "s": "FRP2", - "lv": 12, - "ac": 32, - "hp": 200, - "pc": 25, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Peng", - "s": "LOTXWG", - "lv": 12, - "ac": 32, - "hp": 200, - "pc": 25, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Penqual", - "s": "AoE6", - "lv": 15, - "ac": 37, - "hp": 205, - "pc": 27, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Peri", - "s": "B3", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Peryton", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 13, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Petitioner", - "s": "B2", - "lv": 1, - "ac": 15, - "hp": 22, - "pc": 7, - "sz": "medium", - "tp": "petitioner" - }, - { - "n": "Phantom Beast", - "s": "B3", - "lv": 8, - "ac": 26, - "hp": 120, - "pc": 18, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Phantom Boar", - "s": "SoG1", - "lv": 2, - "ac": 18, - "hp": 22, - "pc": 8, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Phantom Gecko", - "s": "SoG1", - "lv": 1, - "ac": 15, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Phantom Knight", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 45, - "pc": 13, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Phantom Raven", - "s": "SoG1", - "lv": -1, - "ac": 15, - "hp": 6, - "pc": 5, - "sz": "tiny", - "tp": "ethereal" - }, - { - "n": "Phantom Wolf", - "s": "SoG1", - "lv": 1, - "ac": 15, - "hp": 14, - "pc": 7, - "sz": "medium", - "tp": "ethereal" - }, - { - "n": "Phasmadaemon", - "s": "SF3", - "lv": 17, - "ac": 39, - "hp": 340, - "pc": 29, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Phistophilus", - "s": "B1", - "lv": 10, - "ac": 30, - "hp": 150, - "pc": 21, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Phoenix", - "s": "B1", - "lv": 15, - "ac": 36, - "hp": 300, - "pc": 27, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Phuthi", - "s": "FRP2", - "lv": 13, - "ac": 31, - "hp": 260, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Physician", - "s": "GMG", - "lv": -1, - "ac": 13, - "hp": 9, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Phytohydra", - "s": "WoW3", - "lv": 12, - "ac": 32, - "hp": 180, - "pc": 25, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Phytomancer Ghost", - "s": "WoW3", - "lv": 13, - "ac": 33, - "hp": 180, - "pc": 23, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Pickled Punk", - "s": "AoE1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 8, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Pin Tingwheely", - "s": "EC3", - "lv": 8, - "ac": 29, - "hp": 95, - "pc": 19, - "sz": "small", - "tp": "fey" - }, - { - "n": "Pinacosaurus", - "s": "EC1", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Piranha Swarm", - "s": "B3", - "lv": 3, - "ac": 16, - "hp": 40, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Pirate", - "s": "GMG", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Piscodaemon", - "s": "B2", - "lv": 10, - "ac": 28, - "hp": 200, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Pit Fiend", - "s": "B1", - "lv": 20, - "ac": 46, - "hp": 335, - "pc": 37, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Pixie", - "s": "B1", - "lv": 4, - "ac": 23, - "hp": 40, - "pc": 12, - "sz": "small", - "tp": "fey" - }, - { - "n": "Pixiu", - "s": "LOTXWG", - "lv": 8, - "ac": 26, - "hp": 165, - "pc": 18, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Plague Doctor", - "s": "GMG", - "lv": 5, - "ac": 20, - "hp": 73, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Plague Giant", - "s": "B3", - "lv": 14, - "ac": 35, - "hp": 285, - "pc": 25, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Plague Zombie", - "s": "B1", - "lv": 1, - "ac": 13, - "hp": 50, - "pc": 3, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Planar Terra-cotta Soldier", - "s": "FRP1", - "lv": 11, - "ac": 30, - "hp": 250, - "pc": 21, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Planar Terra-cotta Squadron", - "s": "FRP1", - "lv": 15, - "ac": 37, - "hp": 300, - "pc": 24, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Planetar", - "s": "B2", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 28, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Platecarpus", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 46, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Pleroma", - "s": "B1", - "lv": 20, - "ac": 45, - "hp": 335, - "pc": 37, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Poacher", - "s": "GMG", - "lv": 2, - "ac": 19, - "hp": 30, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Poison Eater", - "s": "AoE4", - "lv": 8, - "ac": 25, - "hp": 150, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Polar Bear", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 73, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Polong", - "s": "BotD", - "lv": 8, - "ac": 24, - "hp": 100, - "pc": 17, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Poltergeist", - "s": "B1", - "lv": 5, - "ac": 22, - "hp": 55, - "pc": 11, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Popobawa", - "s": "B3", - "lv": 15, - "ac": 37, - "hp": 270, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Poracha", - "s": "B1", - "lv": 4, - "ac": 23, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Portal Eater", - "s": "FRP2", - "lv": 18, - "ac": 37, - "hp": 420, - "pc": 30, - "sz": "gargantuan", - "tp": "astral" - }, - { - "n": "Powderkeg Punk Bombardiers", - "s": "OoA1", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Powderkeg Punk Gunners", - "s": "OoA1", - "lv": 0, - "ac": 16, - "hp": 13, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Prairie Drake", - "s": "OoA1", - "lv": 2, - "ac": 18, - "hp": 36, - "pc": 6, - "sz": "small", - "tp": "dragon" - }, - { - "n": "Precentor", - "s": "AoA3", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 32, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Predatory Rabbit", - "s": "BotD", - "lv": -1, - "ac": 16, - "hp": 6, - "pc": 5, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Priest of Iomedae", - "s": "CotT", - "lv": 7, - "ac": 24, - "hp": 110, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Priest of Kabriri", - "s": "BotD", - "lv": 5, - "ac": 19, - "hp": 63, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Priest of Pharasma", - "s": "GMG", - "lv": 6, - "ac": 21, - "hp": 80, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Primal Warden of Zibik", - "s": "WoW3", - "lv": 12, - "ac": 33, - "hp": 195, - "pc": 20, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Primordial Envy", - "s": "Rust", - "lv": 3, - "ac": 12, - "hp": 60, - "pc": 6, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Princess Sunset", - "s": "LTiBA", - "lv": 2, - "ac": 17, - "hp": 20, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Prisoner", - "s": "GMG", - "lv": 1, - "ac": 17, - "hp": 17, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Privateer Captain", - "s": "LOCG", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Procyal", - "s": "B3", - "lv": 8, - "ac": 26, - "hp": 170, - "pc": 18, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Profane Ghouls", - "s": "SaS", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Promise Guard", - "s": "AoA6", - "lv": 17, - "ac": 43, - "hp": 330, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Prophet", - "s": "GMG", - "lv": 2, - "ac": 17, - "hp": 24, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Protosoul", - "s": "GW3", - "lv": 11, - "ac": 31, - "hp": 190, - "pc": 19, - "sz": "large", - "tp": "" - }, - { - "n": "Provincial Jiang-shi", - "s": "FRP2", - "lv": 11, - "ac": 31, - "hp": 130, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Provincial Jiang-Shi", - "s": "BotD", - "lv": 11, - "ac": 31, - "hp": 130, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Prowler Wight", - "s": "BotD", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Pruana Two-punch", - "s": "EC1", - "lv": 3, - "ac": 20, - "hp": 46, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Pteranodon", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Pufferfish", - "s": "B3", - "lv": -1, - "ac": 12, - "hp": 12, - "pc": 4, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Pugwampi", - "s": "B1", - "lv": 0, - "ac": 16, - "hp": 17, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Pukwudgie", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 100, - "pc": 17, - "sz": "small", - "tp": "fey" - }, - { - "n": "Purple Worm", - "s": "B1", - "lv": 13, - "ac": 32, - "hp": 270, - "pc": 20, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Purrodaemon", - "s": "B2", - "lv": 18, - "ac": 43, - "hp": 335, - "pc": 33, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Putrifer", - "s": "WoW2", - "lv": 9, - "ac": 28, - "hp": 160, - "pc": 18, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Pygmy Kaava", - "s": "LOME", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Pyronite Ooze", - "s": "OoA3", - "lv": 10, - "ac": 19, - "hp": 350, - "pc": 14, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Qormintur", - "s": "EC5", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Quantium Golem", - "s": "LOIL", - "lv": 20, - "ac": 47, - "hp": 325, - "pc": 36, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Quara Orshendiel", - "s": "AV3", - "lv": 11, - "ac": 30, - "hp": 190, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Quarry Constructs", - "s": "GW1", - "lv": 2, - "ac": 18, - "hp": 23, - "pc": 8, - "sz": "large", - "tp": "construct" - }, - { - "n": "Quasit", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 25, - "pc": 7, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Quatoid", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 18, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Queen Kawlinawk", - "s": "SF1", - "lv": 13, - "ac": 34, - "hp": 240, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Queen Sluagh", - "s": "BotD", - "lv": 18, - "ac": 41, - "hp": 417, - "pc": 31, - "sz": "huge", - "tp": "fey" - }, - { - "n": "Quelaunt", - "s": "B1", - "lv": 15, - "ac": 36, - "hp": 305, - "pc": 29, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Quetz Couatl", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 21, - "sz": "large", - "tp": "beast" - }, - { - "n": "Quetzalcoatlus", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 110, - "pc": 15, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Quickling", - "s": "B2", - "lv": 3, - "ac": 22, - "hp": 25, - "pc": 9, - "sz": "small", - "tp": "fey" - }, - { - "n": "Quintessivore", - "s": "B3", - "lv": 10, - "ac": 28, - "hp": 180, - "pc": 17, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Quoppopak", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Quoppopak Mummy", - "s": "SF2", - "lv": 13, - "ac": 32, - "hp": 260, - "pc": 24, - "sz": "large", - "tp": "undead" - }, - { - "n": "Qurashith", - "s": "EC4", - "lv": 17, - "ac": 40, - "hp": 340, - "pc": 33, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Racharak", - "s": "AoA2", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "small", - "tp": "dragon" - }, - { - "n": "Radiant Veranallia", - "s": "CotT", - "lv": 20, - "ac": 45, - "hp": 475, - "pc": 38, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Radiant Warden", - "s": "B2", - "lv": 17, - "ac": 40, - "hp": 300, - "pc": 30, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Rai Sho Disciple", - "s": "FRP3", - "lv": 16, - "ac": 40, - "hp": 300, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rai Sho Postulant", - "s": "FRP3", - "lv": 16, - "ac": 39, - "hp": 360, - "pc": 30, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Raised Cavalry", - "s": "CotT", - "lv": 19, - "ac": 42, - "hp": 360, - "pc": 32, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Raja Rakshasa", - "s": "B1", - "lv": 10, - "ac": 30, - "hp": 155, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Raktavarna", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 14, - "pc": 6, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Ralso", - "s": "AoE1", - "lv": 4, - "ac": 22, - "hp": 55, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ran-to", - "s": "FRP1", - "lv": 14, - "ac": 35, - "hp": 330, - "pc": 20, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Ran-to", - "s": "FRP2", - "lv": 16, - "ac": 38, - "hp": 380, - "pc": 23, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Ran-to", - "s": "FRP3", - "lv": 20, - "ac": 44, - "hp": 460, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rancorous Priesthood", - "s": "B3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 21, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Raptor Guard Wight", - "s": "EC5", - "lv": 13, - "ac": 34, - "hp": 240, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Raskus", - "s": "SF1", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rat Snake Swarm", - "s": "B3", - "lv": 2, - "ac": 16, - "hp": 20, - "pc": 8, - "sz": "large", - "tp": "animal" - }, - { - "n": "Rat Swarm", - "s": "B1", - "lv": 1, - "ac": 14, - "hp": 14, - "pc": 5, - "sz": "large", - "tp": "animal" - }, - { - "n": "Rat, Giant", - "s": "BB", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "small", - "tp": "animal" - }, - { - "n": "Ratajin Mastermind", - "s": "LOIL", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ratfolk Grenadier", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Ravager of Tindalos", - "s": "SoT5", - "lv": 18, - "ac": 43, - "hp": 250, - "pc": 31, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Raven", - "s": "B2", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Raven Nicoletta", - "s": "SF3", - "lv": 20, - "ac": 44, - "hp": 370, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Raven Swarm", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 30, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Ravener", - "s": "B2", - "lv": 21, - "ac": 47, - "hp": 500, - "pc": 37, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ravener Husk", - "s": "B2", - "lv": 14, - "ac": 35, - "hp": 325, - "pc": 26, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Ravenile Rager", - "s": "AoE3", - "lv": 14, - "ac": 24, - "hp": 306, - "pc": 25, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Raw Nerve", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 150, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Razu", - "s": "FRP2", - "lv": 18, - "ac": 40, - "hp": 250, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Reaper Skull Puffball", - "s": "AV3", - "lv": 9, - "ac": 25, - "hp": 195, - "pc": 15, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Reborn Devotee", - "s": "WoW3", - "lv": 11, - "ac": 31, - "hp": 120, - "pc": 19, - "sz": "huge", - "tp": "fungus" - }, - { - "n": "Reborn Sun Hunter", - "s": "SoT4", - "lv": 11, - "ac": 0, - "hp": 195, - "pc": 24, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Reborn Sun Mage", - "s": "SoT4", - "lv": 11, - "ac": 28, - "hp": 195, - "pc": 24, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Reborn Sun Warrior", - "s": "SoT4", - "lv": 11, - "ac": 31, - "hp": 245, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Reckless Scientist", - "s": "GMG", - "lv": 6, - "ac": 23, - "hp": 92, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Red Commander Ant", - "s": "SoT6", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 30, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Red Fox", - "s": "B3", - "lv": -1, - "ac": 17, - "hp": 5, - "pc": 7, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Red Guard Ant", - "s": "SoT6", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 27, - "sz": "large", - "tp": "beast" - }, - { - "n": "Red Queen", - "s": "SoT6", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 30, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Red-Hooded Thatchling", - "s": "SoG1", - "lv": 2, - "ac": 15, - "hp": 16, - "pc": 8, - "sz": "small", - "tp": "undead" - }, - { - "n": "Redcap", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 60, - "pc": 12, - "sz": "small", - "tp": "fey" - }, - { - "n": "Redwood Leshy", - "s": "WoW3", - "lv": 10, - "ac": 29, - "hp": 205, - "pc": 22, - "sz": "small", - "tp": "plant" - }, - { - "n": "Reef Octopus", - "s": "B2", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 7, - "sz": "small", - "tp": "animal" - }, - { - "n": "Reefclaw", - "s": "B1", - "lv": 1, - "ac": 20, - "hp": 17, - "pc": 8, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Reginald Vancaskerkin", - "s": "AoE5", - "lv": 18, - "ac": 42, - "hp": 350, - "pc": 33, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Relictner Eroder", - "s": "BotD", - "lv": 12, - "ac": 32, - "hp": 265, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Remnant of Barzillai", - "s": "AoA3", - "lv": 10, - "ac": 29, - "hp": 135, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Remorhaz", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 14, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Ren Mei Li", - "s": "SoG4", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Renali", - "s": "AoA1", - "lv": 4, - "ac": 18, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Resin-seep Xulgath", - "s": "EC3", - "lv": 10, - "ac": 30, - "hp": 195, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Reth", - "s": "SoT2", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Revenant", - "s": "B2", - "lv": 6, - "ac": 23, - "hp": 115, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Rhevanna", - "s": "AoE6", - "lv": 22, - "ac": 48, - "hp": 400, - "pc": 42, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Rhinoceros", - "s": "B2", - "lv": 4, - "ac": 22, - "hp": 70, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Rhu-chalik", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 17, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Riding Dog", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Riding Horse", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 22, - "pc": 5, - "sz": "large", - "tp": "animal" - }, - { - "n": "Riding Pony", - "s": "B1", - "lv": 0, - "ac": 14, - "hp": 16, - "pc": 4, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Riekanoy", - "s": "NGD", - "lv": 19, - "ac": 45, - "hp": 410, - "pc": 31, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Rin", - "s": "SoG3", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 15, - "sz": "small", - "tp": "spirit" - }, - { - "n": "Ringhorn Ram", - "s": "B3", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Rinnarv Bontimar", - "s": "AoA6", - "lv": 20, - "ac": 45, - "hp": 400, - "pc": 32, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "River Drake", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "dragon" - }, - { - "n": "Rivka", - "s": "FRP2", - "lv": 13, - "ac": 32, - "hp": 220, - "pc": 21, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Roc", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 180, - "pc": 18, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Roiling Incant", - "s": "B3", - "lv": 9, - "ac": 25, - "hp": 155, - "pc": 15, - "sz": "large", - "tp": "" - }, - { - "n": "Rokurokubi", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rompo", - "s": "LOME", - "lv": 5, - "ac": 21, - "hp": 80, - "pc": 15, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Rootridden", - "s": "WoW3", - "lv": 8, - "ac": 26, - "hp": 120, - "pc": 16, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Roper", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 215, - "pc": 21, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Rosethorn Ram", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Ruanna Nyamma", - "s": "EC2", - "lv": 4, - "ac": 20, - "hp": 66, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ruffian", - "s": "GMG", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rumesgarth", - "s": "CotT", - "lv": 19, - "ac": 42, - "hp": 330, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Rune Giant", - "s": "B1", - "lv": 16, - "ac": 38, - "hp": 330, - "pc": 28, - "sz": "gargantuan", - "tp": "giant" - }, - { - "n": "Runecarved Lich", - "s": "BotD", - "lv": 19, - "ac": 42, - "hp": 330, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Rusalka", - "s": "B2", - "lv": 12, - "ac": 33, - "hp": 230, - "pc": 22, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Rust Monster", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 8, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Rust Ooze", - "s": "OoA1", - "lv": 3, - "ac": 11, - "hp": 80, - "pc": 6, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Rustan", - "s": "SF1", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rustsworrn Initiates", - "s": "Rust", - "lv": -1, - "ac": 14, - "hp": 8, - "pc": 2, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Rusty Mae", - "s": "AoA3", - "lv": 10, - "ac": 30, - "hp": 155, - "pc": 22, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Ruzadoya Swiftmane", - "s": "WoW3", - "lv": 14, - "ac": 38, - "hp": 255, - "pc": 26, - "sz": "large", - "tp": "undead" - }, - { - "n": "Ruzadoya's Chosen", - "s": "WoW2", - "lv": 7, - "ac": 22, - "hp": 115, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ryta", - "s": "AV2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Sabora Sharkosa", - "s": "OoA2", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sabosan", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 78, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Saboteur", - "s": "GMG", - "lv": 2, - "ac": 18, - "hp": 27, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sacristan", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Sacuishu", - "s": "AV2", - "lv": 9, - "ac": 30, - "hp": 80, - "pc": 21, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Sage", - "s": "GMG", - "lv": 6, - "ac": 22, - "hp": 86, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Saggorak Poltergeist", - "s": "AoA4", - "lv": 12, - "ac": 33, - "hp": 180, - "pc": 20, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Sakuachi", - "s": "GW2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Salaisa Malthulas", - "s": "AV3", - "lv": 11, - "ac": 31, - "hp": 200, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Salamander", - "s": "B1", - "lv": 7, - "ac": 26, - "hp": 125, - "pc": 15, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Salathiss", - "s": "SoT2", - "lv": 9, - "ac": 27, - "hp": 150, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Samir and Amina", - "s": "TEC", - "lv": 5, - "ac": 21, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Samsaran Anchorite", - "s": "B3", - "lv": 1, - "ac": 15, - "hp": 16, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sand Sentry", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 94, - "pc": 14, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Sand Wolf", - "s": "TEC", - "lv": 5, - "ac": 21, - "hp": 92, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Sandpoint Devil", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 165, - "pc": 16, - "sz": "large", - "tp": "beast" - }, - { - "n": "Sanzuwu", - "s": "FRP3", - "lv": 15, - "ac": 36, - "hp": 295, - "pc": 26, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Sard", - "s": "B2", - "lv": 19, - "ac": 43, - "hp": 400, - "pc": 35, - "sz": "gargantuan", - "tp": "plant" - }, - { - "n": "Sarglagon", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 120, - "pc": 18, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Sarvel Ever-hunger", - "s": "EC6", - "lv": 22, - "ac": 48, - "hp": 430, - "pc": 39, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Sasquatch", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 36, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Satyr", - "s": "B1", - "lv": 4, - "ac": 19, - "hp": 80, - "pc": 10, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Saurian Warmonger", - "s": "EC6", - "lv": 16, - "ac": 39, - "hp": 340, - "pc": 31, - "sz": "huge", - "tp": "humanoid" - }, - { - "n": "Saurian Worldwatcher", - "s": "EC6", - "lv": 18, - "ac": 43, - "hp": 330, - "pc": 34, - "sz": "huge", - "tp": "humanoid" - }, - { - "n": "Scalathrax", - "s": "AV1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Scalescribe", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 45, - "pc": 11, - "sz": "tiny", - "tp": "aberration" - }, - { - "n": "Scaleseed Nagaji", - "s": "SF1", - "lv": 7, - "ac": 23, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scalliwing", - "s": "TiO", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 12, - "sz": "tiny", - "tp": "beast" - }, - { - "n": "Scarecophagus", - "s": "OoA2", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 14, - "sz": "large", - "tp": "construct" - }, - { - "n": "Scarecrow", - "s": "B2", - "lv": 4, - "ac": 19, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Scarlet Triad Boss", - "s": "AoA5", - "lv": 17, - "ac": 39, - "hp": 315, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Enforcer", - "s": "AoA5", - "lv": 15, - "ac": 36, - "hp": 275, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Mage", - "s": "AoA5", - "lv": 15, - "ac": 37, - "hp": 270, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Poisoner", - "s": "AoA3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Sneak", - "s": "AoA3", - "lv": 6, - "ac": 25, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Sniper", - "s": "AoA3", - "lv": 11, - "ac": 32, - "hp": 195, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Triad Thug", - "s": "AoA3", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scarlet Walker", - "s": "SaS", - "lv": 12, - "ac": 33, - "hp": 225, - "pc": 23, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Scathka", - "s": "AoE3", - "lv": 12, - "ac": 31, - "hp": 210, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sceaduinar", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Scented Candle Homunculus", - "s": "AFoF", - "lv": 1, - "ac": 17, - "hp": 17, - "pc": 3, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Scorching Sun Cultist", - "s": "TEC", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Scorned Hound", - "s": "BotD", - "lv": 1, - "ac": 15, - "hp": 22, - "pc": 7, - "sz": "small", - "tp": "undead" - }, - { - "n": "Scorpion Swarm", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 55, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Scrapborn", - "s": "TEC", - "lv": 5, - "ac": 22, - "hp": 81, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Screaming Sulfur", - "s": "SoT3", - "lv": 10, - "ac": 27, - "hp": 125, - "pc": 22, - "sz": "huge", - "tp": "spirit" - }, - { - "n": "Scrit", - "s": "SoT1", - "lv": 0, - "ac": 16, - "hp": 18, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Scythe Tree", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 14, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Sea Devil Baron", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sea Devil Brute", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sea Devil Scout", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sea Drake", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 14, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Sea Hag", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sea Serpent", - "s": "B1", - "lv": 12, - "ac": 35, - "hp": 210, - "pc": 22, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Sea Snake", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 5, - "sz": "small", - "tp": "animal" - }, - { - "n": "Seaweed Leshy", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "small", - "tp": "plant" - }, - { - "n": "Seddek", - "s": "TEC", - "lv": 8, - "ac": 23, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Seetangeist", - "s": "BotD", - "lv": 12, - "ac": 32, - "hp": 160, - "pc": 19, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Seething Spirit", - "s": "B3", - "lv": 11, - "ac": 29, - "hp": 145, - "pc": 15, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Seldeg Bhedlis", - "s": "CotT", - "lv": 20, - "ac": 46, - "hp": 465, - "pc": 32, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Sepid", - "s": "B3", - "lv": 14, - "ac": 34, - "hp": 350, - "pc": 24, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Serpentfolk Granitescale", - "s": "SoT2", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Serpentfolk Venom Caller", - "s": "SoT2", - "lv": 7, - "ac": 24, - "hp": 105, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Servant", - "s": "GMG", - "lv": -1, - "ac": 15, - "hp": 9, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Server", - "s": "GMG", - "lv": -1, - "ac": 16, - "hp": 7, - "pc": 3, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Seugathi Reality Warper", - "s": "AV2", - "lv": 9, - "ac": 27, - "hp": 120, - "pc": 17, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Seugathi Servant", - "s": "AV2", - "lv": 6, - "ac": 23, - "hp": 75, - "pc": 14, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Severed Head", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 6, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Severed Head", - "s": "Rust", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 6, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Sewer Ooze", - "s": "B1", - "lv": 1, - "ac": 8, - "hp": 40, - "pc": 3, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Shabti Redeemer", - "s": "B3", - "lv": 4, - "ac": 24, - "hp": 75, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shadebound Pixie Guard", - "s": "WoW2", - "lv": 6, - "ac": 25, - "hp": 95, - "pc": 14, - "sz": "small", - "tp": "fey" - }, - { - "n": "Shadern Immolator", - "s": "BotD", - "lv": 1, - "ac": 15, - "hp": 21, - "pc": 5, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Shadow", - "s": "B1", - "lv": 4, - "ac": 20, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Shadow", - "s": "BB", - "lv": 4, - "ac": 20, - "hp": 40, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Shadow Drake", - "s": "B2", - "lv": 2, - "ac": 17, - "hp": 28, - "pc": 6, - "sz": "tiny", - "tp": "dragon" - }, - { - "n": "Shadow Giant", - "s": "B2", - "lv": 13, - "ac": 33, - "hp": 275, - "pc": 20, - "sz": "large", - "tp": "giant" - }, - { - "n": "Shadow Sage", - "s": "WoW2", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 0, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shadow Yai", - "s": "FRP2", - "lv": 16, - "ac": 39, - "hp": 290, - "pc": 28, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Shae", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "" - }, - { - "n": "Shaitan", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 110, - "pc": 15, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Shaldar Falls-Far", - "s": "SF1", - "lv": 6, - "ac": 23, - "hp": 112, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shambler", - "s": "B1", - "lv": 6, - "ac": 22, - "hp": 120, - "pc": 12, - "sz": "large", - "tp": "plant" - }, - { - "n": "Shambler Troop", - "s": "B3", - "lv": 4, - "ac": 18, - "hp": 90, - "pc": 7, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Shanrigol Behemoth", - "s": "AV2", - "lv": 9, - "ac": 27, - "hp": 140, - "pc": 18, - "sz": "gargantuan", - "tp": "aberration" - }, - { - "n": "Shanrigol Heap", - "s": "AV2", - "lv": 4, - "ac": 20, - "hp": 55, - "pc": 9, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Shantak", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 115, - "pc": 18, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Shatterling", - "s": "AoE4", - "lv": 14, - "ac": 36, - "hp": 305, - "pc": 26, - "sz": "small", - "tp": "fey" - }, - { - "n": "Shaukeen", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 22, - "pc": 8, - "sz": "tiny", - "tp": "fiend" - }, - { - "n": "Shemhazian", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 350, - "pc": 30, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Shianshi Waymaker", - "s": "SoT6", - "lv": 18, - "ac": 42, - "hp": 330, - "pc": 32, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Shield Archon", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 125, - "pc": 19, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Shieldbearer Construct", - "s": "SoT1", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 6, - "sz": "large", - "tp": "construct" - }, - { - "n": "Shikigami", - "s": "B3", - "lv": 1, - "ac": 15, - "hp": 25, - "pc": 10, - "sz": "tiny", - "tp": "spirit" - }, - { - "n": "Shikwashim Mercenary", - "s": "AoE3", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shimmerthief", - "s": "SoG3", - "lv": 7, - "ac": 25, - "hp": 119, - "pc": 15, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Shinigami", - "s": "SoG1", - "lv": 17, - "ac": 40, - "hp": 260, - "pc": 31, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Shining Child", - "s": "B1", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 23, - "sz": "medium", - "tp": "astral" - }, - { - "n": "Shino Hakusa", - "s": "FRP1", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shino Hakusa", - "s": "FRP2", - "lv": 16, - "ac": 38, - "hp": 300, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shino Hakusa", - "s": "FRP3", - "lv": 20, - "ac": 45, - "hp": 360, - "pc": 34, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ship Captain", - "s": "GMG", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shisagishin", - "s": "SoG4", - "lv": 12, - "ac": 33, - "hp": 214, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Shoal Linnorm", - "s": "B2", - "lv": 15, - "ac": 38, - "hp": 295, - "pc": 27, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Shobhad Enforcer", - "s": "SoT5", - "lv": 16, - "ac": 38, - "hp": 320, - "pc": 29, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Shobhad Sniper", - "s": "SoT5", - "lv": 17, - "ac": 40, - "hp": 320, - "pc": 30, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Shock Zombie", - "s": "OoA3", - "lv": 6, - "ac": 21, - "hp": 140, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Shocker Lizard", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 32, - "pc": 7, - "sz": "small", - "tp": "animal" - }, - { - "n": "Shoggoth", - "s": "B1", - "lv": 18, - "ac": 39, - "hp": 275, - "pc": 34, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Shoggti", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 13, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Shoma Lyzerius", - "s": "OoA1", - "lv": 3, - "ac": 18, - "hp": 44, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shoony Hierarch", - "s": "EC3", - "lv": 4, - "ac": 19, - "hp": 60, - "pc": 12, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Shoony Militia Member", - "s": "EC3", - "lv": 2, - "ac": 17, - "hp": 40, - "pc": 8, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Shoony Tiller", - "s": "EC3", - "lv": 0, - "ac": 15, - "hp": 16, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Shou Matsuki", - "s": "SoG1", - "lv": 5, - "ac": 18, - "hp": 70, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shraen Graveknight", - "s": "EC5", - "lv": 15, - "ac": 37, - "hp": 295, - "pc": 26, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Shredskin", - "s": "AoE1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 11, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Shredskin", - "s": "BotD", - "lv": 2, - "ac": 16, - "hp": 30, - "pc": 6, - "sz": "small", - "tp": "undead" - }, - { - "n": "Shrine Maiden", - "s": "SoG3", - "lv": 9, - "ac": 27, - "hp": 152, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shrine Skelm", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shristi Melipdra", - "s": "AoE2", - "lv": 7, - "ac": 26, - "hp": 100, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Shroudwing", - "s": "LOSK", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Shui Gui", - "s": "LOTXWG", - "lv": 5, - "ac": 21, - "hp": 135, - "pc": 14, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Shuln", - "s": "B1", - "lv": 12, - "ac": 33, - "hp": 195, - "pc": 20, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Shulsaga", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 35, - "pc": 10, - "sz": "medium", - "tp": "astral" - }, - { - "n": "Siabrae", - "s": "BotD", - "lv": 16, - "ac": 36, - "hp": 218, - "pc": 31, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Sickened Doprillu", - "s": "SF3", - "lv": 14, - "ac": 34, - "hp": 260, - "pc": 0, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Sicklehand Construct", - "s": "SoT1", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Sié Goluo", - "s": "LOME", - "lv": 14, - "ac": 36, - "hp": 320, - "pc": 25, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Siege Shard", - "s": "AoE1", - "lv": 3, - "ac": 19, - "hp": 37, - "pc": 9, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Sigbin", - "s": "FRP1", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 12, - "sz": "small", - "tp": "beast" - }, - { - "n": "Sigrid Jandevik", - "s": "WoW1", - "lv": 7, - "ac": 24, - "hp": 140, - "pc": 15, - "sz": "large", - "tp": "beast" - }, - { - "n": "Silent Stalker", - "s": "BotD", - "lv": 13, - "ac": 34, - "hp": 220, - "pc": 24, - "sz": "small", - "tp": "undead" - }, - { - "n": "Silsyche", - "s": "SoG3", - "lv": 6, - "ac": 23, - "hp": 68, - "pc": 14, - "sz": "small", - "tp": "spirit" - }, - { - "n": "Silvanshee", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 20, - "pc": 8, - "sz": "tiny", - "tp": "celestial" - }, - { - "n": "Silverfish Swarm", - "s": "SoT1", - "lv": -1, - "ac": 13, - "hp": 9, - "pc": 5, - "sz": "large", - "tp": "animal" - }, - { - "n": "Simple Harrowkin", - "s": "SF3", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 10, - "sz": "small", - "tp": "construct" - }, - { - "n": "Simulacra", - "s": "DaLl", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Simurgh", - "s": "B1", - "lv": 18, - "ac": 41, - "hp": 350, - "pc": 32, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Sinspawn", - "s": "B1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Sixth Pillar Student", - "s": "FRP2", - "lv": 14, - "ac": 34, - "hp": 220, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Skarja", - "s": "EC3", - "lv": 13, - "ac": 34, - "hp": 260, - "pc": 25, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Skartitch Chip-Tooth", - "s": "SoT5", - "lv": 16, - "ac": 39, - "hp": 290, - "pc": 28, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Skaveling", - "s": "B2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 15, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skebs", - "s": "AoE1", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 4, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Skeletal Champion", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 25, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Skeletal Giant", - "s": "B1", - "lv": 3, - "ac": 17, - "hp": 50, - "pc": 7, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skeletal Hellknight", - "s": "AoA1", - "lv": 2, - "ac": 20, - "hp": 25, - "pc": 7, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Skeletal Horse", - "s": "B1", - "lv": 2, - "ac": 16, - "hp": 33, - "pc": 8, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skeletal Hulk", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 105, - "pc": 16, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Skeletal Mage", - "s": "BotD", - "lv": 5, - "ac": 21, - "hp": 60, - "pc": 9, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Skeletal Rat Swarm", - "s": "CotT", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 8, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skeletal Soldier", - "s": "BotD", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 5, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Skeletal Titan", - "s": "BotD", - "lv": 13, - "ac": 33, - "hp": 210, - "pc": 19, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Skeleton Guard", - "s": "B1", - "lv": -1, - "ac": 16, - "hp": 4, - "pc": 2, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Skeleton Guard", - "s": "BB", - "lv": -1, - "ac": 16, - "hp": 4, - "pc": 2, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skeleton Infantry", - "s": "B3", - "lv": 11, - "ac": 31, - "hp": 180, - "pc": 17, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Skeleton, Skeletal Giant", - "s": "BB", - "lv": 3, - "ac": 17, - "hp": 50, - "pc": 7, - "sz": "large", - "tp": "undead" - }, - { - "n": "Skilled Noppera-Bo Impersonator", - "s": "SoG3", - "lv": 6, - "ac": 22, - "hp": 93, - "pc": 14, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Skin Beetle", - "s": "GW2", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 9, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Skin Beetle Swarm", - "s": "GW2", - "lv": 8, - "ac": 26, - "hp": 125, - "pc": 16, - "sz": "large", - "tp": "animal" - }, - { - "n": "Skinsaw Murderer", - "s": "AoE2", - "lv": 6, - "ac": 22, - "hp": 120, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Skinsaw Seamer", - "s": "AoE2", - "lv": 8, - "ac": 26, - "hp": 130, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Skinskitter", - "s": "LOIL", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Skinstitch", - "s": "AoE2", - "lv": 5, - "ac": 22, - "hp": 95, - "pc": 12, - "sz": "large", - "tp": "construct" - }, - { - "n": "Skinstitch", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 95, - "pc": 12, - "sz": "large", - "tp": "construct" - }, - { - "n": "Skorp", - "s": "AoA1", - "lv": 1, - "ac": 18, - "hp": 18, - "pc": 6, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Skrik Nettle", - "s": "B2", - "lv": 6, - "ac": 22, - "hp": 130, - "pc": 16, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Skulk", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 21, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Skull Peeler", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 75, - "pc": 17, - "sz": "small", - "tp": "beast" - }, - { - "n": "Skulltaker", - "s": "B1", - "lv": 18, - "ac": 42, - "hp": 300, - "pc": 33, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Skum", - "s": "B1", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Skunk", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Slana", - "s": "SoT6", - "lv": 20, - "ac": 45, - "hp": 380, - "pc": 36, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Sleepless Sun Veteran", - "s": "AoE4", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Slime Mold", - "s": "B2", - "lv": 2, - "ac": 12, - "hp": 60, - "pc": 6, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Slithering Pit", - "s": "B3", - "lv": 7, - "ac": 14, - "hp": 220, - "pc": 9, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Slithering Rift", - "s": "AoE6", - "lv": 18, - "ac": 31, - "hp": 535, - "pc": 30, - "sz": "huge", - "tp": "ooze" - }, - { - "n": "Sluagh Reaper", - "s": "BotD", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Sludgespine Killers", - "s": "OoA1", - "lv": -1, - "ac": 14, - "hp": 8, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Slurk", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Smiler", - "s": "EC1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Smilodon", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 110, - "pc": 14, - "sz": "large", - "tp": "animal" - }, - { - "n": "Smith", - "s": "GMG", - "lv": 3, - "ac": 17, - "hp": 50, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Smog Giant", - "s": "OoA2", - "lv": 7, - "ac": 23, - "hp": 145, - "pc": 13, - "sz": "large", - "tp": "giant" - }, - { - "n": "Smog Wraith", - "s": "OoA3", - "lv": 9, - "ac": 27, - "hp": 110, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Smoldering Leopard", - "s": "EC1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 11, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Snake, Giant Viper", - "s": "BB", - "lv": 2, - "ac": 19, - "hp": 26, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Snake, Viper", - "s": "BB", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Snapping Flytrap", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 7, - "sz": "large", - "tp": "plant" - }, - { - "n": "Snapping Turtle", - "s": "B2", - "lv": -1, - "ac": 16, - "hp": 9, - "pc": 3, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Snowy Owl", - "s": "GW3", - "lv": 7, - "ac": 21, - "hp": 60, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sod Hound", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 44, - "pc": 9, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Sodden Sentinels", - "s": "EC4", - "lv": 11, - "ac": 28, - "hp": 320, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Sojiruh", - "s": "SoG2", - "lv": 4, - "ac": 17, - "hp": 58, - "pc": 11, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Solar", - "s": "B2", - "lv": 23, - "ac": 49, - "hp": 500, - "pc": 40, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Solar Ibis", - "s": "LOME", - "lv": 7, - "ac": 25, - "hp": 45, - "pc": 17, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Sonnorae", - "s": "SF2", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 31, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Sorcerous Skull Swarm", - "s": "B3", - "lv": 14, - "ac": 34, - "hp": 190, - "pc": 24, - "sz": "large", - "tp": "undead" - }, - { - "n": "Sordesdaemon", - "s": "AoE6", - "lv": 15, - "ac": 37, - "hp": 300, - "pc": 26, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Soul Eater", - "s": "B2", - "lv": 7, - "ac": 26, - "hp": 80, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Soul Skelm", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 170, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Soul Swarms", - "s": "SoT4", - "lv": 13, - "ac": 28, - "hp": 234, - "pc": 24, - "sz": "gargantuan", - "tp": "spirit" - }, - { - "n": "Soulbound Doll", - "s": "B1", - "lv": 2, - "ac": 20, - "hp": 23, - "pc": 8, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Soulbound Ruin", - "s": "AoA4", - "lv": 15, - "ac": 37, - "hp": 310, - "pc": 25, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Spark Bat", - "s": "B2", - "lv": 2, - "ac": 19, - "hp": 18, - "pc": 7, - "sz": "tiny", - "tp": "elemental" - }, - { - "n": "Spawn of Kothogaz", - "s": "LOMM", - "lv": 6, - "ac": 24, - "hp": 70, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Spawn of Taon", - "s": "SoT5", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Speaker of Svarýr", - "s": "SF3", - "lv": 20, - "ac": 44, - "hp": 380, - "pc": 34, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Spear Frog", - "s": "B2", - "lv": 0, - "ac": 14, - "hp": 12, - "pc": 6, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Specter", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 95, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Spellcasting Noppera-Bo Impersonator", - "s": "SoG3", - "lv": 6, - "ac": 22, - "hp": 93, - "pc": 14, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Spellscar Fext", - "s": "LOIL", - "lv": 7, - "ac": 25, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Spellscar Sky Marauders", - "s": "OoA2", - "lv": 5, - "ac": 22, - "hp": 85, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Spellskein", - "s": "SoT1", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 2, - "sz": "tiny", - "tp": "construct" - }, - { - "n": "Sphinx", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 18, - "sz": "large", - "tp": "beast" - }, - { - "n": "Spider Swarm", - "s": "B1", - "lv": 0, - "ac": 15, - "hp": 12, - "pc": 4, - "sz": "large", - "tp": "animal" - }, - { - "n": "Spider, Giant", - "s": "BB", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Spinel Leviathan Syndara", - "s": "FRP3", - "lv": 24, - "ac": 51, - "hp": 550, - "pc": 46, - "sz": "gargantuan", - "tp": "monitor" - }, - { - "n": "Spinosaurus", - "s": "B2", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 21, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Spiny Eurypterid", - "s": "B3", - "lv": 5, - "ac": 22, - "hp": 70, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Spiral Centurion", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 170, - "pc": 20, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Spirit Naga", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 160, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Spirit Turtle", - "s": "FRP3", - "lv": 21, - "ac": 45, - "hp": 320, - "pc": 35, - "sz": "gargantuan", - "tp": "fey" - }, - { - "n": "Spiritbound Aluum", - "s": "AoA5", - "lv": 16, - "ac": 39, - "hp": 255, - "pc": 28, - "sz": "large", - "tp": "construct" - }, - { - "n": "Spitting Sawfly", - "s": "WoW3", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 19, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Splinter Officer", - "s": "CotT", - "lv": 19, - "ac": 42, - "hp": 375, - "pc": 35, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Splintershank", - "s": "WoW1", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 14, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Sportlebore Swarm", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 85, - "pc": 13, - "sz": "large", - "tp": "animal" - }, - { - "n": "Spriggan Bully", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 48, - "pc": 10, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Spriggan Warlord", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 14, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Sprite", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 11, - "pc": 4, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Spy", - "s": "GMG", - "lv": 6, - "ac": 23, - "hp": 90, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Squirming Swill", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 28, - "pc": 6, - "sz": "small", - "tp": "undead" - }, - { - "n": "Squirrel Swarm", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 16, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Ssumzili", - "s": "SoT3", - "lv": 12, - "ac": 33, - "hp": 201, - "pc": 25, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Star Archon", - "s": "B2", - "lv": 19, - "ac": 43, - "hp": 400, - "pc": 35, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Starved Staff", - "s": "EC4", - "lv": 14, - "ac": 32, - "hp": 250, - "pc": 26, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Starwatch Commando", - "s": "AoE5", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Steam Mephit", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 19, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Stegosaurus", - "s": "B1", - "lv": 7, - "ac": 23, - "hp": 125, - "pc": 15, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Stelemora", - "s": "CotT", - "lv": 7, - "ac": 24, - "hp": 188, - "pc": 17, - "sz": "large", - "tp": "fey" - }, - { - "n": "Stheno Harpist", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 19, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sthira", - "s": "FRP3", - "lv": 20, - "ac": 45, - "hp": 475, - "pc": 33, - "sz": "large", - "tp": "undead" - }, - { - "n": "Stingray", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 6, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Stinkweed Shambler", - "s": "TiO", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "plant" - }, - { - "n": "Stirvyn Banyan", - "s": "EC4", - "lv": 12, - "ac": 31, - "hp": 230, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Stone Ghost", - "s": "SoT1", - "lv": 5, - "ac": 20, - "hp": 40, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Stone Giant", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 150, - "pc": 16, - "sz": "large", - "tp": "giant" - }, - { - "n": "Stone Giant Monk", - "s": "LOCG", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 16, - "sz": "large", - "tp": "giant" - }, - { - "n": "Stone Golem", - "s": "B1", - "lv": 11, - "ac": 30, - "hp": 175, - "pc": 17, - "sz": "large", - "tp": "construct" - }, - { - "n": "Stone Horse", - "s": "FoP", - "lv": 2, - "ac": 16, - "hp": 30, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Stone Lion", - "s": "B3", - "lv": 4, - "ac": 21, - "hp": 50, - "pc": 13, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Stone Lion Cub", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 28, - "pc": 10, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Stone Mauler", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 180, - "pc": 16, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Stone Sister", - "s": "LOIL", - "lv": 6, - "ac": 24, - "hp": 75, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Stone Spider", - "s": "SoG1", - "lv": 5, - "ac": 22, - "hp": 62, - "pc": 14, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Stone-Breasted Owl", - "s": "GW2", - "lv": 5, - "ac": 22, - "hp": 75, - "pc": 15, - "sz": "small", - "tp": "beast" - }, - { - "n": "Storied Harrowkin", - "s": "SF3", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 17, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Storm Giant", - "s": "B1", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 24, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Storm Hag", - "s": "B3", - "lv": 5, - "ac": 21, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Storm Lord", - "s": "B1", - "lv": 9, - "ac": 30, - "hp": 120, - "pc": 18, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Stormdrinker", - "s": "WoW1", - "lv": 7, - "ac": 23, - "hp": 145, - "pc": 14, - "sz": "large", - "tp": "plant" - }, - { - "n": "Street Skelm", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Striding Fire", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 115, - "pc": 14, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Strigoi Progenitor", - "s": "SaS", - "lv": 13, - "ac": 34, - "hp": 180, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Strigoi Servants", - "s": "SaS", - "lv": 10, - "ac": 30, - "hp": 130, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Strix Kinmate", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 24, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sturzstromer", - "s": "B3", - "lv": 19, - "ac": 41, - "hp": 280, - "pc": 33, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Stygira", - "s": "B2", - "lv": 7, - "ac": 26, - "hp": 80, - "pc": 17, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Succubus", - "s": "B1", - "lv": 7, - "ac": 23, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Sulfur Zombie", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 125, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Suli Dune Dancer", - "s": "B2", - "lv": 1, - "ac": 15, - "hp": 16, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sumbreiva", - "s": "B3", - "lv": 16, - "ac": 39, - "hp": 290, - "pc": 29, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Sun Warrior Brigade", - "s": "SoT4", - "lv": 12, - "ac": 33, - "hp": 216, - "pc": 22, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Sunburst Corpse", - "s": "SoT4", - "lv": 14, - "ac": 35, - "hp": 255, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Sunflower Leshy", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 7, - "sz": "small", - "tp": "plant" - }, - { - "n": "Surgeon", - "s": "GMG", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Surjit Hamelan", - "s": "FRP2", - "lv": 13, - "ac": 33, - "hp": 220, - "pc": 25, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Suvarden", - "s": "SF3", - "lv": 7, - "ac": 24, - "hp": 125, - "pc": 17, - "sz": "large", - "tp": "beast" - }, - { - "n": "Svartalfar Killer", - "s": "AoE3", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 16, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Svarýr Commander", - "s": "SF3", - "lv": 19, - "ac": 44, - "hp": 330, - "pc": 33, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Svarýr Soldier", - "s": "SF3", - "lv": 16, - "ac": 39, - "hp": 295, - "pc": 30, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Swardlands Delinquent", - "s": "EC3", - "lv": 4, - "ac": 21, - "hp": 65, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Swordkeeper", - "s": "B3", - "lv": 10, - "ac": 29, - "hp": 285, - "pc": 20, - "sz": "large", - "tp": "construct" - }, - { - "n": "Sykever", - "s": "BotD", - "lv": 15, - "ac": 37, - "hp": 335, - "pc": 29, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Sylph Sneak", - "s": "B2", - "lv": 1, - "ac": 18, - "hp": 17, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Sylvarindarian", - "s": "WoW2", - "lv": 7, - "ac": 25, - "hp": 110, - "pc": 15, - "sz": "small", - "tp": "fey" - }, - { - "n": "Syndara the Sculptor", - "s": "FRP3", - "lv": 22, - "ac": 48, - "hp": 380, - "pc": 39, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Syu Tak-nwa", - "s": "FRP1", - "lv": 14, - "ac": 34, - "hp": 220, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Syu Tak-nwa", - "s": "FRP2", - "lv": 16, - "ac": 37, - "hp": 250, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Syu Tak-nwa", - "s": "FRP3", - "lv": 20, - "ac": 42, - "hp": 360, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Ta'apundo", - "s": "SoT6", - "lv": 19, - "ac": 45, - "hp": 440, - "pc": 35, - "sz": "huge", - "tp": "fey" - }, - { - "n": "Taiga Giant", - "s": "B2", - "lv": 12, - "ac": 32, - "hp": 230, - "pc": 23, - "sz": "huge", - "tp": "giant" - }, - { - "n": "Taiga Linnorm", - "s": "B2", - "lv": 19, - "ac": 44, - "hp": 385, - "pc": 33, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Taiga Yai", - "s": "FRP2", - "lv": 15, - "ac": 36, - "hp": 270, - "pc": 30, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Takatorra", - "s": "FRP1", - "lv": 9, - "ac": 26, - "hp": 210, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Takatorra", - "s": "FRP2", - "lv": 13, - "ac": 32, - "hp": 300, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Takulu Ot", - "s": "SoT1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Talamira", - "s": "AoA4", - "lv": 13, - "ac": 34, - "hp": 185, - "pc": 24, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Tallow Ooze", - "s": "EC4", - "lv": 11, - "ac": 19, - "hp": 270, - "pc": 14, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Tallusian", - "s": "CotT", - "lv": 5, - "ac": 21, - "hp": 76, - "pc": 12, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Tamikan", - "s": "FRP1", - "lv": 16, - "ac": 38, - "hp": 295, - "pc": 23, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Tanessa Fleer", - "s": "EC3", - "lv": 9, - "ac": 22, - "hp": 155, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tanglebones", - "s": "Mal", - "lv": 7, - "ac": 24, - "hp": 145, - "pc": 17, - "sz": "large", - "tp": "undead" - }, - { - "n": "Taon", - "s": "SoT5", - "lv": 15, - "ac": 38, - "hp": 230, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Tarn Linnorm", - "s": "B1", - "lv": 20, - "ac": 46, - "hp": 400, - "pc": 35, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Tarrasque", - "s": "AoA6", - "lv": 25, - "ac": 54, - "hp": 540, - "pc": 48, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Tashlock Banyan", - "s": "EC4", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tatterthread", - "s": "SoT6", - "lv": 20, - "ac": 46, - "hp": 400, - "pc": 39, - "sz": "large", - "tp": "fey" - }, - { - "n": "Tattoo Guardian", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 8, - "sz": "small", - "tp": "construct" - }, - { - "n": "Tatzlwyrm", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "dragon" - }, - { - "n": "Taunting Skull", - "s": "BotD", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 13, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Tax Collector", - "s": "GMG", - "lv": -1, - "ac": 14, - "hp": 8, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Taxidermic Dog", - "s": "LTiBA", - "lv": 1, - "ac": 16, - "hp": 17, - "pc": 7, - "sz": "small", - "tp": "undead" - }, - { - "n": "Teacher", - "s": "GMG", - "lv": -1, - "ac": 12, - "hp": 5, - "pc": 4, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Temagyr", - "s": "GW1", - "lv": 1, - "ac": 16, - "hp": 25, - "pc": 9, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Tempest-Sun Mage", - "s": "LOCG", - "lv": 11, - "ac": 28, - "hp": 145, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tendriculos", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 15, - "sz": "huge", - "tp": "fungus" - }, - { - "n": "Tengu Sneak", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 27, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tenome", - "s": "AoE2", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Teraphant", - "s": "AoE2", - "lv": 9, - "ac": 27, - "hp": 175, - "pc": 18, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Terotricus", - "s": "B1", - "lv": 19, - "ac": 42, - "hp": 370, - "pc": 31, - "sz": "gargantuan", - "tp": "fungus" - }, - { - "n": "Terra-cotta Garrison", - "s": "B3", - "lv": 13, - "ac": 27, - "hp": 240, - "pc": 22, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "Terra-cotta Soldier", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 14, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Terror Bird", - "s": "B3", - "lv": 2, - "ac": 17, - "hp": 30, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Terror Shrike", - "s": "B3", - "lv": 4, - "ac": 20, - "hp": 60, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Terwa Chosen", - "s": "SoT3", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Terwa Prodigy", - "s": "SoT3", - "lv": 6, - "ac": 23, - "hp": 100, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Terwa Star Reader", - "s": "SoT3", - "lv": 7, - "ac": 24, - "hp": 115, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Teyam Ishtori", - "s": "AoA5", - "lv": 19, - "ac": 44, - "hp": 300, - "pc": 25, - "sz": "tiny", - "tp": "undead" - }, - { - "n": "Thanadaemon", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 270, - "pc": 26, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Thanatotic Titan", - "s": "B3", - "lv": 22, - "ac": 46, - "hp": 540, - "pc": 36, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Thanatotic Titan", - "s": "EC6", - "lv": 22, - "ac": 46, - "hp": 540, - "pc": 36, - "sz": "gargantuan", - "tp": "humanoid" - }, - { - "n": "Thasteron Khefak", - "s": "SoT5", - "lv": 3, - "ac": 19, - "hp": 42, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Thatchling", - "s": "SoG1", - "lv": 0, - "ac": 15, - "hp": 16, - "pc": 6, - "sz": "small", - "tp": "undead" - }, - { - "n": "The Amalgam", - "s": "FoP", - "lv": 4, - "ac": 20, - "hp": 65, - "pc": 11, - "sz": "large", - "tp": "aberration" - }, - { - "n": "The Bee-Man of Bellis", - "s": "WoW1", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "The Behemoth", - "s": "FoP", - "lv": 3, - "ac": 17, - "hp": 60, - "pc": 7, - "sz": "large", - "tp": "construct" - }, - { - "n": "The Betrayal", - "s": "SF3", - "lv": 20, - "ac": 45, - "hp": 360, - "pc": 33, - "sz": "medium", - "tp": "construct" - }, - { - "n": "The Bloodstorm", - "s": "LOHh", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 25, - "sz": "huge", - "tp": "" - }, - { - "n": "The Caterpillar Carriage", - "s": "LOTXWG", - "lv": 18, - "ac": 42, - "hp": 380, - "pc": 30, - "sz": "gargantuan", - "tp": "construct" - }, - { - "n": "The Chewer", - "s": "SoG2", - "lv": 6, - "ac": 24, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "The Claws of Time", - "s": "OoA2", - "lv": 10, - "ac": 30, - "hp": 150, - "pc": 21, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "The Great Flood", - "s": "LOTXWG", - "lv": 20, - "ac": 44, - "hp": 472, - "pc": 39, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "The Guests", - "s": "GW3", - "lv": 7, - "ac": 24, - "hp": 130, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "The Keeper", - "s": "SF3", - "lv": 21, - "ac": 47, - "hp": 385, - "pc": 36, - "sz": "medium", - "tp": "fey" - }, - { - "n": "The Looksee Man", - "s": "GW1", - "lv": 4, - "ac": 21, - "hp": 70, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "The Morrowkin", - "s": "DA", - "lv": 14, - "ac": 34, - "hp": 320, - "pc": 24, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "The Prince of Wolves", - "s": "SF2", - "lv": 19, - "ac": 42, - "hp": 400, - "pc": 32, - "sz": "medium", - "tp": "beast" - }, - { - "n": "The Rabbit Prince", - "s": "AoE4", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 31, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "The Sculptor", - "s": "FoP", - "lv": 4, - "ac": 21, - "hp": 54, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "The Shadow Prince", - "s": "SF2", - "lv": 11, - "ac": 30, - "hp": 200, - "pc": 18, - "sz": "large", - "tp": "" - }, - { - "n": "The Stabbing Beast", - "s": "AoE4", - "lv": 15, - "ac": 38, - "hp": 275, - "pc": 27, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "The Vanish Man", - "s": "EC4", - "lv": 16, - "ac": 39, - "hp": 265, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Thea", - "s": "AoA4", - "lv": 11, - "ac": 32, - "hp": 195, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Theiltemar", - "s": "Rust", - "lv": 4, - "ac": 20, - "hp": 50, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Theletos", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 18, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Thessekka", - "s": "EC3", - "lv": 14, - "ac": 35, - "hp": 255, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Thiarvo the Quick", - "s": "SoT3", - "lv": 9, - "ac": 28, - "hp": 150, - "pc": 20, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Thorn Guardian", - "s": "SoT6", - "lv": 16, - "ac": 39, - "hp": 330, - "pc": 27, - "sz": "small", - "tp": "construct" - }, - { - "n": "Thrailorn", - "s": "WoW2", - "lv": 6, - "ac": 22, - "hp": 99, - "pc": 12, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Thrasfyr", - "s": "B2", - "lv": 17, - "ac": 40, - "hp": 350, - "pc": 31, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Three-toed Sloth", - "s": "B3", - "lv": -1, - "ac": 14, - "hp": 10, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Thulgant", - "s": "B2", - "lv": 18, - "ac": 42, - "hp": 305, - "pc": 30, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Thunderbird", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 200, - "pc": 22, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Tick Swarm", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 130, - "pc": 18, - "sz": "large", - "tp": "animal" - }, - { - "n": "Ticktock", - "s": "SF2", - "lv": 16, - "ac": 40, - "hp": 275, - "pc": 27, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Tidal Master", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Tiddalik", - "s": "B3", - "lv": 7, - "ac": 22, - "hp": 155, - "pc": 15, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Tidehawk", - "s": "B3", - "lv": 12, - "ac": 32, - "hp": 213, - "pc": 24, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Tiderunner Aquamancer", - "s": "AoE5", - "lv": 13, - "ac": 34, - "hp": 190, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tiefling Adept", - "s": "B1", - "lv": 3, - "ac": 17, - "hp": 29, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tiger", - "s": "B1", - "lv": 4, - "ac": 21, - "hp": 60, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Tikbalang", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 197, - "pc": 16, - "sz": "large", - "tp": "beast" - }, - { - "n": "Timberweb", - "s": "WoW3", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 25, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Tino", - "s": "FRP1", - "lv": 9, - "ac": 28, - "hp": 150, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tino Tung", - "s": "FRP2", - "lv": 13, - "ac": 33, - "hp": 240, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Titan Centipede", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 18, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Tixitog", - "s": "AoA1", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 9, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Tollvych", - "s": "SoT5", - "lv": 15, - "ac": 33, - "hp": 200, - "pc": 26, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Tolokand", - "s": "B3", - "lv": 15, - "ac": 36, - "hp": 245, - "pc": 27, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Tomb Giant", - "s": "B3", - "lv": 12, - "ac": 32, - "hp": 255, - "pc": 25, - "sz": "large", - "tp": "giant" - }, - { - "n": "Tomb Raider", - "s": "GMG", - "lv": 5, - "ac": 21, - "hp": 75, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tonla", - "s": "AoE3", - "lv": 9, - "ac": 27, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tooth Fairy", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Tooth Fairy Swarm", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 28, - "pc": 8, - "sz": "large", - "tp": "fey" - }, - { - "n": "Tor Linnorm", - "s": "B1", - "lv": 21, - "ac": 47, - "hp": 440, - "pc": 37, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Torchbearer", - "s": "GMG", - "lv": 0, - "ac": 15, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tormented", - "s": "BotD", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 27, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Torn Quartet", - "s": "LOSK", - "lv": 13, - "ac": 33, - "hp": 240, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Toshigami", - "s": "B3", - "lv": 15, - "ac": 35, - "hp": 370, - "pc": 30, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Totenmaske", - "s": "B2", - "lv": 7, - "ac": 25, - "hp": 128, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Tracker", - "s": "GMG", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Trailgaunt", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Trapjaw Tangle", - "s": "OoA2", - "lv": 5, - "ac": 22, - "hp": 58, - "pc": 11, - "sz": "large", - "tp": "construct" - }, - { - "n": "Tree Fisher", - "s": "GW1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Treerazer", - "s": "B1", - "lv": 25, - "ac": 54, - "hp": 550, - "pc": 46, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Trexima Butoi", - "s": "SF2", - "lv": 16, - "ac": 37, - "hp": 290, - "pc": 26, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Triceratops", - "s": "B1", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 16, - "sz": "huge", - "tp": "animal" - }, - { - "n": "Trilobite", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 8, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Trilobite Swarm", - "s": "B3", - "lv": 3, - "ac": 18, - "hp": 30, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Triton", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Triumph Siktempora", - "s": "B3", - "lv": 14, - "ac": 35, - "hp": 190, - "pc": 24, - "sz": "small", - "tp": "time" - }, - { - "n": "Troff Frostknuckles", - "s": "FRP2", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Troll", - "s": "B1", - "lv": 5, - "ac": 20, - "hp": 115, - "pc": 11, - "sz": "large", - "tp": "giant" - }, - { - "n": "Troll", - "s": "BB", - "lv": 5, - "ac": 20, - "hp": 115, - "pc": 11, - "sz": "large", - "tp": "giant" - }, - { - "n": "Troll King", - "s": "B1", - "lv": 10, - "ac": 28, - "hp": 220, - "pc": 19, - "sz": "large", - "tp": "giant" - }, - { - "n": "Trollhound", - "s": "B2", - "lv": 3, - "ac": 17, - "hp": 65, - "pc": 6, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Troubadour", - "s": "GMG", - "lv": 3, - "ac": 19, - "hp": 38, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Trumpet Archon", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 285, - "pc": 26, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Trygve", - "s": "Rust", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Tumblak", - "s": "NGD", - "lv": 18, - "ac": 42, - "hp": 305, - "pc": 33, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Tupilaq", - "s": "B3", - "lv": 7, - "ac": 26, - "hp": 87, - "pc": 16, - "sz": "small", - "tp": "construct" - }, - { - "n": "Twigjack", - "s": "B2", - "lv": 3, - "ac": 19, - "hp": 50, - "pc": 9, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Twigjack Bramble", - "s": "WoW1", - "lv": 6, - "ac": 24, - "hp": 102, - "pc": 14, - "sz": "gargantuan", - "tp": "fey" - }, - { - "n": "Twisted Jack", - "s": "AoE5", - "lv": 17, - "ac": 41, - "hp": 240, - "pc": 32, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Two-headed Troll", - "s": "B2", - "lv": 8, - "ac": 24, - "hp": 190, - "pc": 18, - "sz": "large", - "tp": "giant" - }, - { - "n": "Tylosaurus", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 137, - "pc": 18, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Tyrannosaurus", - "s": "B1", - "lv": 10, - "ac": 29, - "hp": 180, - "pc": 19, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Tyrannosaurus Imperator", - "s": "FRP1", - "lv": 14, - "ac": 35, - "hp": 260, - "pc": 25, - "sz": "gargantuan", - "tp": "animal" - }, - { - "n": "Tyrannosaurus Skeleton", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 140, - "pc": 17, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Tyrroicese", - "s": "AoE2", - "lv": 10, - "ac": 27, - "hp": 320, - "pc": 16, - "sz": "large", - "tp": "construct" - }, - { - "n": "Tzitzimitl", - "s": "B3", - "lv": 19, - "ac": 43, - "hp": 390, - "pc": 32, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Ugvashi", - "s": "LOIL", - "lv": 3, - "ac": 19, - "hp": 40, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Ulressia the Blessed", - "s": "AoE6", - "lv": 19, - "ac": 42, - "hp": 355, - "pc": 35, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Ulthadar", - "s": "EC2", - "lv": 8, - "ac": 24, - "hp": 95, - "pc": 20, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Umasi", - "s": "B3", - "lv": 6, - "ac": 23, - "hp": 99, - "pc": 12, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Umbasi", - "s": "FRP2", - "lv": 13, - "ac": 33, - "hp": 190, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Umbo", - "s": "SoT1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 8, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Umonlee", - "s": "B2", - "lv": 15, - "ac": 39, - "hp": 320, - "pc": 25, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Unaasi", - "s": "WoW2", - "lv": 11, - "ac": 28, - "hp": 160, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Undead Brain Collector", - "s": "Mal", - "lv": 7, - "ac": 24, - "hp": 130, - "pc": 17, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Undead Murder", - "s": "CotT", - "lv": 3, - "ac": 18, - "hp": 32, - "pc": 12, - "sz": "large", - "tp": "undead" - }, - { - "n": "Undine Hydromancer", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 15, - "pc": 5, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Unicorn", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 13, - "sz": "large", - "tp": "beast" - }, - { - "n": "Uniila", - "s": "SF1", - "lv": 10, - "ac": 30, - "hp": 155, - "pc": 21, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Unrisen", - "s": "BotD", - "lv": 11, - "ac": 28, - "hp": 220, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Unseen Servant", - "s": "CRB", - "lv": -1, - "ac": 13, - "hp": 4, - "pc": 0, - "sz": "medium", - "tp": "" - }, - { - "n": "Unshadowed Anchor Root", - "s": "SoT6", - "lv": 18, - "ac": 39, - "hp": 270, - "pc": 33, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Unshadowed Haibram", - "s": "SoT6", - "lv": 18, - "ac": 41, - "hp": 330, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Unshadowed Koride", - "s": "SoT6", - "lv": 19, - "ac": 40, - "hp": 290, - "pc": 33, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Unshadowed Mariama", - "s": "SoT6", - "lv": 18, - "ac": 39, - "hp": 270, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Unshadowed Okoro", - "s": "SoT6", - "lv": 18, - "ac": 39, - "hp": 270, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urbel", - "s": "SoT1", - "lv": 4, - "ac": 21, - "hp": 68, - "pc": 8, - "sz": "small", - "tp": "fey" - }, - { - "n": "Urchin", - "s": "GMG", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 3, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Urdefhan Blood Mage", - "s": "AV3", - "lv": 8, - "ac": 26, - "hp": 140, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Death Scout", - "s": "AV3", - "lv": 6, - "ac": 24, - "hp": 92, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Dominator", - "s": "EC5", - "lv": 14, - "ac": 35, - "hp": 250, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan High Tormentor", - "s": "EC5", - "lv": 10, - "ac": 30, - "hp": 195, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Hunter", - "s": "EC5", - "lv": 12, - "ac": 34, - "hp": 190, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Lasher", - "s": "AV3", - "lv": 7, - "ac": 24, - "hp": 120, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Tormentor", - "s": "B2", - "lv": 5, - "ac": 21, - "hp": 77, - "pc": 13, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urdefhan Warrior", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urevian", - "s": "AV2", - "lv": 9, - "ac": 28, - "hp": 135, - "pc": 19, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Uri Zandivar", - "s": "AoA5", - "lv": 19, - "ac": 43, - "hp": 350, - "pc": 35, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urnak Lostwind", - "s": "FRP2", - "lv": 14, - "ac": 34, - "hp": 310, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Urveth", - "s": "BotD", - "lv": 18, - "ac": 40, - "hp": 460, - "pc": 32, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Usij Cultist", - "s": "TEC", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Usilket", - "s": "SF2", - "lv": 13, - "ac": 34, - "hp": 238, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Uthul", - "s": "B1", - "lv": 14, - "ac": 36, - "hp": 250, - "pc": 20, - "sz": "huge", - "tp": "elemental" - }, - { - "n": "Vaklish", - "s": "AoA3", - "lv": 12, - "ac": 33, - "hp": 185, - "pc": 22, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Valkyrie", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 22, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Vampire Bat Swarm", - "s": "B1", - "lv": 1, - "ac": 15, - "hp": 11, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Vampire Count", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 65, - "pc": 17, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vampire Mastermind", - "s": "B1", - "lv": 9, - "ac": 27, - "hp": 115, - "pc": 20, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vampire Spawn Rogue", - "s": "B1", - "lv": 4, - "ac": 22, - "hp": 40, - "pc": 12, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vampire Squid", - "s": "B2", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 7, - "sz": "small", - "tp": "animal" - }, - { - "n": "Vampiric Mist", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 35, - "pc": 9, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Vanara Disciple", - "s": "B3", - "lv": 1, - "ac": 19, - "hp": 16, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vanth", - "s": "B2", - "lv": 7, - "ac": 27, - "hp": 105, - "pc": 15, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Vanyver", - "s": "BotD", - "lv": 13, - "ac": 34, - "hp": 295, - "pc": 26, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Vargouille", - "s": "AoE1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 11, - "sz": "small", - "tp": "beast" - }, - { - "n": "Vaspercham", - "s": "B2", - "lv": 17, - "ac": 41, - "hp": 335, - "pc": 30, - "sz": "huge", - "tp": "aberration" - }, - { - "n": "Vaultbreaker Ooze", - "s": "AoE2", - "lv": 6, - "ac": 13, - "hp": 150, - "pc": 10, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Vavakia", - "s": "EC6", - "lv": 18, - "ac": 42, - "hp": 350, - "pc": 32, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Vazgorlu", - "s": "AoA6", - "lv": 20, - "ac": 45, - "hp": 380, - "pc": 33, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Vehanezhad", - "s": "SF2", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 32, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Veiled Master", - "s": "B1", - "lv": 14, - "ac": 34, - "hp": 270, - "pc": 25, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Veksciralenix", - "s": "AoE6", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 36, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Velberi Jallist", - "s": "AoE4", - "lv": 14, - "ac": 36, - "hp": 240, - "pc": 29, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Velociraptor", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Veranallia", - "s": "B2", - "lv": 20, - "ac": 45, - "hp": 475, - "pc": 38, - "sz": "medium", - "tp": "celestial" - }, - { - "n": "Verdurous Ooze", - "s": "B2", - "lv": 6, - "ac": 12, - "hp": 157, - "pc": 8, - "sz": "medium", - "tp": "ooze" - }, - { - "n": "Vermlek", - "s": "EC1", - "lv": 3, - "ac": 16, - "hp": 55, - "pc": 8, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Very Drunken Jinkin", - "s": "SoG1", - "lv": -1, - "ac": 12, - "hp": 9, - "pc": 0, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Veshumirix", - "s": "AoA4", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 28, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Vetalarana Emergent", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vetalarana Manipulator", - "s": "BotD", - "lv": 11, - "ac": 28, - "hp": 140, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Veteran Reclaimer", - "s": "LOCG", - "lv": 11, - "ac": 29, - "hp": 195, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vewslog", - "s": "OoA3", - "lv": 9, - "ac": 28, - "hp": 161, - "pc": 18, - "sz": "large", - "tp": "giant" - }, - { - "n": "Vexgit", - "s": "B2", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 6, - "sz": "tiny", - "tp": "fey" - }, - { - "n": "Vharnev the Butcher", - "s": "SF1", - "lv": 10, - "ac": 29, - "hp": 180, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Viktor Volkano", - "s": "EC1", - "lv": 2, - "ac": 16, - "hp": 40, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vilderavn", - "s": "B3", - "lv": 16, - "ac": 40, - "hp": 300, - "pc": 28, - "sz": "medium", - "tp": "fey" - }, - { - "n": "Vilree", - "s": "FoP", - "lv": 5, - "ac": 22, - "hp": 68, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vincuvicar", - "s": "SF2", - "lv": 18, - "ac": 42, - "hp": 333, - "pc": 32, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Vine Lasher", - "s": "FoP", - "lv": 0, - "ac": 16, - "hp": 15, - "pc": 4, - "sz": "small", - "tp": "plant" - }, - { - "n": "Vine Leshy", - "s": "B3", - "lv": 0, - "ac": 15, - "hp": 13, - "pc": 6, - "sz": "small", - "tp": "plant" - }, - { - "n": "Violet", - "s": "EC1", - "lv": 1, - "ac": 16, - "hp": 24, - "pc": 6, - "sz": "small", - "tp": "animal" - }, - { - "n": "Violet Fungus", - "s": "B2", - "lv": 3, - "ac": 17, - "hp": 60, - "pc": 8, - "sz": "medium", - "tp": "fungus" - }, - { - "n": "Viper", - "s": "B1", - "lv": -1, - "ac": 15, - "hp": 8, - "pc": 5, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Viper Swarm", - "s": "B3", - "lv": 4, - "ac": 18, - "hp": 50, - "pc": 12, - "sz": "large", - "tp": "animal" - }, - { - "n": "Viper Vine", - "s": "B2", - "lv": 13, - "ac": 33, - "hp": 270, - "pc": 22, - "sz": "large", - "tp": "plant" - }, - { - "n": "Virtuous Defender", - "s": "LOCG", - "lv": 4, - "ac": 22, - "hp": 70, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vischari", - "s": "AV2", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vishkanya Infiltrator", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Viskithrel", - "s": "EC6", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 27, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Vitalia", - "s": "EC5", - "lv": 18, - "ac": 39, - "hp": 425, - "pc": 30, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Vloriak", - "s": "Rust", - "lv": 5, - "ac": 21, - "hp": 90, - "pc": 13, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Vlorian Cythnigot", - "s": "Rust", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 9, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Void Zombie", - "s": "B2", - "lv": 1, - "ac": 13, - "hp": 26, - "pc": 3, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Voidbracken Chuul", - "s": "AV3", - "lv": 9, - "ac": 31, - "hp": 140, - "pc": 18, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Voidglutton", - "s": "AV1", - "lv": 8, - "ac": 30, - "hp": 90, - "pc": 18, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Voidworm", - "s": "B1", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 4, - "sz": "tiny", - "tp": "monitor" - }, - { - "n": "Volluk Azrinae", - "s": "AV1", - "lv": 7, - "ac": 25, - "hp": 85, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Voricose", - "s": "SF2", - "lv": 15, - "ac": 37, - "hp": 275, - "pc": 28, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Vorvorak", - "s": "LOSK", - "lv": 10, - "ac": 29, - "hp": 200, - "pc": 19, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Voz Lirayne", - "s": "AoA1", - "lv": 5, - "ac": 20, - "hp": 56, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Vrock", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 185, - "pc": 18, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Vrolikai", - "s": "B2", - "lv": 19, - "ac": 44, - "hp": 375, - "pc": 33, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Vrykolakas Ancient", - "s": "B2", - "lv": 13, - "ac": 34, - "hp": 250, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vrykolakas Master", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 190, - "pc": 19, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vrykolakas Spawn", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 99, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Vulpinal", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 15, - "sz": "small", - "tp": "celestial" - }, - { - "n": "Walcofinde", - "s": "LOSK", - "lv": 2, - "ac": 17, - "hp": 35, - "pc": 5, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Waldgeist", - "s": "BotD", - "lv": 8, - "ac": 26, - "hp": 100, - "pc": 18, - "sz": "small", - "tp": "spirit" - }, - { - "n": "War Horse", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 36, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "War Pony", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 5, - "sz": "medium", - "tp": "animal" - }, - { - "n": "War Sauropelta", - "s": "EC4", - "lv": 12, - "ac": 34, - "hp": 220, - "pc": 23, - "sz": "large", - "tp": "animal" - }, - { - "n": "Warbal Bumblebrasher", - "s": "AoA1", - "lv": 1, - "ac": 15, - "hp": 20, - "pc": 3, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Warden", - "s": "GMG", - "lv": 6, - "ac": 25, - "hp": 96, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Warg", - "s": "B1", - "lv": 2, - "ac": 17, - "hp": 36, - "pc": 8, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Warsworn", - "s": "B1", - "lv": 16, - "ac": 37, - "hp": 350, - "pc": 27, - "sz": "gargantuan", - "tp": "undead" - }, - { - "n": "Washboard Dog Tough", - "s": "AoE3", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Wasp Swarm", - "s": "B1", - "lv": 4, - "ac": 18, - "hp": 45, - "pc": 10, - "sz": "large", - "tp": "animal" - }, - { - "n": "Watch Officer", - "s": "GMG", - "lv": 3, - "ac": 20, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Watchtower Poltergeist", - "s": "FRP1", - "lv": 14, - "ac": 36, - "hp": 190, - "pc": 24, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Watchtower Shadow", - "s": "FRP1", - "lv": 15, - "ac": 36, - "hp": 190, - "pc": 25, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Watchtower Wraith", - "s": "FRP1", - "lv": 16, - "ac": 39, - "hp": 285, - "pc": 28, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Water Mephit", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 20, - "pc": 3, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Water Orm", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 170, - "pc": 21, - "sz": "huge", - "tp": "beast" - }, - { - "n": "Water Wisp", - "s": "B3", - "lv": 0, - "ac": 14, - "hp": 20, - "pc": 6, - "sz": "tiny", - "tp": "elemental" - }, - { - "n": "Water Yai", - "s": "B2", - "lv": 17, - "ac": 40, - "hp": 295, - "pc": 32, - "sz": "huge", - "tp": "fiend" - }, - { - "n": "Wayang Whisperblade", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 19, - "pc": 9, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Weapon Master", - "s": "FRP1", - "lv": 13, - "ac": 33, - "hp": 250, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Weasel", - "s": "B3", - "lv": -1, - "ac": 15, - "hp": 7, - "pc": 4, - "sz": "tiny", - "tp": "animal" - }, - { - "n": "Web Lurker", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Web Lurker", - "s": "BB", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 10, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Wemmuth", - "s": "B1", - "lv": 15, - "ac": 37, - "hp": 335, - "pc": 25, - "sz": "huge", - "tp": "plant" - }, - { - "n": "Wendigo", - "s": "B1", - "lv": 17, - "ac": 40, - "hp": 315, - "pc": 32, - "sz": "large", - "tp": "beast" - }, - { - "n": "Wereant Disciple", - "s": "SoT6", - "lv": 16, - "ac": 39, - "hp": 305, - "pc": 28, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Wereant Poisoner", - "s": "SoT6", - "lv": 17, - "ac": 40, - "hp": 350, - "pc": 29, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Wereant Sentinel", - "s": "SoT6", - "lv": 19, - "ac": 43, - "hp": 400, - "pc": 32, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Werebat", - "s": "B3", - "lv": 2, - "ac": 18, - "hp": 35, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Werebear", - "s": "B1", - "lv": 4, - "ac": 23, - "hp": 75, - "pc": 11, - "sz": "large", - "tp": "beast" - }, - { - "n": "Wereboar", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Werecrocodile", - "s": "B3", - "lv": 2, - "ac": 16, - "hp": 55, - "pc": 7, - "sz": "large", - "tp": "beast" - }, - { - "n": "Wererat", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Weretiger", - "s": "B2", - "lv": 4, - "ac": 21, - "hp": 75, - "pc": 11, - "sz": "large", - "tp": "beast" - }, - { - "n": "Werewolf", - "s": "B1", - "lv": 3, - "ac": 19, - "hp": 63, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Wight", - "s": "B1", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wight", - "s": "BB", - "lv": 3, - "ac": 18, - "hp": 50, - "pc": 10, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wight Commander", - "s": "BotD", - "lv": 12, - "ac": 32, - "hp": 220, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wight Cultist", - "s": "EC4", - "lv": 12, - "ac": 32, - "hp": 235, - "pc": 22, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wihsaak", - "s": "B3", - "lv": 6, - "ac": 24, - "hp": 105, - "pc": 14, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Wildwood Sentry", - "s": "WoW3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 20, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Will-o'-wisp", - "s": "B1", - "lv": 6, - "ac": 27, - "hp": 50, - "pc": 16, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Willowshore Waldgeist", - "s": "SoG3", - "lv": 7, - "ac": 24, - "hp": 88, - "pc": 16, - "sz": "large", - "tp": "spirit" - }, - { - "n": "Winter Hag", - "s": "B3", - "lv": 7, - "ac": 24, - "hp": 145, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Winter Wolf", - "s": "B1", - "lv": 5, - "ac": 23, - "hp": 70, - "pc": 14, - "sz": "large", - "tp": "beast" - }, - { - "n": "Wisteria Leshy", - "s": "AFoF", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 8, - "sz": "small", - "tp": "plant" - }, - { - "n": "Witchfire", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 125, - "pc": 18, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Witchwyrd", - "s": "B2", - "lv": 6, - "ac": 22, - "hp": 110, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Withered", - "s": "BotD", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 11, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wizard Sponge", - "s": "B3", - "lv": 5, - "ac": 20, - "hp": 65, - "pc": 10, - "sz": "large", - "tp": "fungus" - }, - { - "n": "Wolf", - "s": "B1", - "lv": 1, - "ac": 15, - "hp": 24, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Wolf", - "s": "BB", - "lv": 1, - "ac": 15, - "hp": 24, - "pc": 7, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Wolf Skeleton", - "s": "BotD", - "lv": 0, - "ac": 16, - "hp": 12, - "pc": 8, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wolliped", - "s": "B3", - "lv": 3, - "ac": 19, - "hp": 55, - "pc": 9, - "sz": "large", - "tp": "animal" - }, - { - "n": "Wolverine", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 34, - "pc": 8, - "sz": "medium", - "tp": "animal" - }, - { - "n": "Wood Giant", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 120, - "pc": 15, - "sz": "large", - "tp": "giant" - }, - { - "n": "Wood Golem", - "s": "B2", - "lv": 6, - "ac": 23, - "hp": 95, - "pc": 12, - "sz": "medium", - "tp": "construct" - }, - { - "n": "Woodweave Caterpillar", - "s": "WoW3", - "lv": 12, - "ac": 33, - "hp": 255, - "pc": 22, - "sz": "large", - "tp": "animal" - }, - { - "n": "Woolly Rhinoceros", - "s": "B2", - "lv": 6, - "ac": 25, - "hp": 100, - "pc": 11, - "sz": "large", - "tp": "animal" - }, - { - "n": "Worknesh", - "s": "SoT4", - "lv": 16, - "ac": 37, - "hp": 310, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Worm Prophet", - "s": "NGD", - "lv": 18, - "ac": 42, - "hp": 335, - "pc": 28, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Worm That Walks Cultist", - "s": "B2", - "lv": 14, - "ac": 36, - "hp": 200, - "pc": 25, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Wraith", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 80, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Wraithvine", - "s": "WoW1", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 15, - "sz": "huge", - "tp": "fungus" - }, - { - "n": "Wrath Riot", - "s": "SF2", - "lv": 16, - "ac": 39, - "hp": 300, - "pc": 28, - "sz": "gargantuan", - "tp": "fiend" - }, - { - "n": "Wrent Dicaspiron", - "s": "AoE2", - "lv": 10, - "ac": 30, - "hp": 180, - "pc": 22, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Wrin Sivinxi", - "s": "AV1", - "lv": 5, - "ac": 20, - "hp": 75, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Wynsal Starborn", - "s": "AoE4", - "lv": 17, - "ac": 38, - "hp": 340, - "pc": 32, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Wyrmwraith", - "s": "B3", - "lv": 17, - "ac": 39, - "hp": 280, - "pc": 29, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Wyrmwraith", - "s": "CotT", - "lv": 17, - "ac": 39, - "hp": 280, - "pc": 29, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Wyrwood Sneak", - "s": "B3", - "lv": 1, - "ac": 17, - "hp": 16, - "pc": 6, - "sz": "small", - "tp": "construct" - }, - { - "n": "Wyvern", - "s": "B1", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 13, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Xarwin's Manifestation", - "s": "Mal", - "lv": 7, - "ac": 24, - "hp": 90, - "pc": 14, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Xevalorg", - "s": "AoA4", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 26, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Xill", - "s": "B2", - "lv": 6, - "ac": 24, - "hp": 100, - "pc": 15, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Xilvirek", - "s": "EC4", - "lv": 12, - "ac": 34, - "hp": 215, - "pc": 23, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Ximtal", - "s": "B3", - "lv": 17, - "ac": 39, - "hp": 380, - "pc": 30, - "sz": "large", - "tp": "fiend" - }, - { - "n": "Xin Yue", - "s": "SoG2", - "lv": 7, - "ac": 25, - "hp": 90, - "pc": 15, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Xiuh Couatl", - "s": "B3", - "lv": 12, - "ac": 33, - "hp": 220, - "pc": 23, - "sz": "large", - "tp": "beast" - }, - { - "n": "Xiuli Cachu", - "s": "SF2", - "lv": 13, - "ac": 34, - "hp": 235, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xorn", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "elemental" - }, - { - "n": "Xotani", - "s": "AoA6", - "lv": 20, - "ac": 48, - "hp": 385, - "pc": 39, - "sz": "gargantuan", - "tp": "beast" - }, - { - "n": "Xotanispawn", - "s": "AoA5", - "lv": 17, - "ac": 40, - "hp": 340, - "pc": 29, - "sz": "large", - "tp": "animal" - }, - { - "n": "Xulgath Bilebearer", - "s": "EC1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Bomber", - "s": "EC3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Boss", - "s": "BB", - "lv": 3, - "ac": 20, - "hp": 44, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Deepmouth", - "s": "EC5", - "lv": 12, - "ac": 33, - "hp": 215, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Gutrager", - "s": "EC4", - "lv": 10, - "ac": 28, - "hp": 190, - "pc": 19, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Hardscale", - "s": "EC4", - "lv": 12, - "ac": 32, - "hp": 215, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Herd-tender", - "s": "EC4", - "lv": 8, - "ac": 27, - "hp": 135, - "pc": 17, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Leader", - "s": "B1", - "lv": 3, - "ac": 20, - "hp": 44, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Roughrider", - "s": "EC4", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Skirmisher", - "s": "EC3", - "lv": 6, - "ac": 24, - "hp": 95, - "pc": 15, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Skulker", - "s": "B1", - "lv": 2, - "ac": 19, - "hp": 28, - "pc": 7, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Spinesnapper", - "s": "EC2", - "lv": 5, - "ac": 21, - "hp": 95, - "pc": 11, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Xulgath Stoneliege", - "s": "EC3", - "lv": 8, - "ac": 26, - "hp": 135, - "pc": 14, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Thoughtmaw", - "s": "EC6", - "lv": 15, - "ac": 36, - "hp": 280, - "pc": 30, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Warrior", - "s": "B1", - "lv": 1, - "ac": 16, - "hp": 21, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Xulgath Warrior", - "s": "BB", - "lv": 1, - "ac": 16, - "hp": 21, - "pc": 6, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yaashka", - "s": "EC2", - "lv": 5, - "ac": 22, - "hp": 80, - "pc": 11, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yabin the Just", - "s": "FRP1", - "lv": 9, - "ac": 27, - "hp": 130, - "pc": 18, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yabin the Just", - "s": "FRP2", - "lv": 13, - "ac": 33, - "hp": 175, - "pc": 23, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yaganty", - "s": "EC3", - "lv": 10, - "ac": 29, - "hp": 200, - "pc": 20, - "sz": "large", - "tp": "fey" - }, - { - "n": "Yaiafineti", - "s": "GW3", - "lv": 8, - "ac": 24, - "hp": 170, - "pc": 16, - "sz": "large", - "tp": "plant" - }, - { - "n": "Yamaraj", - "s": "B2", - "lv": 20, - "ac": 45, - "hp": 375, - "pc": 37, - "sz": "huge", - "tp": "monitor" - }, - { - "n": "Yarrika Mulandez", - "s": "FRP2", - "lv": 15, - "ac": 37, - "hp": 250, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yeast Ooze", - "s": "OoA1", - "lv": 2, - "ac": 12, - "hp": 60, - "pc": 6, - "sz": "large", - "tp": "ooze" - }, - { - "n": "Yellow Musk Brute", - "s": "B2", - "lv": 2, - "ac": 15, - "hp": 45, - "pc": 4, - "sz": "large", - "tp": "plant" - }, - { - "n": "Yellow Musk Creeper", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 34, - "pc": 4, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Yellow Musk Thrall", - "s": "B2", - "lv": -1, - "ac": 14, - "hp": 12, - "pc": 0, - "sz": "medium", - "tp": "plant" - }, - { - "n": "Yeongno", - "s": "LOTXWG", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 17, - "sz": "large", - "tp": "celestial" - }, - { - "n": "Yeth Hound", - "s": "B2", - "lv": 3, - "ac": 18, - "hp": 55, - "pc": 9, - "sz": "medium", - "tp": "beast" - }, - { - "n": "Yeti", - "s": "B1", - "lv": 5, - "ac": 21, - "hp": 115, - "pc": 15, - "sz": "large", - "tp": "humanoid" - }, - { - "n": "Yianyin", - "s": "Mal", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 16, - "sz": "medium", - "tp": "monitor" - }, - { - "n": "Yithian", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 112, - "pc": 21, - "sz": "large", - "tp": "aberration" - }, - { - "n": "Yniesse Zenderholm", - "s": "SaS", - "lv": 7, - "ac": 25, - "hp": 120, - "pc": 16, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yoh Souran", - "s": "FRP3", - "lv": 15, - "ac": 38, - "hp": 265, - "pc": 25, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Yonsuu", - "s": "SoT3", - "lv": 11, - "ac": 31, - "hp": 200, - "pc": 21, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Young Black Dragon", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 15, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Blue Dragon", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 18, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Brass Dragon", - "s": "B1", - "lv": 7, - "ac": 25, - "hp": 125, - "pc": 15, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Brine Dragon", - "s": "B2", - "lv": 8, - "ac": 27, - "hp": 142, - "pc": 16, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Bronze Dragon", - "s": "B1", - "lv": 9, - "ac": 28, - "hp": 170, - "pc": 18, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Cloud Dragon", - "s": "B2", - "lv": 10, - "ac": 30, - "hp": 175, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Copper Dragon", - "s": "B1", - "lv": 8, - "ac": 27, - "hp": 150, - "pc": 16, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Crystal Dragon", - "s": "B2", - "lv": 7, - "ac": 27, - "hp": 105, - "pc": 15, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Forest Dragon", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 195, - "pc": 18, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Gold Dragon", - "s": "B1", - "lv": 11, - "ac": 32, - "hp": 230, - "pc": 21, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Green Dragon", - "s": "B1", - "lv": 8, - "ac": 28, - "hp": 135, - "pc": 16, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Linnorm", - "s": "LOMM", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 38, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Magma Dragon", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 175, - "pc": 18, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Red Dragon", - "s": "B1", - "lv": 10, - "ac": 30, - "hp": 210, - "pc": 20, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Sea Dragon", - "s": "B3", - "lv": 8, - "ac": 27, - "hp": 140, - "pc": 15, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Silver Dragon", - "s": "B1", - "lv": 10, - "ac": 31, - "hp": 200, - "pc": 20, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Sky Dragon", - "s": "B3", - "lv": 9, - "ac": 28, - "hp": 155, - "pc": 19, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Sovereign Dragon", - "s": "B3", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Umbral Dragon", - "s": "B2", - "lv": 11, - "ac": 31, - "hp": 195, - "pc": 22, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young Underworld Dragon", - "s": "B3", - "lv": 7, - "ac": 25, - "hp": 115, - "pc": 13, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Young White Dragon", - "s": "B1", - "lv": 6, - "ac": 23, - "hp": 115, - "pc": 13, - "sz": "large", - "tp": "dragon" - }, - { - "n": "Yuni", - "s": "SoG2", - "lv": 7, - "ac": 23, - "hp": 82, - "pc": 15, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Yzobu", - "s": "B3", - "lv": 1, - "ac": 16, - "hp": 25, - "pc": 6, - "sz": "large", - "tp": "animal" - }, - { - "n": "Zaiox", - "s": "Rust", - "lv": 4, - "ac": 21, - "hp": 50, - "pc": 7, - "sz": "small", - "tp": "humanoid" - }, - { - "n": "Zaramuun", - "s": "B1", - "lv": 16, - "ac": 39, - "hp": 291, - "pc": 30, - "sz": "large", - "tp": "elemental" - }, - { - "n": "Zashathal Head-taker", - "s": "EC4", - "lv": 15, - "ac": 36, - "hp": 250, - "pc": 27, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Zeal-damned Ghoul", - "s": "AoE5", - "lv": 10, - "ac": 29, - "hp": 175, - "pc": 21, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zealborn", - "s": "AoE5", - "lv": 12, - "ac": 33, - "hp": 210, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zealot of Asmodeus", - "s": "GMG", - "lv": 4, - "ac": 22, - "hp": 58, - "pc": 9, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Zebub", - "s": "B2", - "lv": 3, - "ac": 20, - "hp": 30, - "pc": 12, - "sz": "small", - "tp": "fiend" - }, - { - "n": "Zelekhut", - "s": "B2", - "lv": 9, - "ac": 28, - "hp": 160, - "pc": 21, - "sz": "large", - "tp": "monitor" - }, - { - "n": "Zellara Esmeranda", - "s": "SF3", - "lv": 14, - "ac": 36, - "hp": 195, - "pc": 27, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Zephyr Guard", - "s": "AoA5", - "lv": 14, - "ac": 36, - "hp": 255, - "pc": 24, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Zephyr Hawk", - "s": "B1", - "lv": 3, - "ac": 21, - "hp": 36, - "pc": 7, - "sz": "small", - "tp": "elemental" - }, - { - "n": "Zetogeki", - "s": "B3", - "lv": 7, - "ac": 22, - "hp": 90, - "pc": 15, - "sz": "large", - "tp": "animal" - }, - { - "n": "Zhi Hui", - "s": "SoG2", - "lv": 7, - "ac": 23, - "hp": 85, - "pc": 18, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Zinba", - "s": "LOME", - "lv": 10, - "ac": 28, - "hp": 220, - "pc": 20, - "sz": "large", - "tp": "beast" - }, - { - "n": "Zinogyvaz", - "s": "EC5", - "lv": 16, - "ac": 39, - "hp": 240, - "pc": 28, - "sz": "large", - "tp": "undead" - }, - { - "n": "Zombie Bear", - "s": "CotT", - "lv": 3, - "ac": 17, - "hp": 75, - "pc": 8, - "sz": "large", - "tp": "undead" - }, - { - "n": "Zombie Brute", - "s": "B1", - "lv": 2, - "ac": 15, - "hp": 70, - "pc": 4, - "sz": "large", - "tp": "undead" - }, - { - "n": "Zombie Desecrators", - "s": "CotT", - "lv": 17, - "ac": 40, - "hp": 395, - "pc": 23, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zombie Dragon", - "s": "B3", - "lv": 9, - "ac": 27, - "hp": 210, - "pc": 16, - "sz": "huge", - "tp": "dragon" - }, - { - "n": "Zombie Hulk", - "s": "B1", - "lv": 6, - "ac": 21, - "hp": 160, - "pc": 8, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Zombie Lord", - "s": "BotD", - "lv": 4, - "ac": 20, - "hp": 80, - "pc": 13, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zombie Mammoth", - "s": "BotD", - "lv": 11, - "ac": 27, - "hp": 290, - "pc": 17, - "sz": "huge", - "tp": "undead" - }, - { - "n": "Zombie Owlbear", - "s": "BotD", - "lv": 3, - "ac": 16, - "hp": 85, - "pc": 8, - "sz": "large", - "tp": "undead" - }, - { - "n": "Zombie Shambler", - "s": "B1", - "lv": -1, - "ac": 12, - "hp": 20, - "pc": 0, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zombie Shambler", - "s": "BB", - "lv": -1, - "ac": 12, - "hp": 20, - "pc": 0, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zombie Snake", - "s": "BotD", - "lv": 0, - "ac": 13, - "hp": 35, - "pc": 2, - "sz": "medium", - "tp": "undead" - }, - { - "n": "Zomok", - "s": "B2", - "lv": 16, - "ac": 39, - "hp": 310, - "pc": 28, - "sz": "gargantuan", - "tp": "dragon" - }, - { - "n": "Zoudou the Zealous", - "s": "SoG1", - "lv": 3, - "ac": 19, - "hp": 45, - "pc": 8, - "sz": "medium", - "tp": "aberration" - }, - { - "n": "Zridi", - "s": "TEC", - "lv": 8, - "ac": 26, - "hp": 125, - "pc": 16, - "sz": "medium", - "tp": "fiend" - }, - { - "n": "Zrukbat", - "s": "AoE1", - "lv": 2, - "ac": 18, - "hp": 30, - "pc": 7, - "sz": "small", - "tp": "fey" - }, - { - "n": "Zuferian", - "s": "AoA4", - "lv": 15, - "ac": 36, - "hp": 265, - "pc": 26, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Zuipnyrn", - "s": "EC2", - "lv": 3, - "ac": 20, - "hp": 35, - "pc": 9, - "sz": "small", - "tp": "aberration" - }, - { - "n": "Zuishin", - "s": "B3", - "lv": 10, - "ac": 30, - "hp": 200, - "pc": 21, - "sz": "medium", - "tp": "spirit" - }, - { - "n": "Zunkri", - "s": "EC2", - "lv": 7, - "ac": 23, - "hp": 115, - "pc": 12, - "sz": "medium", - "tp": "humanoid" - }, - { - "n": "Zyss Serpentfolk", - "s": "B2", - "lv": 2, - "ac": 18, - "hp": 25, - "pc": 8, - "sz": "medium", - "tp": "humanoid" - } - ] -} +{"sources":{"abomination-vaults-bestiary":"Abomination Vaults","age-of-ashes-bestiary":"Age of Ashes","agents-of-edgewatch-bestiary":"Agents of Edgewatch","battlecry-bestiary":"Battlecry!","blog-bestiary":"Pathfinder Blog","blood-lords-bestiary":"Blood Lords","book-of-the-dead-bestiary":"Book of the Dead","claws-of-the-tyrant-bestiary":"Claws of the Tyrant","crown-of-the-kobold-king-bestiary":"Crown of the Kobold King","curtain-call-bestiary":"Curtain Call","extinction-curse-bestiary":"Extinction Curse","fall-of-plaguestone":"The Fall of Plaguestone","fists-of-the-ruby-phoenix-bestiary":"Fists of the Ruby Phoenix","gatewalkers-bestiary":"Gatewalkers","hellbreakers-bestiary":"Hellbreakers","howl-of-the-wild-bestiary":"Howl of the Wild","kingmaker-bestiary":"Kingmaker","lost-omens-bestiary":"Lost Omens","malevolence-bestiary":"Malevolence","menace-under-otari-bestiary":"Beginner Box","myth-speaker-bestiary":"Myth Speaker","night-of-the-gray-death-bestiary":"Night of the Gray Death","npc-gallery":"NPC Gallery","one-shot-bestiary":"One-Shots","outlaws-of-alkenstar-bestiary":"Outlaws of Alkenstar","pathfinder-dark-archive":"Dark Archive","pathfinder-monster-core":"Monster Core","pathfinder-monster-core-2":"Monster Core 2","pathfinder-npc-core":"NPC Core","prey-for-death-bestiary":"Prey for Death","quest-for-the-frozen-flame-bestiary":"Quest for the Frozen Flame","rage-of-elements-bestiary":"Rage of Elements","revenge-of-the-runelords-bestiary":"Revenge of the Runelords","rusthenge-bestiary":"Rusthenge","season-of-ghosts-bestiary":"Season of Ghosts","seven-dooms-for-sandpoint-bestiary":"Seven Dooms for Sandpoint","shades-of-blood-bestiary":"Shades of Blood","shadows-at-sundown-bestiary":"Shadows at Sundown","sky-kings-tomb-bestiary":"Sky King's Tomb","spore-war-bestiary":"Spore War","standalone-adventures":"Standalone Adventures","stolen-fate-bestiary":"Stolen Fate","strength-of-thousands-bestiary":"Strength of Thousands","the-enmity-cycle-bestiary":"The Enmity Cycle","the-slithering-bestiary":"The Slithering","triumph-of-the-tusk-bestiary":"Triumph of the Tusk","troubles-in-otari-bestiary":"Troubles in Otari","war-of-immortals-bestiary":"War of Immortals","wardens-of-wildwood-bestiary":"Wardens of Wildwood"},"creatures":[{"n":"\"Lucky\" Lanks","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":20,"hp":70,"pc":11,"sz":"small","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/lucky-lanks.json","li":"OGL"},{"n":"Aapoph Granitescale","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":120,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/aapoph-granitescale.json","li":"ORC"},{"n":"Aapoph Serpentfolk","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":60,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/aapoph-serpentfolk.json","li":"ORC"},{"n":"Abberton Ruffian","s":"extinction-curse-bestiary","lv":-1,"ac":13,"hp":8,"pc":4,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/abberton-ruffian.json","li":"OGL"},{"n":"Abbot of Abadar","s":"pathfinder-npc-core","lv":1,"ac":14,"hp":15,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/abbot-of-abadar.json","li":"ORC"},{"n":"Abbot Tsujon","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":44,"hp":350,"pc":33,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/abbot-tsujon.json","li":"OGL"},{"n":"Abendego Brute","s":"strength-of-thousands-bestiary","lv":8,"ac":27,"hp":135,"pc":15,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/abendego-brute.json","li":"OGL"},{"n":"Abendego Jailer","s":"strength-of-thousands-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/abendego-jailer.json","li":"OGL"},{"n":"Abendego Priest","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":175,"pc":22,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/abendego-priest.json","li":"OGL"},{"n":"Abridan Ashau","s":"shadows-at-sundown-bestiary","lv":10,"ac":28,"hp":190,"pc":18,"sz":"medium","tp":"humanoid","f":"shadows-at-sundown-bestiary/abridan-ashau.json","li":"OGL"},{"n":"Abrikandilu","s":"pathfinder-monster-core-2","lv":4,"ac":19,"hp":70,"pc":10,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/abrikandilu.json","li":"ORC"},{"n":"Abstalar Zantus","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":22,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/abstalar-zantus.json","li":"OGL"},{"n":"Abysium Horror","s":"rage-of-elements-bestiary","lv":10,"ac":29,"hp":215,"pc":17,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/abysium-horror.json","li":"OGL"},{"n":"Abysium Sentinel","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":333,"pc":30,"sz":"small","tp":"construct","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/abysium-sentinel.json","li":"ORC"},{"n":"Accursed Forge-Spurned","s":"age-of-ashes-bestiary","lv":15,"ac":37,"hp":285,"pc":26,"sz":"large","tp":"undead","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/accursed-forge-spurned.json","li":"OGL"},{"n":"Accuser Agent","s":"pathfinder-npc-core","lv":9,"ac":28,"hp":115,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/accuser-agent.json","li":"ORC"},{"n":"Acolyte of Iomedae","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":15,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/acolyte-of-iomedae.json","li":"ORC"},{"n":"Acolyte of Nethys","s":"npc-gallery","lv":1,"ac":15,"hp":16,"pc":7,"sz":"medium","tp":"humanoid","f":"npc-gallery/acolyte-of-nethys.json","li":"OGL"},{"n":"Acolyte of Pharasma","s":"shadows-at-sundown-bestiary","lv":1,"ac":15,"hp":16,"pc":7,"sz":"medium","tp":"humanoid","f":"shadows-at-sundown-bestiary/acolyte-of-pharasma.json","li":"OGL"},{"n":"Acrobat","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/acrobat.json","li":"ORC"},{"n":"Adamant Sentinel","s":"pathfinder-monster-core-2","lv":18,"ac":42,"hp":255,"pc":26,"sz":"huge","tp":"construct","f":"pathfinder-monster-core-2/adamant-sentinel.json","li":"ORC"},{"n":"Adamantine Archdragon","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/adamantine/adamantine-archdragon.json","li":"ORC"},{"n":"Adamantine Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/adamantine/adamantine-archdragon-spellcaster.json","li":"ORC"},{"n":"Adamantine Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":220,"pc":23,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Adamantine Dragon (Adult)","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":220,"pc":23,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-adult.json","li":"ORC"},{"n":"Adamantine Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":18,"ac":41,"hp":300,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Adamantine Dragon (Ancient)","s":"pathfinder-monster-core","lv":18,"ac":41,"hp":300,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-ancient.json","li":"ORC"},{"n":"Adamantine Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":140,"pc":17,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-young-spellcaster.json","li":"ORC"},{"n":"Adamantine Dragon (Young)","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":140,"pc":17,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/adamantine-dragon-young.json","li":"ORC"},{"n":"Adamantine Sentinel","s":"revenge-of-the-runelords-bestiary","lv":15,"ac":37,"hp":275,"pc":27,"sz":"small","tp":"construct","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/adamantine-sentinel.json","li":"ORC"},{"n":"Adept","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":8,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/adept.json","li":"ORC"},{"n":"Adimar Scarnetti","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":27,"hp":130,"pc":15,"sz":"medium","tp":"beast","f":"seven-dooms-for-sandpoint-bestiary/adimar-scarnetti.json","li":"OGL"},{"n":"Adiutor","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":72,"pc":13,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/adiutor.json","li":"ORC"},{"n":"Adjutant Hellknight Armiger","s":"hellbreakers-bestiary","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/adjutant-hellknight-armiger.json","li":"ORC"},{"n":"Adlet","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":180,"pc":18,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/adlet.json","li":"ORC"},{"n":"Adrivallo","s":"extinction-curse-bestiary","lv":10,"ac":28,"hp":210,"pc":16,"sz":"medium","tp":"fey","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/adrivallo.json","li":"OGL"},{"n":"Advisor","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":60,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/advisor.json","li":"ORC"},{"n":"Aecora Silverfire","s":"kingmaker-bestiary","lv":7,"ac":25,"hp":120,"pc":17,"sz":"large","tp":"beast","f":"kingmaker-bestiary/aecora-silverfire.json","li":"OGL"},{"n":"Aeolaeka","s":"blood-lords-bestiary","lv":12,"ac":33,"hp":250,"pc":23,"sz":"large","tp":"celestial","f":"blood-lords-bestiary/book-3-field-of-maidens/aeolaeka.json","li":"OGL"},{"n":"Aeolaeka","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":250,"pc":23,"sz":"large","tp":"celestial","f":"pathfinder-monster-core/aeolaeka.json","li":"ORC"},{"n":"Aeon Stone Swarm","s":"shades-of-blood-bestiary","lv":9,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"construct","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/aeon-stone-swarm.json","li":"ORC"},{"n":"Aesra","s":"pathfinder-monster-core","lv":7,"ac":27,"hp":100,"pc":15,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core/aesra.json","li":"ORC"},{"n":"Aethusa","s":"revenge-of-the-runelords-bestiary","lv":15,"ac":36,"hp":260,"pc":25,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/aethusa.json","li":"ORC"},{"n":"Afflicted Irnakurse","s":"abomination-vaults-bestiary","lv":8,"ac":28,"hp":152,"pc":18,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/afflicted-irnakurse.json","li":"OGL"},{"n":"Afziaka Brute","s":"blood-lords-bestiary","lv":6,"ac":23,"hp":120,"pc":12,"sz":"large","tp":"animal","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/afziaka-brute.json","li":"OGL"},{"n":"Afziaka Stalker","s":"blood-lords-bestiary","lv":12,"ac":32,"hp":250,"pc":22,"sz":"large","tp":"animal","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/afziaka-stalker.json","li":"OGL"},{"n":"Agadaz","s":"curtain-call-bestiary","lv":4,"ac":20,"hp":50,"pc":10,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/agadaz.json","li":"ORC"},{"n":"Agai","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/agai.json","li":"OGL"},{"n":"Agent of Taraksun","s":"prey-for-death-bestiary","lv":14,"ac":35,"hp":315,"pc":25,"sz":"large","tp":"fiend","f":"prey-for-death-bestiary/agent-of-taraksun.json","li":"ORC"},{"n":"Agent of the Gray Queen","s":"agents-of-edgewatch-bestiary","lv":19,"ac":43,"hp":290,"pc":32,"sz":"large","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/agent-of-the-gray-queen.json","li":"OGL"},{"n":"Aghash","s":"pathfinder-monster-core-2","lv":4,"ac":19,"hp":75,"pc":12,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/aghash.json","li":"ORC"},{"n":"Agile Warrior","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":35,"hp":180,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/agile-warrior.json","li":"OGL"},{"n":"Agile Warrior (Nightmares)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":35,"hp":180,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/agile-warrior-nightmares.json","li":"OGL"},{"n":"Agorron Guard","s":"blood-lords-bestiary","lv":15,"ac":36,"hp":340,"pc":29,"sz":"large","tp":"giant","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/agorron-guard.json","li":"OGL"},{"n":"Agradaemon","s":"agents-of-edgewatch-bestiary","lv":19,"ac":45,"hp":400,"pc":31,"sz":"gargantuan","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/agradaemon.json","li":"OGL"},{"n":"Agyra","s":"war-of-immortals-bestiary","lv":23,"ac":49,"hp":475,"pc":38,"sz":"gargantuan","tp":"beast","f":"war-of-immortals-bestiary/agyra.json","li":"ORC"},{"n":"Ahuizotl","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":105,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/ahuizotl.json","li":"ORC"},{"n":"Ahvothian","s":"the-slithering-bestiary","lv":7,"ac":25,"hp":160,"pc":18,"sz":"medium","tp":"fiend","f":"the-slithering-bestiary/ahvothian.json","li":"OGL"},{"n":"Aigamuxa","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":140,"pc":19,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/aigamuxa.json","li":"ORC"},{"n":"Ailuran","s":"blog-bestiary","lv":5,"ac":20,"hp":80,"pc":14,"sz":"small","tp":"fey","f":"blog-bestiary/ailuran.json","li":"OGL"},{"n":"Ainamuuren","s":"gatewalkers-bestiary","lv":12,"ac":32,"hp":215,"pc":23,"sz":"large","tp":"humanoid","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/ainamuuren.json","li":"ORC"},{"n":"Ainamuuren","s":"lost-omens-bestiary","lv":14,"ac":33,"hp":259,"pc":25,"sz":"large","tp":"humanoid","f":"lost-omens-bestiary/monsters-of-myth/ainamuuren.json","li":"OGL"},{"n":"Air Scamp","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":12,"pc":3,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/air-scamp.json","li":"ORC"},{"n":"Air Wisp","s":"pathfinder-monster-core-2","lv":0,"ac":16,"hp":12,"pc":6,"sz":"tiny","tp":"elemental","f":"pathfinder-monster-core-2/air-wisp.json","li":"ORC"},{"n":"Aiudara Wraith","s":"age-of-ashes-bestiary","lv":18,"ac":45,"hp":300,"pc":33,"sz":"medium","tp":"astral","f":"age-of-ashes-bestiary/book-6-broken-promises/aiudara-wraith.json","li":"OGL"},{"n":"Aiuvarin Elementalist","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":20,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/aiuvarin-elementalist.json","li":"ORC"},{"n":"Aiuvarin Translator","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":12,"pc":5,"sz":"medium","tp":"","f":"pathfinder-npc-core/ancestry-npcs/elf/aiuvarin-translator.json","li":"ORC"},{"n":"Aives The Smoke Dragon","s":"extinction-curse-bestiary","lv":4,"ac":21,"hp":56,"pc":8,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/aives-the-smoke-dragon.json","li":"OGL"},{"n":"Ajbal Kimon","s":"strength-of-thousands-bestiary","lv":13,"ac":34,"hp":225,"pc":23,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/ajbal-kimon.json","li":"OGL"},{"n":"Akashti","s":"season-of-ghosts-bestiary","lv":10,"ac":29,"hp":175,"pc":19,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/akashti.json","li":"ORC"},{"n":"Akhana","s":"pathfinder-monster-core","lv":12,"ac":32,"hp":225,"pc":27,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core/akhana.json","li":"ORC"},{"n":"Akila Stormheel","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":34,"hp":230,"pc":24,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/akila-stormheel.json","li":"OGL"},{"n":"Akiros Ismort","s":"kingmaker-bestiary","lv":3,"ac":18,"hp":53,"pc":10,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/akiros-ismort.json","li":"OGL"},{"n":"Akizendri","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":40,"pc":8,"sz":"small","tp":"monitor","f":"pathfinder-monster-core-2/akizendri.json","li":"ORC"},{"n":"Akki (Level 2)","s":"myth-speaker-bestiary","lv":2,"ac":17,"hp":38,"pc":8,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/akki-level-2.json","li":"ORC"},{"n":"Akki (Level 8)","s":"myth-speaker-bestiary","lv":8,"ac":24,"hp":170,"pc":15,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/akki-level-8.json","li":"ORC"},{"n":"Akrida","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":21,"hp":60,"pc":10,"sz":"small","tp":"animal","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/akrida.json","li":"OGL"},{"n":"Akuzhail","s":"kingmaker-bestiary","lv":10,"ac":29,"hp":195,"pc":21,"sz":"huge","tp":"beast","f":"kingmaker-bestiary/akuzhail.json","li":"OGL"},{"n":"Alak Stagram","s":"age-of-ashes-bestiary","lv":2,"ac":20,"hp":34,"pc":7,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/alak-stagram.json","li":"OGL"},{"n":"Alapolo","s":"strength-of-thousands-bestiary","lv":17,"ac":41,"hp":310,"pc":28,"sz":"medium","tp":"fey","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/alapolo.json","li":"OGL"},{"n":"Alasen","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":245,"pc":26,"sz":"large","tp":"beast","f":"kingmaker-bestiary/alasen.json","li":"OGL"},{"n":"Alate Ant","s":"strength-of-thousands-bestiary","lv":16,"ac":39,"hp":295,"pc":28,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/alate-ant.json","li":"OGL"},{"n":"Albino Giant Bat","s":"crown-of-the-kobold-king-bestiary","lv":5,"ac":22,"hp":72,"pc":15,"sz":"large","tp":"animal","f":"crown-of-the-kobold-king-bestiary/albino-giant-bat.json","li":"OGL"},{"n":"Alce","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":13,"sz":"large","tp":"animal","f":"pathfinder-monster-core/alce.json","li":"ORC"},{"n":"Alceo Demetrias","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":100,"pc":18,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/alceo-demetrias.json","li":"ORC"},{"n":"Alchemical Drudge","s":"fall-of-plaguestone","lv":2,"ac":18,"hp":30,"pc":6,"sz":"small","tp":"construct","f":"fall-of-plaguestone/alchemical-drudge.json","li":"OGL"},{"n":"Alchemical Horror","s":"agents-of-edgewatch-bestiary","lv":21,"ac":46,"hp":400,"pc":35,"sz":"huge","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/alchemical-horror.json","li":"OGL"},{"n":"Alchemist Aspirant","s":"agents-of-edgewatch-bestiary","lv":10,"ac":30,"hp":175,"pc":16,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/alchemist-aspirant.json","li":"OGL"},{"n":"Alchemist Ivy","s":"sky-kings-tomb-bestiary","lv":3,"ac":18,"hp":68,"pc":10,"sz":"large","tp":"plant","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/alchemist-ivy.json","li":"OGL"},{"n":"Aldori Sister","s":"kingmaker-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/aldori-sister.json","li":"OGL"},{"n":"Alethsia","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":105,"pc":16,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/alethsia.json","li":"OGL"},{"n":"Algea","s":"malevolence-bestiary","lv":11,"ac":30,"hp":144,"pc":22,"sz":"large","tp":"monitor","f":"malevolence-bestiary/algea.json","li":"OGL"},{"n":"Algerschmick","s":"sky-kings-tomb-bestiary","lv":3,"ac":18,"hp":44,"pc":12,"sz":"small","tp":"fey","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/algerschmick.json","li":"OGL"},{"n":"Algriever","s":"season-of-ghosts-bestiary","lv":9,"ac":27,"hp":155,"pc":21,"sz":"medium","tp":"beast","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/algriever.json","li":"ORC"},{"n":"Alicorn","s":"howl-of-the-wild-bestiary","lv":15,"ac":36,"hp":320,"pc":27,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/alicorn.json","li":"ORC"},{"n":"Aliriel","s":"shadows-at-sundown-bestiary","lv":15,"ac":37,"hp":210,"pc":27,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/aliriel.json","li":"OGL"},{"n":"Aliver \"Pillbug\" Podiker","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":21,"hp":125,"pc":16,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/aliver-pillbug-podiker.json","li":"OGL"},{"n":"Alkepsur","s":"sky-kings-tomb-bestiary","lv":1,"ac":16,"hp":15,"pc":9,"sz":"medium","tp":"spirit","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/alkepsur.json","li":"OGL"},{"n":"Alkoasha","s":"gatewalkers-bestiary","lv":6,"ac":23,"hp":90,"pc":17,"sz":"huge","tp":"beast","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/alkoasha.json","li":"ORC"},{"n":"Alktherisa and Omprisgor","s":"prey-for-death-bestiary","lv":19,"ac":43,"hp":300,"pc":30,"sz":"huge","tp":"monitor","f":"prey-for-death-bestiary/alktherisa-and-omprisgor.json","li":"ORC"},{"n":"All-Seeing Hajeck","s":"stolen-fate-bestiary","lv":12,"ac":31,"hp":215,"pc":22,"sz":"large","tp":"beast","f":"stolen-fate-bestiary/book-2-the-destiny-war/all-seeing-hajeck.json","li":"OGL"},{"n":"Aller Rosk","s":"abomination-vaults-bestiary","lv":5,"ac":22,"hp":75,"pc":15,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/aller-rosk.json","li":"OGL"},{"n":"Allosaurus","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":120,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/allosaurus.json","li":"ORC"},{"n":"Almiraj","s":"agents-of-edgewatch-bestiary","lv":1,"ac":16,"hp":20,"pc":8,"sz":"small","tp":"beast","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/almiraj.json","li":"OGL"},{"n":"Almiraj","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":63,"pc":14,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/almiraj.json","li":"ORC"},{"n":"Aluum Enforcer","s":"age-of-ashes-bestiary","lv":10,"ac":30,"hp":145,"pc":17,"sz":"large","tp":"construct","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/aluum-enforcer.json","li":"OGL"},{"n":"Alyce Quinley","s":"wardens-of-wildwood-bestiary","lv":6,"ac":25,"hp":95,"pc":17,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/alyce-quinley.json","li":"ORC"},{"n":"Alzarius","s":"spore-war-bestiary","lv":11,"ac":29,"hp":160,"pc":20,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/alzarius.json","li":"ORC"},{"n":"Alzira Mustanir","s":"shades-of-blood-bestiary","lv":3,"ac":17,"hp":36,"pc":6,"sz":"medium","tp":"beast","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/alzira-mustanir.json","li":"ORC"},{"n":"Amalgamite","s":"pathfinder-dark-archive","lv":13,"ac":33,"hp":220,"pc":23,"sz":"medium","tp":"aberration","f":"pathfinder-dark-archive/npcs/amalgamite.json","li":"ORC"},{"n":"Amar","s":"the-enmity-cycle-bestiary","lv":6,"ac":23,"hp":100,"pc":15,"sz":"medium","tp":"humanoid","f":"the-enmity-cycle-bestiary/amar.json","li":"OGL"},{"n":"Amateur Chemist","s":"agents-of-edgewatch-bestiary","lv":5,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/amateur-chemist.json","li":"OGL"},{"n":"Ambrost Mugland","s":"outlaws-of-alkenstar-bestiary","lv":8,"ac":26,"hp":140,"pc":14,"sz":"small","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/ambrost-mugland.json","li":"OGL"},{"n":"Ambush Copse","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":300,"pc":20,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core-2/ambush-copse.json","li":"ORC"},{"n":"Amelekana","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":72,"pc":14,"sz":"large","tp":"beast","f":"gatewalkers-bestiary/book-1-the-seventh-arch/amelekana.json","li":"ORC"},{"n":"Ameon Trask","s":"kingmaker-bestiary","lv":10,"ac":30,"hp":175,"pc":16,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/ameon-trask.json","li":"OGL"},{"n":"Amihan","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":37,"hp":275,"pc":21,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/amihan.json","li":"OGL"},{"n":"Ammut","s":"extinction-curse-bestiary","lv":18,"ac":41,"hp":350,"pc":33,"sz":"huge","tp":"fiend","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/ammut.json","li":"OGL"},{"n":"Amnerion","s":"myth-speaker-bestiary","lv":22,"ac":48,"hp":540,"pc":43,"sz":"gargantuan","tp":"humanoid","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/amnerion.json","li":"ORC"},{"n":"Amoeba Swarm","s":"pathfinder-monster-core-2","lv":1,"ac":9,"hp":35,"pc":3,"sz":"large","tp":"ooze","f":"pathfinder-monster-core-2/amoeba-swarm.json","li":"ORC"},{"n":"Amphibious Chupacabra","s":"shades-of-blood-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"beast","f":"shades-of-blood-bestiary/book-2-the-broken-palace/amphibious-chupacabra.json","li":"ORC"},{"n":"Amphisbaena","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":70,"pc":10,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/amphisbaena.json","li":"ORC"},{"n":"Anadi Elder","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":95,"pc":15,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/anadi-elder.json","li":"OGL"},{"n":"Anadi Fateweaver","s":"strength-of-thousands-bestiary","lv":5,"ac":21,"hp":75,"pc":14,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-1-kindled-magic/anadi-fateweaver.json","li":"OGL"},{"n":"Anadi Hunter","s":"lost-omens-bestiary","lv":2,"ac":19,"hp":27,"pc":9,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/anadi-hunter.json","li":"OGL"},{"n":"Anadi Lurker","s":"strength-of-thousands-bestiary","lv":3,"ac":19,"hp":45,"pc":11,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-1-kindled-magic/anadi-lurker.json","li":"OGL"},{"n":"Anadi Sage","s":"lost-omens-bestiary","lv":4,"ac":21,"hp":58,"pc":12,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/anadi-sage.json","li":"OGL"},{"n":"Anadi Seeker","s":"strength-of-thousands-bestiary","lv":1,"ac":15,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-1-kindled-magic/anadi-seeker.json","li":"OGL"},{"n":"Anarchic Living Graffiti","s":"sky-kings-tomb-bestiary","lv":0,"ac":15,"hp":16,"pc":6,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/anarchic-living-graffiti.json","li":"OGL"},{"n":"Ancestor Statue","s":"sky-kings-tomb-bestiary","lv":3,"ac":19,"hp":35,"pc":9,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/ancestor-statue.json","li":"OGL"},{"n":"Ancestral Echo","s":"sky-kings-tomb-bestiary","lv":1,"ac":16,"hp":15,"pc":9,"sz":"medium","tp":"spirit","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/ancestral-echo.json","li":"OGL"},{"n":"Ancient One","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":45,"hp":440,"pc":36,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/ancient-one.json","li":"ORC"},{"n":"Ancient One (The Ashen Man's Anger)","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":45,"hp":440,"pc":36,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/ancient-one-the-ashen-mans-anger.json","li":"ORC"},{"n":"Ancient Rivener","s":"strength-of-thousands-bestiary","lv":14,"ac":35,"hp":280,"pc":25,"sz":"large","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/ancient-rivener.json","li":"OGL"},{"n":"Ancient Skaveling","s":"blood-lords-bestiary","lv":15,"ac":37,"hp":270,"pc":29,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/ancient-skaveling.json","li":"OGL"},{"n":"Ancient Tupilaq","s":"gatewalkers-bestiary","lv":11,"ac":32,"hp":145,"pc":22,"sz":"medium","tp":"construct","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/ancient-tupilaq.json","li":"ORC"},{"n":"Ancient Wisp","s":"kingmaker-bestiary","lv":10,"ac":33,"hp":130,"pc":22,"sz":"small","tp":"aberration","f":"kingmaker-bestiary/ancient-wisp.json","li":"OGL"},{"n":"Andera Paldreen","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":175,"pc":21,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/andera-paldreen.json","li":"OGL"},{"n":"Anemos","s":"rage-of-elements-bestiary","lv":18,"ac":43,"hp":310,"pc":33,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/anemos.json","li":"OGL"},{"n":"Angazhani Cultist","s":"the-slithering-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"the-slithering-bestiary/angazhani-cultist.json","li":"OGL"},{"n":"Angelic Chorus","s":"battlecry-bestiary","lv":12,"ac":32,"hp":210,"pc":22,"sz":"gargantuan","tp":"celestial","f":"battlecry-bestiary/angelic-chorus.json","li":"ORC"},{"n":"Angoyang","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":35,"hp":250,"pc":25,"sz":"small","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/angoyang.json","li":"OGL"},{"n":"Angry Townsfolk","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":22,"hp":75,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/angry-townsfolk.json","li":"OGL"},{"n":"Anguish Siktempora","s":"curtain-call-bestiary","lv":13,"ac":34,"hp":180,"pc":26,"sz":"medium","tp":"time","f":"curtain-call-bestiary/book-1-stage-fright/anguish-siktempora.json","li":"ORC"},{"n":"Anguished Flame","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":260,"pc":28,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/anguished-flame.json","li":"ORC"},{"n":"Animate Dream","s":"gatewalkers-bestiary","lv":8,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"dream","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/animate-dream.json","li":"ORC"},{"n":"Animate Dream","s":"pathfinder-monster-core-2","lv":8,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"dream","f":"pathfinder-monster-core-2/animate-dream.json","li":"ORC"},{"n":"Animate Nightmare","s":"revenge-of-the-runelords-bestiary","lv":17,"ac":39,"hp":235,"pc":29,"sz":"large","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/animate-nightmare.json","li":"ORC"},{"n":"Animated Armor","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":20,"pc":6,"sz":"medium","tp":"construct","f":"pathfinder-monster-core/animated-armor.json","li":"ORC"},{"n":"Animated Armor (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":17,"hp":20,"pc":6,"sz":"medium","tp":"construct","f":"menace-under-otari-bestiary/animated-armor-bb.json","li":"ORC"},{"n":"Animated Army","s":"battlecry-bestiary","lv":8,"ac":27,"hp":120,"pc":13,"sz":"gargantuan","tp":"construct","f":"battlecry-bestiary/animated-army.json","li":"ORC"},{"n":"Animated Axe","s":"season-of-ghosts-bestiary","lv":5,"ac":23,"hp":65,"pc":9,"sz":"tiny","tp":"construct","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/animated-axe.json","li":"ORC"},{"n":"Animated Bamboo Figurine","s":"lost-omens-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/animated-bamboo-figurine.json","li":"ORC"},{"n":"Animated Blade","s":"quest-for-the-frozen-flame-bestiary","lv":-1,"ac":16,"hp":4,"pc":3,"sz":"tiny","tp":"construct","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/animated-blade.json","li":"OGL"},{"n":"Animated Boiler","s":"curtain-call-bestiary","lv":18,"ac":44,"hp":400,"pc":26,"sz":"huge","tp":"construct","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/animated-boiler.json","li":"ORC"},{"n":"Animated Broom","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":6,"pc":3,"sz":"small","tp":"construct","f":"pathfinder-monster-core/animated-broom.json","li":"ORC"},{"n":"Animated Colossus","s":"pathfinder-monster-core-2","lv":15,"ac":39,"hp":245,"pc":23,"sz":"gargantuan","tp":"construct","f":"pathfinder-monster-core-2/animated-colossus.json","li":"ORC"},{"n":"Animated Cookware Swarm","s":"season-of-ghosts-bestiary","lv":1,"ac":16,"hp":14,"pc":5,"sz":"large","tp":"construct","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/animated-cookware-swarm.json","li":"ORC"},{"n":"Animated Dragonstorm","s":"age-of-ashes-bestiary","lv":18,"ac":42,"hp":255,"pc":30,"sz":"huge","tp":"construct","f":"age-of-ashes-bestiary/book-6-broken-promises/animated-dragonstorm.json","li":"OGL"},{"n":"Animated Fireplace","s":"blood-lords-bestiary","lv":5,"ac":24,"hp":65,"pc":9,"sz":"large","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/animated-fireplace.json","li":"OGL"},{"n":"Animated Furnace","s":"pathfinder-monster-core-2","lv":9,"ac":30,"hp":135,"pc":15,"sz":"huge","tp":"construct","f":"pathfinder-monster-core-2/animated-furnace.json","li":"ORC"},{"n":"Animated Kite","s":"lost-omens-bestiary","lv":0,"ac":15,"hp":10,"pc":6,"sz":"small","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/animated-kite.json","li":"ORC"},{"n":"Animated Panoply","s":"myth-speaker-bestiary","lv":2,"ac":17,"hp":20,"pc":6,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/animated-panoply.json","li":"ORC"},{"n":"Animated Silverware Swarm","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":14,"pc":5,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/animated-silverware-swarm.json","li":"ORC"},{"n":"Animated Statue","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":35,"pc":9,"sz":"medium","tp":"construct","f":"pathfinder-monster-core/animated-statue.json","li":"ORC"},{"n":"Animated Tea Cart","s":"blood-lords-bestiary","lv":8,"ac":28,"hp":120,"pc":13,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/animated-tea-cart.json","li":"OGL"},{"n":"Animated Treasure Swarm","s":"shades-of-blood-bestiary","lv":7,"ac":25,"hp":85,"pc":11,"sz":"large","tp":"construct","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/animated-treasure-swarm.json","li":"ORC"},{"n":"Animated Trebuchet","s":"pathfinder-monster-core-2","lv":13,"ac":36,"hp":200,"pc":21,"sz":"gargantuan","tp":"construct","f":"pathfinder-monster-core-2/animated-trebuchet.json","li":"ORC"},{"n":"Animated Wine Vessel","s":"lost-omens-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"large","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/animated-wine-vessel.json","li":"ORC"},{"n":"Anitoli Nostraema","s":"malevolence-bestiary","lv":6,"ac":23,"hp":95,"pc":15,"sz":"small","tp":"undead","f":"malevolence-bestiary/anitoli-nostraema.json","li":"OGL"},{"n":"Anjelique Loveless","s":"outlaws-of-alkenstar-bestiary","lv":11,"ac":30,"hp":200,"pc":24,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/anjelique-loveless.json","li":"OGL"},{"n":"Ankhrav","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":40,"pc":7,"sz":"large","tp":"animal","f":"pathfinder-monster-core/ankhrav.json","li":"ORC"},{"n":"Ankhrav","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":18,"hp":40,"pc":7,"sz":"large","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/ankhrav.json","li":"ORC"},{"n":"Ankhrav Hive Mother","s":"pathfinder-monster-core","lv":8,"ac":29,"hp":120,"pc":16,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/ankhrav-hive-mother.json","li":"ORC"},{"n":"Ankhrav Hive Mother","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":29,"hp":120,"pc":16,"sz":"huge","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/ankhrav-hive-mother.json","li":"ORC"},{"n":"Ankou Assassin","s":"kingmaker-bestiary","lv":17,"ac":40,"hp":333,"pc":30,"sz":"large","tp":"fey","f":"kingmaker-bestiary/ankou-assassin.json","li":"OGL"},{"n":"Ankylosaurus","s":"pathfinder-monster-core","lv":6,"ac":26,"hp":90,"pc":12,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/ankylosaurus.json","li":"ORC"},{"n":"Annamede Belavarah","s":"kingmaker-bestiary","lv":8,"ac":26,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/annamede-belavarah.json","li":"OGL"},{"n":"Anoreth Zorillen","s":"shades-of-blood-bestiary","lv":8,"ac":24,"hp":110,"pc":18,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/anoreth-zorillen.json","li":"ORC"},{"n":"Antaro Boldblade","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":15,"hp":9,"pc":4,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/antaro-boldblade.json","li":"OGL"},{"n":"Antipaladin","s":"npc-gallery","lv":5,"ac":25,"hp":75,"pc":10,"sz":"medium","tp":"humanoid","f":"npc-gallery/antipaladin.json","li":"OGL"},{"n":"Anugobu Apprentice","s":"fists-of-the-ruby-phoenix-bestiary","lv":3,"ac":17,"hp":35,"pc":12,"sz":"tiny","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/anugobu-apprentice.json","li":"OGL"},{"n":"Anugobu Wondercrafter","s":"fists-of-the-ruby-phoenix-bestiary","lv":7,"ac":23,"hp":90,"pc":18,"sz":"tiny","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/anugobu-wondercrafter.json","li":"OGL"},{"n":"Anvaca","s":"shades-of-blood-bestiary","lv":9,"ac":26,"hp":80,"pc":15,"sz":"tiny","tp":"construct","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/anvaca.json","li":"ORC"},{"n":"Aolaz","s":"pathfinder-monster-core","lv":18,"ac":42,"hp":255,"pc":33,"sz":"gargantuan","tp":"construct","f":"pathfinder-monster-core/aolaz.json","li":"ORC"},{"n":"Aoyin","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":210,"pc":19,"sz":"large","tp":"animal","f":"lost-omens-bestiary/tian-xia-world-guide/aoyin.json","li":"ORC"},{"n":"Aphorite Sharpshooter","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/aphorite-sharpshooter.json","li":"ORC"},{"n":"Apocalypse Ant Swarm","s":"strength-of-thousands-bestiary","lv":18,"ac":41,"hp":260,"pc":30,"sz":"gargantuan","tp":"animal","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/apocalypse-ant-swarm.json","li":"OGL"},{"n":"Apothecary","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/apothecary.json","li":"ORC"},{"n":"Apothecary Bee","s":"howl-of-the-wild-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"tiny","tp":"animal","f":"howl-of-the-wild-bestiary/apothecary-bee.json","li":"ORC"},{"n":"Apothecary's Cabinet","s":"gatewalkers-bestiary","lv":6,"ac":24,"hp":80,"pc":11,"sz":"large","tp":"construct","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/apothecarys-cabinet.json","li":"ORC"},{"n":"Apprentice","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":8,"pc":2,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/artisan/apprentice.json","li":"ORC"},{"n":"Apprentice Magician Clique","s":"battlecry-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/apprentice-magician-clique.json","li":"ORC"},{"n":"Aquatic Ooze","s":"blood-lords-bestiary","lv":4,"ac":14,"hp":60,"pc":8,"sz":"medium","tp":"ooze","f":"blood-lords-bestiary/book-2-graveclaw/aquatic-ooze.json","li":"OGL"},{"n":"Aquatic Viper Vine","s":"stolen-fate-bestiary","lv":13,"ac":33,"hp":270,"pc":22,"sz":"large","tp":"plant","f":"stolen-fate-bestiary/book-2-the-destiny-war/aquatic-viper-vine.json","li":"OGL"},{"n":"Aqudel","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":120,"pc":18,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/aqudel.json","li":"ORC"},{"n":"Ararda","s":"extinction-curse-bestiary","lv":18,"ac":43,"hp":280,"pc":31,"sz":"large","tp":"elemental","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/ararda.json","li":"OGL"},{"n":"Arbiter","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":22,"pc":7,"sz":"tiny","tp":"monitor","f":"pathfinder-monster-core/arbiter.json","li":"ORC"},{"n":"Arboreal Archive","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":230,"pc":25,"sz":"huge","tp":"plant","f":"pathfinder-monster-core-2/arboreal-archive.json","li":"ORC"},{"n":"Arboreal Copse","s":"battlecry-bestiary","lv":9,"ac":27,"hp":150,"pc":18,"sz":"gargantuan","tp":"plant","f":"battlecry-bestiary/arboreal-copse.json","li":"ORC"},{"n":"Arboreal Reaper","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":130,"pc":15,"sz":"large","tp":"plant","f":"pathfinder-monster-core-2/arboreal-reaper.json","li":"ORC"},{"n":"Arboreal Regent","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":150,"pc":18,"sz":"huge","tp":"plant","f":"pathfinder-monster-core/arboreal-regent.json","li":"ORC"},{"n":"Arboreal Sapling","s":"wardens-of-wildwood-bestiary","lv":2,"ac":17,"hp":35,"pc":11,"sz":"large","tp":"plant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/arboreal-sapling.json","li":"ORC"},{"n":"Arboreal Sapstriker","s":"wardens-of-wildwood-bestiary","lv":6,"ac":23,"hp":115,"pc":17,"sz":"large","tp":"plant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/arboreal-sapstriker.json","li":"ORC"},{"n":"Arboreal Shepherd","s":"wardens-of-wildwood-bestiary","lv":5,"ac":22,"hp":80,"pc":15,"sz":"huge","tp":"plant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/arboreal-shepherd.json","li":"ORC"},{"n":"Arboreal Snag","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/arboreal-snag.json","li":"OGL"},{"n":"Arboreal Snag (Axan Wood)","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/arboreal-snag-axan-wood.json","li":"OGL"},{"n":"Arboreal Tar Tree","s":"quest-for-the-frozen-flame-bestiary","lv":9,"ac":28,"hp":175,"pc":18,"sz":"large","tp":"plant","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/arboreal-tar-tree.json","li":"OGL"},{"n":"Arboreal Warden","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":75,"pc":11,"sz":"large","tp":"plant","f":"pathfinder-monster-core/arboreal-warden.json","li":"ORC"},{"n":"Archer Regiment","s":"battlecry-bestiary","lv":12,"ac":32,"hp":210,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/archer-regiment.json","li":"ORC"},{"n":"Archer Sentry","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":30,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/archer-sentry.json","li":"ORC"},{"n":"Archery Specialist","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":35,"hp":190,"pc":26,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/archery-specialist.json","li":"OGL"},{"n":"Archon Bastion","s":"battlecry-bestiary","lv":16,"ac":37,"hp":300,"pc":30,"sz":"gargantuan","tp":"celestial","f":"battlecry-bestiary/archon-bastion.json","li":"ORC"},{"n":"Arctic Bloom","s":"gatewalkers-bestiary","lv":8,"ac":24,"hp":170,"pc":16,"sz":"large","tp":"plant","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/arctic-bloom.json","li":"ORC"},{"n":"Ardande Gardener","s":"rage-of-elements-bestiary","lv":1,"ac":16,"hp":17,"pc":7,"sz":"medium","tp":"humanoid","f":"rage-of-elements-bestiary/ardande-gardener.json","li":"OGL"},{"n":"Ardande Ghost","s":"wardens-of-wildwood-bestiary","lv":11,"ac":30,"hp":150,"pc":21,"sz":"medium","tp":"spirit","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/ardande-ghost.json","li":"ORC"},{"n":"Ardissa Prendergant","s":"quest-for-the-frozen-flame-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/ardissa-prendergant.json","li":"OGL"},{"n":"Ardissa's Porter","s":"quest-for-the-frozen-flame-bestiary","lv":0,"ac":14,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/ardissas-porter.json","li":"OGL"},{"n":"Areelu Vorlesh","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":44,"hp":400,"pc":34,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/areelu-vorlesh.json","li":"ORC"},{"n":"Arghun the Annihilator","s":"blood-lords-bestiary","lv":-1,"ac":12,"hp":8,"pc":5,"sz":"tiny","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/arghun-the-annihilator.json","li":"OGL"},{"n":"Argorth","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":200,"pc":18,"sz":"huge","tp":"aberration","f":"pathfinder-monster-core-2/argorth.json","li":"ORC"},{"n":"Argyrzei","s":"season-of-ghosts-bestiary","lv":13,"ac":34,"hp":240,"pc":23,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/argyrzei.json","li":"ORC"},{"n":"Arika Avertin","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":21,"hp":78,"pc":10,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/arika-avertin.json","li":"OGL"},{"n":"Armag Twice-Born","s":"kingmaker-bestiary","lv":14,"ac":35,"hp":300,"pc":24,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/armag-twice-born.json","li":"OGL"},{"n":"Armored Cave Bears","s":"one-shot-bestiary","lv":9,"ac":28,"hp":155,"pc":17,"sz":"large","tp":"animal","f":"one-shot-bestiary/the-scourge-of-sheerleaf/armored-cave-bears.json","li":"ORC"},{"n":"Arms Dealer","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":28,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/arms-dealer.json","li":"ORC"},{"n":"Arms of Balance (Jivati Rovat)","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":300,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/arms-of-balance-jivati-rovat.json","li":"OGL"},{"n":"Arms of Balance (Pravan Majinapti)","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":300,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/arms-of-balance-pravan-majinapti.json","li":"OGL"},{"n":"Arms of Balance (Ranya Shibhatesh)","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":300,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/arms-of-balance-ranya-shibhatesh.json","li":"OGL"},{"n":"Arms of Balance (Usvani)","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":300,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/arms-of-balance-usvani.json","li":"OGL"},{"n":"Army Ant Swarm","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":55,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/army-ant-swarm.json","li":"ORC"},{"n":"Arodeth","s":"stolen-fate-bestiary","lv":14,"ac":35,"hp":255,"pc":22,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/arodeth.json","li":"OGL"},{"n":"Arrester Squadron","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":135,"pc":17,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/official/arrester-squadron.json","li":"ORC"},{"n":"Arshean Warden","s":"curtain-call-bestiary","lv":12,"ac":33,"hp":270,"pc":23,"sz":"medium","tp":"construct","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/arshean-warden.json","li":"ORC"},{"n":"Arskuva the Gnasher","s":"extinction-curse-bestiary","lv":12,"ac":31,"hp":270,"pc":22,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/arskuva-the-gnasher.json","li":"OGL"},{"n":"Artillerist","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/artillerist.json","li":"ORC"},{"n":"Artus Rodrivan","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":330,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/artus-rodrivan.json","li":"OGL"},{"n":"Arzuu","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":240,"pc":24,"sz":"large","tp":"elemental","f":"stolen-fate-bestiary/book-2-the-destiny-war/arzuu.json","li":"OGL"},{"n":"Asanbosam","s":"lost-omens-bestiary","lv":6,"ac":24,"hp":95,"pc":17,"sz":"large","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/asanbosam.json","li":"OGL"},{"n":"Ascendant Griffon","s":"howl-of-the-wild-bestiary","lv":11,"ac":30,"hp":210,"pc":25,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/ascendant-griffon.json","li":"ORC"},{"n":"Ascended Disciple","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":20,"hp":90,"pc":13,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/ascended-disciple.json","li":"OGL"},{"n":"Ash Giant","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":240,"pc":21,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/ash-giant.json","li":"ORC"},{"n":"Ashen Guardian","s":"crown-of-the-kobold-king-bestiary","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/ashen-guardian.json","li":"OGL"},{"n":"Ashen Swale","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":23,"hp":120,"pc":13,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/ashen-swale.json","li":"OGL"},{"n":"Ashrin","s":"sky-kings-tomb-bestiary","lv":9,"ac":27,"hp":155,"pc":15,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/ashrin.json","li":"OGL"},{"n":"Asmerelli","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":23,"hp":92,"pc":13,"sz":"small","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/asmerelli.json","li":"OGL"},{"n":"Aso Berang","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":260,"pc":23,"sz":"large","tp":"spirit","f":"lost-omens-bestiary/tian-xia-world-guide/aso-berang.json","li":"ORC"},{"n":"Asp of Grief","s":"rage-of-elements-bestiary","lv":10,"ac":31,"hp":150,"pc":21,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/asp-of-grief.json","li":"OGL"},{"n":"Aspect of Hunger","s":"strength-of-thousands-bestiary","lv":19,"ac":40,"hp":410,"pc":25,"sz":"gargantuan","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/aspect-of-hunger.json","li":"OGL"},{"n":"Aspect of Immortality","s":"strength-of-thousands-bestiary","lv":21,"ac":47,"hp":320,"pc":41,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/aspect-of-immortality.json","li":"OGL"},{"n":"Aspect of Insects","s":"strength-of-thousands-bestiary","lv":20,"ac":37,"hp":420,"pc":31,"sz":"gargantuan","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/aspect-of-insects.json","li":"OGL"},{"n":"Aspect of Ruun","s":"gatewalkers-bestiary","lv":5,"ac":22,"hp":75,"pc":15,"sz":"small","tp":"beast","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/aspect-of-ruun.json","li":"ORC"},{"n":"Aspis Guard","s":"the-slithering-bestiary","lv":5,"ac":22,"hp":80,"pc":14,"sz":"medium","tp":"humanoid","f":"the-slithering-bestiary/aspis-guard.json","li":"OGL"},{"n":"Aspis Technician","s":"the-slithering-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"small","tp":"humanoid","f":"the-slithering-bestiary/aspis-technician.json","li":"OGL"},{"n":"Assassin","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":130,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/assassin.json","li":"ORC"},{"n":"Assault Alloy","s":"pathfinder-monster-core-2","lv":13,"ac":31,"hp":240,"pc":26,"sz":"small","tp":"elemental","f":"pathfinder-monster-core-2/assault-alloy.json","li":"ORC"},{"n":"Astradaemon","s":"pathfinder-monster-core","lv":16,"ac":39,"hp":240,"pc":28,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/astradaemon.json","li":"ORC"},{"n":"Astronomer","s":"pathfinder-npc-core","lv":2,"ac":15,"hp":23,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/astronomer.json","li":"ORC"},{"n":"Athamaru Hunter","s":"pathfinder-monster-core","lv":3,"ac":20,"hp":38,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/athamaru-hunter.json","li":"ORC"},{"n":"Atrixyl","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":190,"pc":22,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/atrixyl.json","li":"ORC"},{"n":"Attic Whisperer","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":10,"sz":"small","tp":"undead","f":"pathfinder-monster-core-2/attic-whisperer.json","li":"ORC"},{"n":"Atticus","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":120,"pc":18,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/atticus.json","li":"OGL"},{"n":"Auchs","s":"kingmaker-bestiary","lv":2,"ac":15,"hp":40,"pc":6,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/auchs.json","li":"OGL"},{"n":"Augdunar","s":"lost-omens-bestiary","lv":2,"ac":17,"hp":35,"pc":8,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/highhelm/augdunar.json","li":"OGL"},{"n":"Augnagar","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":225,"pc":27,"sz":"huge","tp":"fiend","f":"pathfinder-monster-core/augnagar.json","li":"ORC"},{"n":"Augrael","s":"abomination-vaults-bestiary","lv":3,"ac":18,"hp":48,"pc":8,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/augrael.json","li":"OGL"},{"n":"Augur","s":"pathfinder-monster-core-2","lv":1,"ac":17,"hp":15,"pc":8,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core-2/augur.json","li":"ORC"},{"n":"Augusta Wormwood","s":"curtain-call-bestiary","lv":14,"ac":34,"hp":250,"pc":24,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-1-stage-fright/augusta-wormwood.json","li":"ORC"},{"n":"Aukashungi Swarm","s":"extinction-curse-bestiary","lv":10,"ac":28,"hp":210,"pc":18,"sz":"huge","tp":"aberration","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/aukashungi-swarm.json","li":"OGL"},{"n":"Auldegrund Grimcarver","s":"one-shot-bestiary","lv":7,"ac":24,"hp":125,"pc":11,"sz":"medium","tp":"fiend","f":"one-shot-bestiary/dinner-at-lionlodge/auldegrund-grimcarver.json","li":"OGL"},{"n":"Aurocan","s":"hellbreakers-bestiary","lv":8,"ac":25,"hp":135,"pc":16,"sz":"huge","tp":"construct","f":"hellbreakers-bestiary/aurocan.json","li":"ORC"},{"n":"Aurochs","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":18,"hp":42,"pc":9,"sz":"large","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/aurochs.json","li":"ORC"},{"n":"Aurochs Herd","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":24,"hp":150,"pc":12,"sz":"gargantuan","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/aurochs-herd.json","li":"ORC"},{"n":"Aurosrath","s":"lost-omens-bestiary","lv":5,"ac":19,"hp":95,"pc":12,"sz":"large","tp":"undead","f":"lost-omens-bestiary/shining-kingdoms/aurosrath.json","li":"ORC"},{"n":"Austral, The South Wind","s":"rage-of-elements-bestiary","lv":18,"ac":43,"hp":310,"pc":33,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/austral-the-south-wind.json","li":"OGL"},{"n":"Auzmere","s":"shades-of-blood-bestiary","lv":4,"ac":21,"hp":55,"pc":7,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-2-the-broken-palace/auzmere.json","li":"ORC"},{"n":"Avalanche Legion","s":"rage-of-elements-bestiary","lv":11,"ac":31,"hp":240,"pc":21,"sz":"gargantuan","tp":"elemental","f":"rage-of-elements-bestiary/avalanche-legion.json","li":"OGL"},{"n":"Avarek","s":"agents-of-edgewatch-bestiary","lv":8,"ac":26,"hp":150,"pc":16,"sz":"small","tp":"fey","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/avarek.json","li":"OGL"},{"n":"Avatar of the Lantern King","s":"kingmaker-bestiary","lv":24,"ac":54,"hp":500,"pc":39,"sz":"gargantuan","tp":"fey","f":"kingmaker-bestiary/avatar-of-the-lantern-king.json","li":"OGL"},{"n":"Avatar Of Walkena","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":380,"pc":29,"sz":"huge","tp":"humanoid","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/avatar-of-walkena.json","li":"OGL"},{"n":"Avathrael Realmshaper","s":"wardens-of-wildwood-bestiary","lv":12,"ac":32,"hp":214,"pc":25,"sz":"huge","tp":"dragon","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/avathrael-realmshaper.json","li":"ORC"},{"n":"Avsheros the Betrayer","s":"agents-of-edgewatch-bestiary","lv":23,"ac":50,"hp":400,"pc":41,"sz":"large","tp":"celestial","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/avsheros-the-betrayer.json","li":"OGL"},{"n":"Avuncular Professor","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/avuncular-professor.json","li":"ORC"},{"n":"Awakened Tree","s":"pathfinder-monster-core","lv":6,"ac":22,"hp":100,"pc":13,"sz":"huge","tp":"plant","f":"pathfinder-monster-core/awakened-tree.json","li":"ORC"},{"n":"Axiomite","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":155,"pc":19,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core/axiomite.json","li":"ORC"},{"n":"Ayavah","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":29,"hp":195,"pc":24,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/ayavah.json","li":"ORC"},{"n":"Ayngavhaul","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":240,"pc":26,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/ayngavhaul.json","li":"ORC"},{"n":"Azarketi Crab Catcher","s":"pathfinder-monster-core","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/azarketi-crab-catcher.json","li":"ORC"},{"n":"Azarketi Sailor","s":"lost-omens-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/absalom-city-of-lost-omens/azarketi-sailor.json","li":"OGL"},{"n":"Azarketi Tide Tamer","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/azarketi-tide-tamer.json","li":"ORC"},{"n":"Azarpal","s":"curtain-call-bestiary","lv":13,"ac":34,"hp":275,"pc":24,"sz":"medium","tp":"fey","f":"curtain-call-bestiary/book-1-stage-fright/azarpal.json","li":"ORC"},{"n":"Azhana","s":"wardens-of-wildwood-bestiary","lv":3,"ac":18,"hp":45,"pc":12,"sz":"small","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/azhana.json","li":"ORC"},{"n":"Azi","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":24,"hp":97,"pc":19,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/azi.json","li":"OGL"},{"n":"Azmakian Effigy","s":"blood-lords-bestiary","lv":7,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/azmakian-effigy.json","li":"OGL"},{"n":"Azorena","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":22,"hp":90,"pc":14,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/azorena.json","li":"ORC"},{"n":"Azuretzi","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":75,"pc":11,"sz":"small","tp":"monitor","f":"pathfinder-monster-core/azuretzi.json","li":"ORC"},{"n":"Azvalvigander","s":"abomination-vaults-bestiary","lv":3,"ac":20,"hp":30,"pc":12,"sz":"small","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/azvalvigander.json","li":"OGL"},{"n":"Ba'aupa Mdoudu","s":"strength-of-thousands-bestiary","lv":13,"ac":33,"hp":245,"pc":23,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/baaupa-mdoudu.json","li":"OGL"},{"n":"Baatamidar","s":"agents-of-edgewatch-bestiary","lv":21,"ac":42,"hp":350,"pc":39,"sz":"medium","tp":"monitor","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/baatamidar.json","li":"OGL"},{"n":"Baccali Alpaca","s":"lost-omens-bestiary","lv":0,"ac":14,"hp":16,"pc":4,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/travel-guide/baccali-alpaca.json","li":"OGL"},{"n":"Badger","s":"pathfinder-monster-core-2","lv":0,"ac":15,"hp":15,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core-2/badger.json","li":"ORC"},{"n":"Bakeneko","s":"season-of-ghosts-bestiary","lv":3,"ac":20,"hp":35,"pc":9,"sz":"small","tp":"beast","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/bakeneko.json","li":"ORC"},{"n":"Balisse","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":145,"pc":18,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core/balisse.json","li":"ORC"},{"n":"Bandersnatch","s":"pathfinder-monster-core","lv":17,"ac":41,"hp":335,"pc":30,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core/bandersnatch.json","li":"ORC"},{"n":"Bandit","s":"pathfinder-npc-core","lv":2,"ac":19,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/bandit.json","li":"ORC"},{"n":"Bandit Gang","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/criminal/bandit-gang.json","li":"ORC"},{"n":"Banshee","s":"pathfinder-monster-core","lv":17,"ac":39,"hp":250,"pc":32,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/banshee.json","li":"ORC"},{"n":"Baolen","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":360,"pc":31,"sz":"gargantuan","tp":"beast","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/baolen.json","li":"ORC"},{"n":"Baomal","s":"pathfinder-monster-core-2","lv":20,"ac":46,"hp":315,"pc":34,"sz":"gargantuan","tp":"aberration","f":"pathfinder-monster-core-2/baomal.json","li":"ORC"},{"n":"Barbtongued Wyvern","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":330,"pc":29,"sz":"huge","tp":"dragon","f":"kingmaker-bestiary/barbtongued-wyvern.json","li":"OGL"},{"n":"Barcumbuk","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":120,"pc":18,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/barcumbuk.json","li":"OGL"},{"n":"Barded Manticore","s":"howl-of-the-wild-bestiary","lv":18,"ac":42,"hp":440,"pc":33,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/barded-manticore.json","li":"ORC"},{"n":"Barghest","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":50,"pc":12,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/barghest.json","li":"ORC"},{"n":"Bargott","s":"quest-for-the-frozen-flame-bestiary","lv":3,"ac":18,"hp":70,"pc":9,"sz":"medium","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/bargott.json","li":"OGL"},{"n":"Barkeep","s":"npc-gallery","lv":1,"ac":14,"hp":25,"pc":6,"sz":"medium","tp":"humanoid","f":"npc-gallery/barkeep.json","li":"OGL"},{"n":"Barking Stag","s":"extinction-curse-bestiary","lv":13,"ac":34,"hp":245,"pc":28,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/barking-stag.json","li":"OGL"},{"n":"Barnacle Ghoul","s":"agents-of-edgewatch-bestiary","lv":9,"ac":28,"hp":155,"pc":17,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/barnacle-ghoul.json","li":"OGL"},{"n":"Barrage Archdragon","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":440,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-archdragon.json","li":"ORC"},{"n":"Barrage Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":440,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-archdragon-spellcaster.json","li":"ORC"},{"n":"Barrage Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":220,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Barrage Dragon (Adult)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":220,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-adult.json","li":"ORC"},{"n":"Barrage Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":340,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Barrage Dragon (Ancient)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":340,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-ancient.json","li":"ORC"},{"n":"Barrage Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-young-spellcaster.json","li":"ORC"},{"n":"Barrage Dragon (Young)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/barrage/barrage-dragon-young.json","li":"ORC"},{"n":"Barrel Launcher","s":"agents-of-edgewatch-bestiary","lv":14,"ac":34,"hp":250,"pc":25,"sz":"medium","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/barrel-launcher.json","li":"OGL"},{"n":"Barrister","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":8,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/barrister.json","li":"ORC"},{"n":"Barushak Il-Varashma","s":"age-of-ashes-bestiary","lv":11,"ac":28,"hp":170,"pc":17,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/barushak-il-varashma.json","li":"OGL"},{"n":"Basilisk","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/basilisk.json","li":"ORC"},{"n":"Basilisk (BB)","s":"menace-under-otari-bestiary","lv":5,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"beast","f":"menace-under-otari-bestiary/basilisk-bb.json","li":"ORC"},{"n":"Basiri, Wellspring Keeper","s":"blood-lords-bestiary","lv":19,"ac":40,"hp":400,"pc":33,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/basiri-wellspring-keeper.json","li":"OGL"},{"n":"Batkin Guard","s":"shades-of-blood-bestiary","lv":1,"ac":15,"hp":20,"pc":6,"sz":"medium","tp":"beast","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/batkin-guard.json","li":"ORC"},{"n":"Battle Leader Rekarek","s":"agents-of-edgewatch-bestiary","lv":2,"ac":17,"hp":40,"pc":10,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/battle-leader-rekarek.json","li":"OGL"},{"n":"Beast Eidolon","s":"pathfinder-npc-core","lv":10,"ac":29,"hp":180,"pc":21,"sz":"medium","tp":"beast","f":"pathfinder-npc-core/creature-companions/beast-eidolon.json","li":"ORC"},{"n":"Beast Tamer","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":55,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/beast-tamer.json","li":"ORC"},{"n":"Beaver","s":"quest-for-the-frozen-flame-bestiary","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"small","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/beaver.json","li":"OGL"},{"n":"Bee Borer","s":"myth-speaker-bestiary","lv":3,"ac":18,"hp":40,"pc":11,"sz":"tiny","tp":"animal","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/bee-borer.json","li":"ORC"},{"n":"Bee Covered Ohancanu","s":"wardens-of-wildwood-bestiary","lv":5,"ac":21,"hp":80,"pc":12,"sz":"large","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/bee-covered-ohancanu.json","li":"ORC"},{"n":"Bee Swarm","s":"fall-of-plaguestone","lv":1,"ac":17,"hp":18,"pc":5,"sz":"large","tp":"animal","f":"fall-of-plaguestone/bee-swarm.json","li":"OGL"},{"n":"Beetle Carapace","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":12,"sz":"large","tp":"undead","f":"pathfinder-monster-core-2/beetle-carapace.json","li":"ORC"},{"n":"Beggar","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":10,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/downtrodden/beggar.json","li":"ORC"},{"n":"Behemoth Hippopotamus","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":190,"pc":19,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/behemoth-hippopotamus.json","li":"ORC"},{"n":"Beiran Frosthunt","s":"lost-omens-bestiary","lv":3,"ac":18,"hp":54,"pc":12,"sz":"gargantuan","tp":"fey","f":"lost-omens-bestiary/shining-kingdoms/beiran-frosthunt.json","li":"ORC"},{"n":"Belcorra Haruvex","s":"abomination-vaults-bestiary","lv":12,"ac":30,"hp":175,"pc":22,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/belcorra-haruvex.json","li":"OGL"},{"n":"Belimarius","s":"revenge-of-the-runelords-bestiary","lv":19,"ac":43,"hp":350,"pc":33,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/belimarius.json","li":"ORC"},{"n":"Bellator Mortus Soldier","s":"blood-lords-bestiary","lv":15,"ac":37,"hp":345,"pc":26,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/bellator-mortus-soldier.json","li":"OGL"},{"n":"Belmazog","s":"age-of-ashes-bestiary","lv":9,"ac":28,"hp":145,"pc":18,"sz":"medium","tp":"dragon","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/belmazog.json","li":"OGL"},{"n":"Beluthus","s":"abomination-vaults-bestiary","lv":11,"ac":31,"hp":175,"pc":22,"sz":"small","tp":"undead","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/beluthus.json","li":"OGL"},{"n":"Benthic Reaver","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":500,"pc":41,"sz":"gargantuan","tp":"undead","f":"lost-omens-bestiary/impossible-lands/benthic-reaver.json","li":"OGL"},{"n":"Benthic Worm","s":"pathfinder-monster-core","lv":15,"ac":35,"hp":320,"pc":22,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/benthic-worm.json","li":"ORC"},{"n":"Berberoka","s":"pathfinder-monster-core-2","lv":15,"ac":36,"hp":310,"pc":26,"sz":"huge","tp":"giant","f":"pathfinder-monster-core-2/berberoka.json","li":"ORC"},{"n":"Berserker Ordulf","s":"prey-for-death-bestiary","lv":16,"ac":38,"hp":300,"pc":28,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/berserker-ordulf.json","li":"ORC"},{"n":"Besieged Logging Crew","s":"wardens-of-wildwood-bestiary","lv":4,"ac":18,"hp":60,"pc":7,"sz":"gargantuan","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/besieged-logging-crew.json","li":"ORC"},{"n":"Besunas","s":"hellbreakers-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/besunas.json","li":"ORC"},{"n":"Betobeto-San","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":170,"pc":22,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core-2/betobeto-san.json","li":"ORC"},{"n":"Bhanyada Behemoth","s":"stolen-fate-bestiary","lv":12,"ac":31,"hp":250,"pc":23,"sz":"huge","tp":"aberration","f":"stolen-fate-bestiary/book-1-the-choosing/bhanyada-behemoth.json","li":"OGL"},{"n":"Bhanyada Scavenger","s":"stolen-fate-bestiary","lv":8,"ac":26,"hp":150,"pc":17,"sz":"small","tp":"aberration","f":"stolen-fate-bestiary/book-1-the-choosing/bhanyada-scavenger.json","li":"OGL"},{"n":"Bhanyada Swarm","s":"stolen-fate-bestiary","lv":11,"ac":30,"hp":175,"pc":20,"sz":"large","tp":"aberration","f":"stolen-fate-bestiary/book-1-the-choosing/bhanyada-swarm.json","li":"OGL"},{"n":"Bharlen Sajor","s":"strength-of-thousands-bestiary","lv":11,"ac":32,"hp":190,"pc":21,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/bharlen-sajor.json","li":"OGL"},{"n":"Bhuta","s":"book-of-the-dead-bestiary","lv":11,"ac":30,"hp":175,"pc":22,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/bhuta.json","li":"OGL"},{"n":"Bhuta Servant","s":"spore-war-bestiary","lv":12,"ac":32,"hp":175,"pc":24,"sz":"medium","tp":"undead","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/bhuta-servant.json","li":"ORC"},{"n":"Bibliodaemon","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":130,"pc":18,"sz":"medium","tp":"fiend","f":"lost-omens-bestiary/shining-kingdoms/bibliodaemon.json","li":"ORC"},{"n":"Bida","s":"age-of-ashes-bestiary","lv":8,"ac":27,"hp":135,"pc":15,"sz":"huge","tp":"dragon","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/bida.json","li":"OGL"},{"n":"Big Boss Goblin","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":100,"pc":16,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/goblin/big-boss-goblin.json","li":"ORC"},{"n":"Bikkhasura","s":"pathfinder-monster-core-2","lv":20,"ac":44,"hp":380,"pc":36,"sz":"huge","tp":"spirit","f":"pathfinder-monster-core-2/bikkhasura.json","li":"ORC"},{"n":"Bill-Band","s":"pathfinder-npc-core","lv":5,"ac":20,"hp":90,"pc":10,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/halfling/bill-band.json","li":"ORC"},{"n":"Biloko Reaver","s":"strength-of-thousands-bestiary","lv":10,"ac":29,"hp":175,"pc":19,"sz":"small","tp":"fey","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/biloko-reaver.json","li":"OGL"},{"n":"Biloko Veteran","s":"lost-omens-bestiary","lv":4,"ac":21,"hp":58,"pc":11,"sz":"small","tp":"fey","f":"lost-omens-bestiary/mwangi-expanse/biloko-veteran.json","li":"OGL"},{"n":"Biloko Warrior","s":"lost-omens-bestiary","lv":1,"ac":16,"hp":19,"pc":7,"sz":"small","tp":"fey","f":"lost-omens-bestiary/mwangi-expanse/biloko-warrior.json","li":"OGL"},{"n":"Binji","s":"strength-of-thousands-bestiary","lv":-1,"ac":15,"hp":9,"pc":6,"sz":"tiny","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/binji.json","li":"OGL"},{"n":"Binumir","s":"agents-of-edgewatch-bestiary","lv":3,"ac":19,"hp":25,"pc":10,"sz":"medium","tp":"spirit","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/binumir.json","li":"OGL"},{"n":"Bishop Keppira D'Bear","s":"shadows-at-sundown-bestiary","lv":11,"ac":31,"hp":150,"pc":20,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/bishop-keppira-dbear.json","li":"OGL"},{"n":"Bison","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":70,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/bison.json","li":"ORC"},{"n":"Bitter Truth Bandit","s":"extinction-curse-bestiary","lv":6,"ac":22,"hp":95,"pc":12,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/bitter-truth-bandit.json","li":"OGL"},{"n":"Bittersweet Sister","s":"revenge-of-the-runelords-bestiary","lv":17,"ac":38,"hp":350,"pc":31,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/bittersweet-sister.json","li":"ORC"},{"n":"Blaanlool","s":"blood-lords-bestiary","lv":8,"ac":27,"hp":150,"pc":16,"sz":"large","tp":"giant","f":"blood-lords-bestiary/book-2-graveclaw/blaanlool.json","li":"OGL"},{"n":"Black Belt","s":"pathfinder-npc-core","lv":12,"ac":32,"hp":220,"pc":25,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/martial-artist/black-belt.json","li":"ORC"},{"n":"Black Smilodon","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":255,"pc":25,"sz":"large","tp":"animal","f":"kingmaker-bestiary/black-smilodon.json","li":"OGL"},{"n":"Black Tear Cutthroat","s":"kingmaker-bestiary","lv":-1,"ac":15,"hp":8,"pc":3,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/black-tear-cutthroat.json","li":"OGL"},{"n":"Black Whale Guard","s":"agents-of-edgewatch-bestiary","lv":12,"ac":32,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/black-whale-guard.json","li":"OGL"},{"n":"Black Whale Guard (F3)","s":"agents-of-edgewatch-bestiary","lv":12,"ac":32,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/black-whale-guard-f3.json","li":"OGL"},{"n":"Blackfingers","s":"curtain-call-bestiary","lv":20,"ac":45,"hp":360,"pc":35,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-3-bring-the-house-down/blackfingers.json","li":"ORC"},{"n":"Blackfingers Acolyte","s":"agents-of-edgewatch-bestiary","lv":6,"ac":24,"hp":95,"pc":16,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/blackfingers-acolyte.json","li":"OGL"},{"n":"Blackfrost Guecubu","s":"gatewalkers-bestiary","lv":8,"ac":27,"hp":110,"pc":15,"sz":"medium","tp":"undead","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/blackfrost-guecubu.json","li":"ORC"},{"n":"Blackfrost Prophet","s":"gatewalkers-bestiary","lv":9,"ac":28,"hp":180,"pc":21,"sz":"large","tp":"undead","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/blackfrost-prophet.json","li":"ORC"},{"n":"Blackfrost Zombie","s":"gatewalkers-bestiary","lv":6,"ac":23,"hp":120,"pc":10,"sz":"medium","tp":"undead","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/blackfrost-zombie.json","li":"ORC"},{"n":"Blacknoon Apprentice","s":"sky-kings-tomb-bestiary","lv":2,"ac":18,"hp":32,"pc":8,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/blacknoon-apprentice.json","li":"OGL"},{"n":"Blade Magus","s":"stolen-fate-bestiary","lv":11,"ac":31,"hp":195,"pc":18,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/blade-magus.json","li":"OGL"},{"n":"Blade Mercenary","s":"stolen-fate-bestiary","lv":9,"ac":27,"hp":165,"pc":15,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/blade-mercenary.json","li":"OGL"},{"n":"Blarghest","s":"blog-bestiary","lv":2,"ac":18,"hp":30,"pc":10,"sz":"medium","tp":"fiend","f":"blog-bestiary/blarghest.json","li":"OGL"},{"n":"Blasphemer of Zon-Kuthon","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":35,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/blasphemer-of-zon-kuthon.json","li":"ORC"},{"n":"Bleachling Survivor","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":34,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/gnome/bleachling-survivor.json","li":"ORC"},{"n":"Blighted Speaker in Spores","s":"wardens-of-wildwood-bestiary","lv":13,"ac":32,"hp":250,"pc":25,"sz":"large","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/blighted-speaker-in-spores.json","li":"ORC"},{"n":"Blisterwell Gaoler","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":21,"hp":85,"pc":15,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/blisterwell-gaoler.json","li":"ORC"},{"n":"Blisterwell Oathrisen","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":26,"hp":110,"pc":15,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/blisterwell-oathrisen.json","li":"ORC"},{"n":"Blisterwell Warrior","s":"triumph-of-the-tusk-bestiary","lv":4,"ac":21,"hp":65,"pc":14,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/blisterwell-warrior.json","li":"ORC"},{"n":"Blizzardborn","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":105,"pc":14,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/blizzardborn.json","li":"ORC"},{"n":"Blood Boar","s":"age-of-ashes-bestiary","lv":6,"ac":23,"hp":98,"pc":15,"sz":"medium","tp":"animal","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/blood-boar.json","li":"OGL"},{"n":"Blood Hag","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":155,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/blood-hag.json","li":"ORC"},{"n":"Blood Ooze","s":"fall-of-plaguestone","lv":4,"ac":12,"hp":90,"pc":8,"sz":"large","tp":"ooze","f":"fall-of-plaguestone/blood-ooze.json","li":"OGL"},{"n":"Blood Painter","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":155,"pc":19,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/blood-painter.json","li":"ORC"},{"n":"Blood Wolf","s":"extinction-curse-bestiary","lv":3,"ac":18,"hp":50,"pc":9,"sz":"medium","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/blood-wolf.json","li":"OGL"},{"n":"Blood-Pear Tree","s":"stolen-fate-bestiary","lv":17,"ac":38,"hp":350,"pc":29,"sz":"huge","tp":"undead","f":"stolen-fate-bestiary/book-2-the-destiny-war/blood-pear-tree.json","li":"OGL"},{"n":"Bloodfog","s":"prey-for-death-bestiary","lv":17,"ac":41,"hp":250,"pc":29,"sz":"gargantuan","tp":"aberration","f":"prey-for-death-bestiary/bloodfog.json","li":"ORC"},{"n":"Bloodlash Bush","s":"fall-of-plaguestone","lv":2,"ac":16,"hp":35,"pc":6,"sz":"small","tp":"plant","f":"fall-of-plaguestone/bloodlash-bush.json","li":"OGL"},{"n":"Bloodseeker Swarm","s":"sky-kings-tomb-bestiary","lv":3,"ac":20,"hp":36,"pc":8,"sz":"medium","tp":"animal","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/bloodseeker-swarm.json","li":"OGL"},{"n":"Bloodshroud","s":"blood-lords-bestiary","lv":13,"ac":33,"hp":210,"pc":23,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/bloodshroud.json","li":"OGL"},{"n":"Bloodsiphon","s":"abomination-vaults-bestiary","lv":4,"ac":19,"hp":80,"pc":10,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/bloodsiphon.json","li":"OGL"},{"n":"Bloodwing","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"huge","tp":"dragon","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/bloodwing.json","li":"ORC"},{"n":"Bloody Barber Goon","s":"agents-of-edgewatch-bestiary","lv":12,"ac":32,"hp":210,"pc":25,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/bloody-barber-goon.json","li":"OGL"},{"n":"Bloody Berleth","s":"agents-of-edgewatch-bestiary","lv":11,"ac":30,"hp":245,"pc":24,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/bloody-berleth.json","li":"OGL"},{"n":"Bloody Blade Mercenary","s":"age-of-ashes-bestiary","lv":1,"ac":18,"hp":19,"pc":6,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/bloody-blade-mercenary.json","li":"OGL"},{"n":"Bloody Hands","s":"prey-for-death-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"large","tp":"fiend","f":"prey-for-death-bestiary/bloody-hands.json","li":"ORC"},{"n":"Bloom Cultist","s":"kingmaker-bestiary","lv":5,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/bloom-cultist.json","li":"OGL"},{"n":"Bloom of Lamashtu","s":"kingmaker-bestiary","lv":10,"ac":27,"hp":210,"pc":21,"sz":"large","tp":"fiend","f":"kingmaker-bestiary/bloom-of-lamashtu.json","li":"OGL"},{"n":"Bloom Wyvern","s":"kingmaker-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"kingmaker-bestiary/bloom-wyvern.json","li":"OGL"},{"n":"Bloomborn Athach","s":"kingmaker-bestiary","lv":17,"ac":40,"hp":375,"pc":31,"sz":"huge","tp":"giant","f":"kingmaker-bestiary/bloomborn-athach.json","li":"OGL"},{"n":"Blooming Guardian","s":"howl-of-the-wild-bestiary","lv":15,"ac":36,"hp":360,"pc":29,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/blooming-guardian.json","li":"ORC"},{"n":"Blue Viper (Level 14)","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":34,"hp":260,"pc":28,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/blue-viper-level-14.json","li":"OGL"},{"n":"Blue Viper (Level 16)","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":36,"hp":300,"pc":30,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/blue-viper-level-16.json","li":"OGL"},{"n":"Blue Viper (Level 20)","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":44,"hp":366,"pc":33,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/blue-viper-level-20.json","li":"OGL"},{"n":"Blune Bandersworth","s":"agents-of-edgewatch-bestiary","lv":20,"ac":43,"hp":375,"pc":36,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/blune-bandersworth.json","li":"OGL"},{"n":"Blune's Illusory Toady","s":"agents-of-edgewatch-bestiary","lv":16,"ac":36,"hp":150,"pc":27,"sz":"medium","tp":"","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/blunes-illusory-toady.json","li":"OGL"},{"n":"Blustering Gale","s":"rage-of-elements-bestiary","lv":11,"ac":30,"hp":150,"pc":20,"sz":"gargantuan","tp":"elemental","f":"rage-of-elements-bestiary/blustering-gale.json","li":"OGL"},{"n":"Boar","s":"pathfinder-monster-core","lv":2,"ac":15,"hp":40,"pc":8,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/boar.json","li":"ORC"},{"n":"Boar (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":15,"hp":40,"pc":8,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/boar-bb.json","li":"ORC"},{"n":"Bodach","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":110,"pc":14,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/bodach.json","li":"ORC"},{"n":"Bodyguard","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":25,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/bodyguard.json","li":"ORC"},{"n":"Bog Archdragon","s":"lost-omens-bestiary","lv":19,"ac":42,"hp":415,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-archdragon.json","li":"ORC"},{"n":"Bog Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":42,"hp":415,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-archdragon-spellcaster.json","li":"ORC"},{"n":"Bog Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":200,"pc":22,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Bog Dragon (Adult)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":200,"pc":22,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-adult.json","li":"ORC"},{"n":"Bog Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":16,"ac":38,"hp":335,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Bog Dragon (Ancient)","s":"lost-omens-bestiary","lv":16,"ac":38,"hp":335,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-ancient.json","li":"ORC"},{"n":"Bog Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":115,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-young-spellcaster.json","li":"ORC"},{"n":"Bog Dragon (Young)","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":115,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/bog/bog-dragon-young.json","li":"ORC"},{"n":"Bog Mummy Amalgamation","s":"strength-of-thousands-bestiary","lv":9,"ac":27,"hp":160,"pc":18,"sz":"large","tp":"undead","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/bog-mummy-amalgamation.json","li":"OGL"},{"n":"Bog Mummy Cultist","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":135,"pc":19,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/bog-mummy-cultist.json","li":"OGL"},{"n":"Bogey","s":"extinction-curse-bestiary","lv":3,"ac":20,"hp":35,"pc":9,"sz":"small","tp":"fey","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/bogey.json","li":"OGL"},{"n":"Bogeyman","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"medium","tp":"fey","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/bogeyman.json","li":"OGL"},{"n":"Boggard Cultist","s":"kingmaker-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/boggard-cultist.json","li":"OGL"},{"n":"Boggard Cultist","s":"spore-war-bestiary","lv":15,"ac":36,"hp":280,"pc":27,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/boggard-cultist.json","li":"ORC"},{"n":"Boggard Dreadknot","s":"battlecry-bestiary","lv":10,"ac":29,"hp":180,"pc":19,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/boggard-dreadknot.json","li":"ORC"},{"n":"Boggard Guard","s":"standalone-adventures","lv":-1,"ac":14,"hp":9,"pc":5,"sz":"medium","tp":"humanoid","f":"standalone-adventures/adventure-3-a-dirge-for-dunmire/boggard-guard.json","li":"ORC"},{"n":"Boggard Hunter","s":"strength-of-thousands-bestiary","lv":7,"ac":24,"hp":140,"pc":14,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/boggard-hunter.json","li":"OGL"},{"n":"Boggard Scout","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":24,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/boggard-scout.json","li":"ORC"},{"n":"Boggard Scouting Party","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":19,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/boggard-scouting-party.json","li":"ORC"},{"n":"Boggard Swampseer","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":40,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/boggard-swampseer.json","li":"ORC"},{"n":"Boggard Warden","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":160,"pc":19,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/boggard-warden.json","li":"OGL"},{"n":"Boggard Warrior","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":38,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/boggard-warrior.json","li":"ORC"},{"n":"Bogwid","s":"pathfinder-monster-core","lv":5,"ac":20,"hp":100,"pc":12,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/bogwid.json","li":"ORC"},{"n":"Boiling Spring","s":"rage-of-elements-bestiary","lv":13,"ac":34,"hp":255,"pc":23,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/boiling-spring.json","li":"OGL"},{"n":"Bolan Nogasso","s":"gatewalkers-bestiary","lv":2,"ac":18,"hp":40,"pc":11,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-1-the-seventh-arch/bolan-nogasso.json","li":"ORC"},{"n":"Bolar Of Stonemoor","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":14,"hp":13,"pc":3,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/bolar-of-stonemoor.json","li":"OGL"},{"n":"Bolti Sorrinson","s":"stolen-fate-bestiary","lv":20,"ac":44,"hp":399,"pc":34,"sz":"medium","tp":"undead","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/bolti-sorrinson.json","li":"OGL"},{"n":"Bone Croupier","s":"book-of-the-dead-bestiary","lv":5,"ac":22,"hp":50,"pc":11,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/bone-croupier.json","li":"OGL"},{"n":"Bone Croupier","s":"extinction-curse-bestiary","lv":5,"ac":22,"hp":50,"pc":11,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/bone-croupier.json","li":"OGL"},{"n":"Bone Gladiator","s":"abomination-vaults-bestiary","lv":7,"ac":24,"hp":105,"pc":16,"sz":"huge","tp":"undead","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/bone-gladiator.json","li":"OGL"},{"n":"Bone Mother","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":80,"pc":13,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/ratfolk/bone-mother.json","li":"ORC"},{"n":"Bone Prophet","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/bone-prophet.json","li":"ORC"},{"n":"Bone Scavenger","s":"pathfinder-npc-core","lv":0,"ac":16,"hp":16,"pc":6,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kholo/bone-scavenger.json","li":"ORC"},{"n":"Bone Shard Tough","s":"blood-lords-bestiary","lv":0,"ac":15,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-1-zombie-feast/bone-shard-tough.json","li":"OGL"},{"n":"Bone Skipper Swarm","s":"agents-of-edgewatch-bestiary","lv":6,"ac":24,"hp":120,"pc":17,"sz":"large","tp":"animal","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/bone-skipper-swarm.json","li":"OGL"},{"n":"Bone Warrior","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":21,"hp":65,"pc":11,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/bone-warrior.json","li":"OGL"},{"n":"Bonebleacher Bugbear","s":"wardens-of-wildwood-bestiary","lv":12,"ac":31,"hp":220,"pc":25,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/bonebleacher-bugbear.json","li":"ORC"},{"n":"Boreal, The North Wind","s":"rage-of-elements-bestiary","lv":18,"ac":43,"hp":310,"pc":33,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/boreal-the-north-wind.json","li":"OGL"},{"n":"Boss Skrawng","s":"abomination-vaults-bestiary","lv":1,"ac":16,"hp":24,"pc":7,"sz":"small","tp":"fey","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/boss-skrawng.json","li":"OGL"},{"n":"Bosun","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/bosun.json","li":"ORC"},{"n":"Bottlenose Dolphin","s":"pathfinder-monster-core","lv":0,"ac":15,"hp":16,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/bottlenose-dolphin.json","li":"ORC"},{"n":"Bounty Hunter","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/bounty-hunter.json","li":"ORC"},{"n":"Brainchild","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":200,"pc":18,"sz":"large","tp":"","f":"pathfinder-monster-core-2/brainchild.json","li":"ORC"},{"n":"Brakknap","s":"hellbreakers-bestiary","lv":4,"ac":20,"hp":55,"pc":11,"sz":"small","tp":"humanoid","f":"hellbreakers-bestiary/brakknap.json","li":"ORC"},{"n":"Bramble Champion Construct","s":"strength-of-thousands-bestiary","lv":3,"ac":20,"hp":45,"pc":10,"sz":"large","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/bramble-champion-construct.json","li":"OGL"},{"n":"Brass Bastion","s":"rage-of-elements-bestiary","lv":14,"ac":36,"hp":205,"pc":22,"sz":"huge","tp":"construct","f":"rage-of-elements-bestiary/brass-bastion.json","li":"OGL"},{"n":"Brastlewark Sapper Squad","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/brastlewark-sapper-squad.json","li":"ORC"},{"n":"Bregdi","s":"agents-of-edgewatch-bestiary","lv":9,"ac":27,"hp":180,"pc":18,"sz":"large","tp":"animal","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/bregdi.json","li":"OGL"},{"n":"Briargeist","s":"spore-war-bestiary","lv":15,"ac":35,"hp":240,"pc":27,"sz":"medium","tp":"spirit","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/briargeist.json","li":"ORC"},{"n":"Brighite Herexen","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/brighite-herexen.json","li":"OGL"},{"n":"Bright Walker","s":"abomination-vaults-bestiary","lv":9,"ac":26,"hp":115,"pc":19,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/bright-walker.json","li":"OGL"},{"n":"Brimorak","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":80,"pc":12,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/brimorak.json","li":"ORC"},{"n":"Brimstone Rat","s":"troubles-in-otari-bestiary","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"small","tp":"animal","f":"troubles-in-otari-bestiary/brimstone-rat.json","li":"OGL"},{"n":"Brine Archdragon","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":460,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-archdragon.json","li":"ORC"},{"n":"Brine Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":460,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-archdragon-spellcaster.json","li":"ORC"},{"n":"Brine Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":270,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Brine Dragon (Adult)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":270,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-adult.json","li":"ORC"},{"n":"Brine Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":395,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Brine Dragon (Ancient)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":395,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-ancient.json","li":"ORC"},{"n":"Brine Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":170,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-young-spellcaster.json","li":"ORC"},{"n":"Brine Dragon (Young)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":170,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/brine/brine-dragon-young.json","li":"ORC"},{"n":"Brine Shark","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/brine-shark.json","li":"ORC"},{"n":"Brine Shark (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"elemental","f":"menace-under-otari-bestiary/brine-shark-bb.json","li":"ORC"},{"n":"Bristle Boar","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"medium","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/bristle-boar.json","li":"ORC"},{"n":"Bristlebane","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":16,"hp":40,"pc":8,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/bristlebane.json","li":"OGL"},{"n":"Bristled Reef Shark","s":"myth-speaker-bestiary","lv":1,"ac":16,"hp":21,"pc":7,"sz":"medium","tp":"animal","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/bristled-reef-shark.json","li":"ORC"},{"n":"Brochmaw","s":"rage-of-elements-bestiary","lv":13,"ac":32,"hp":259,"pc":24,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/brochmaw.json","li":"OGL"},{"n":"Broken Centurion","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":31,"hp":170,"pc":20,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/broken-centurion.json","li":"OGL"},{"n":"Brontosaurus","s":"pathfinder-monster-core","lv":10,"ac":28,"hp":220,"pc":16,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/brontosaurus.json","li":"ORC"},{"n":"Bronwyl Holloward","s":"sky-kings-tomb-bestiary","lv":8,"ac":25,"hp":135,"pc":15,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/bronwyl-holloward.json","li":"OGL"},{"n":"Brood Leech Swarm","s":"pathfinder-monster-core-2","lv":4,"ac":19,"hp":50,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/brood-leech-swarm.json","li":"ORC"},{"n":"Brownie","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":21,"pc":7,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/brownie.json","li":"ORC"},{"n":"Brughadatch","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":210,"pc":19,"sz":"medium","tp":"fey","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/brughadatch.json","li":"OGL"},{"n":"Brumesgarth","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":42,"hp":330,"pc":32,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/brumesgarth.json","li":"ORC"},{"n":"Brush Thylacine","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"animal","f":"kingmaker-bestiary/brush-thylacine.json","li":"OGL"},{"n":"Bshez \"Sand Claws\" Shak","s":"age-of-ashes-bestiary","lv":17,"ac":40,"hp":330,"pc":26,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/bshez-sand-claws-shak.json","li":"OGL"},{"n":"Bugaboo","s":"extinction-curse-bestiary","lv":6,"ac":24,"hp":95,"pc":14,"sz":"medium","tp":"fey","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/bugaboo.json","li":"OGL"},{"n":"Bugark","s":"triumph-of-the-tusk-bestiary","lv":12,"ac":32,"hp":211,"pc":22,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/bugark.json","li":"ORC"},{"n":"Bugbear Marauder","s":"troubles-in-otari-bestiary","lv":2,"ac":17,"hp":34,"pc":7,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/bugbear-marauder.json","li":"OGL"},{"n":"Bugbear Prowler","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":34,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/bugbear-prowler.json","li":"ORC"},{"n":"Bugbear Prowler (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":17,"hp":34,"pc":7,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/bugbear-prowler-bb.json","li":"ORC"},{"n":"Bugbear Tormentor","s":"pathfinder-monster-core","lv":3,"ac":20,"hp":44,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/bugbear-tormentor.json","li":"ORC"},{"n":"Bugul Noz","s":"extinction-curse-bestiary","lv":12,"ac":31,"hp":200,"pc":23,"sz":"medium","tp":"fey","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/bugul-noz.json","li":"OGL"},{"n":"Bul-Gae","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":33,"hp":255,"pc":26,"sz":"medium","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/bul-gae.json","li":"OGL"},{"n":"Bul-Gae","s":"lost-omens-bestiary","lv":14,"ac":33,"hp":255,"pc":26,"sz":"medium","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/bul-gae.json","li":"ORC"},{"n":"Bulbous Blood Ooze","s":"shades-of-blood-bestiary","lv":6,"ac":14,"hp":140,"pc":11,"sz":"large","tp":"ooze","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/bulbous-blood-ooze.json","li":"ORC"},{"n":"Bulette","s":"blood-lords-bestiary","lv":8,"ac":30,"hp":120,"pc":16,"sz":"huge","tp":"animal","f":"blood-lords-bestiary/book-3-field-of-maidens/bulette.json","li":"OGL"},{"n":"Bull of Zagresh","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":23,"hp":140,"pc":15,"sz":"huge","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/bull-of-zagresh.json","li":"ORC"},{"n":"Bureaucrat Mob","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":45,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/bureaucrat-mob.json","li":"ORC"},{"n":"Burglar","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/burglar.json","li":"ORC"},{"n":"Burnbearer","s":"quest-for-the-frozen-flame-bestiary","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/burnbearer.json","li":"OGL"},{"n":"Burning Mammoth Commando","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":25,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/burning-mammoth-commando.json","li":"OGL"},{"n":"Burning Mammoth Hunter","s":"quest-for-the-frozen-flame-bestiary","lv":0,"ac":16,"hp":15,"pc":7,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/burning-mammoth-hunter.json","li":"OGL"},{"n":"Burning Mammoth Longshield","s":"quest-for-the-frozen-flame-bestiary","lv":1,"ac":15,"hp":20,"pc":8,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/burning-mammoth-longshield.json","li":"OGL"},{"n":"Burning Mammoth Reaver","s":"quest-for-the-frozen-flame-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/burning-mammoth-reaver.json","li":"OGL"},{"n":"Butterfly Blade Warrior","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/butterfly-blade-warrior.json","li":"OGL"},{"n":"Bystander","s":"wardens-of-wildwood-bestiary","lv":1,"ac":18,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/bystander.json","li":"ORC"},{"n":"Bythos","s":"pathfinder-monster-core-2","lv":16,"ac":39,"hp":245,"pc":30,"sz":"large","tp":"monitor","f":"pathfinder-monster-core-2/bythos.json","li":"ORC"},{"n":"Cacaodaemon","s":"blog-bestiary","lv":1,"ac":16,"hp":22,"pc":2,"sz":"tiny","tp":"fiend","f":"blog-bestiary/cacaodaemon.json","li":"OGL"},{"n":"Cacodaemon","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":22,"pc":6,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core/cacodaemon.json","li":"ORC"},{"n":"Cadaverous Rake","s":"book-of-the-dead-bestiary","lv":8,"ac":27,"hp":125,"pc":16,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/cadaverous-rake.json","li":"OGL"},{"n":"Caeto Vulaunex","s":"hellbreakers-bestiary","lv":11,"ac":30,"hp":200,"pc":21,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/caeto-vulaunex.json","li":"ORC"},{"n":"Cairn Wight (G4)","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":20,"hp":67,"pc":11,"sz":"medium","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/cairn-wight-g4.json","li":"OGL"},{"n":"Calcifda","s":"quest-for-the-frozen-flame-bestiary","lv":10,"ac":31,"hp":140,"pc":21,"sz":"medium","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/calcifda.json","li":"OGL"},{"n":"Caldera Oni","s":"pathfinder-monster-core","lv":14,"ac":35,"hp":315,"pc":26,"sz":"large","tp":"giant","f":"pathfinder-monster-core/caldera-oni.json","li":"ORC"},{"n":"Calennia","s":"agents-of-edgewatch-bestiary","lv":16,"ac":39,"hp":290,"pc":28,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/calennia.json","li":"OGL"},{"n":"Caliddo Haruvex","s":"abomination-vaults-bestiary","lv":10,"ac":31,"hp":175,"pc":19,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/caliddo-haruvex.json","li":"OGL"},{"n":"Caligni Assassin","s":"sky-kings-tomb-bestiary","lv":8,"ac":27,"hp":135,"pc":14,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/caligni-assassin.json","li":"OGL"},{"n":"Caligni Caller","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":80,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/caligni-caller.json","li":"ORC"},{"n":"Caligni Dancer","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":18,"pc":6,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/caligni-dancer.json","li":"ORC"},{"n":"Caligni Dancer (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":17,"hp":18,"pc":6,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/caligni-dancer-bb.json","li":"ORC"},{"n":"Caligni Defender","s":"abomination-vaults-bestiary","lv":8,"ac":28,"hp":125,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/caligni-defender.json","li":"OGL"},{"n":"Caligni Hunter","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/caligni-hunter.json","li":"ORC"},{"n":"Caligni Hunter (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/caligni-hunter-bb.json","li":"ORC"},{"n":"Caligni Skulker","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":30,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/caligni-skulker.json","li":"ORC"},{"n":"Caligni Skulker (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":19,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/caligni-skulker-bb.json","li":"ORC"},{"n":"Caligni Vanguard","s":"pathfinder-monster-core-2","lv":5,"ac":24,"hp":50,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/caligni-vanguard.json","li":"ORC"},{"n":"Calikang","s":"pathfinder-monster-core-2","lv":12,"ac":31,"hp":235,"pc":22,"sz":"large","tp":"humanoid","f":"pathfinder-monster-core-2/calikang.json","li":"ORC"},{"n":"Calmont","s":"age-of-ashes-bestiary","lv":3,"ac":20,"hp":35,"pc":6,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/calmont.json","li":"OGL"},{"n":"Camarach","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":320,"pc":27,"sz":"gargantuan","tp":"monitor","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/camarach.json","li":"OGL"},{"n":"Camazotz Cultist","s":"shades-of-blood-bestiary","lv":0,"ac":14,"hp":16,"pc":6,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/camazotz-cultist.json","li":"ORC"},{"n":"Camel","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":20,"pc":4,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/camel.json","li":"ORC"},{"n":"Candlaron's Echo","s":"age-of-ashes-bestiary","lv":21,"ac":46,"hp":315,"pc":35,"sz":"medium","tp":"spirit","f":"age-of-ashes-bestiary/book-6-broken-promises/candlarons-echo.json","li":"OGL"},{"n":"Canker Cultist","s":"abomination-vaults-bestiary","lv":3,"ac":19,"hp":45,"pc":11,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/canker-cultist.json","li":"OGL"},{"n":"Canopy Elder","s":"fists-of-the-ruby-phoenix-bestiary","lv":19,"ac":42,"hp":445,"pc":32,"sz":"gargantuan","tp":"plant","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/canopy-elder.json","li":"OGL"},{"n":"Capritellix","s":"rage-of-elements-bestiary","lv":17,"ac":39,"hp":290,"pc":30,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/capritellix.json","li":"OGL"},{"n":"Capstan Swabbie","s":"gatewalkers-bestiary","lv":7,"ac":25,"hp":115,"pc":12,"sz":"large","tp":"construct","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/capstan-swabbie.json","li":"ORC"},{"n":"Captain Lamperia Bane","s":"hellbreakers-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/captain-lamperia-bane.json","li":"ORC"},{"n":"Captain Of The Guard","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":95,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/captain-of-the-guard.json","li":"ORC"},{"n":"Captain Salah","s":"gatewalkers-bestiary","lv":3,"ac":20,"hp":40,"pc":9,"sz":"large","tp":"beast","f":"gatewalkers-bestiary/book-1-the-seventh-arch/captain-salah.json","li":"ORC"},{"n":"Captain Talymir","s":"spore-war-bestiary","lv":11,"ac":31,"hp":180,"pc":21,"sz":"medium","tp":"undead","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/captain-talymir.json","li":"ORC"},{"n":"Captured Dezullon","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":30,"hp":130,"pc":18,"sz":"medium","tp":"plant","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/captured-dezullon.json","li":"OGL"},{"n":"Carbuncle","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":7,"sz":"tiny","tp":"beast","f":"pathfinder-monster-core-2/carbuncle.json","li":"ORC"},{"n":"Carl The Cobbler","s":"one-shot-bestiary","lv":5,"ac":21,"hp":60,"pc":12,"sz":"small","tp":"fey","f":"one-shot-bestiary/a-few-flowers-more/carl-the-cobbler.json","li":"OGL"},{"n":"Carman Rajani","s":"abomination-vaults-bestiary","lv":6,"ac":24,"hp":95,"pc":12,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/carman-rajani.json","li":"OGL"},{"n":"Carnivorous Blob","s":"pathfinder-monster-core-2","lv":13,"ac":20,"hp":300,"pc":23,"sz":"gargantuan","tp":"ooze","f":"pathfinder-monster-core-2/carnivorous-blob.json","li":"ORC"},{"n":"Carnivorous Crystal","s":"age-of-ashes-bestiary","lv":11,"ac":20,"hp":300,"pc":15,"sz":"medium","tp":"ooze","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/carnivorous-crystal.json","li":"OGL"},{"n":"Carnotaurus","s":"howl-of-the-wild-bestiary","lv":7,"ac":24,"hp":145,"pc":15,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/carnotaurus.json","li":"ORC"},{"n":"Carved Beast","s":"rage-of-elements-bestiary","lv":6,"ac":22,"hp":92,"pc":16,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/carved-beast.json","li":"OGL"},{"n":"Carvey","s":"agents-of-edgewatch-bestiary","lv":8,"ac":26,"hp":140,"pc":14,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/carvey.json","li":"OGL"},{"n":"Casino Bouncer","s":"agents-of-edgewatch-bestiary","lv":8,"ac":27,"hp":150,"pc":20,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/casino-bouncer.json","li":"OGL"},{"n":"Cassisian","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"tiny","tp":"celestial","f":"pathfinder-monster-core/cassisian.json","li":"ORC"},{"n":"Castaway","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":80,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/castaway.json","li":"ORC"},{"n":"Castoroides","s":"quest-for-the-frozen-flame-bestiary","lv":3,"ac":19,"hp":45,"pc":10,"sz":"medium","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/castoroides.json","li":"OGL"},{"n":"Castruccio Irovetti","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":300,"pc":26,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/castruccio-irovetti.json","li":"OGL"},{"n":"Cat Sith","s":"extinction-curse-bestiary","lv":6,"ac":23,"hp":110,"pc":14,"sz":"tiny","tp":"fey","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/cat-sith.json","li":"OGL"},{"n":"Cataclysm Beetle","s":"strength-of-thousands-bestiary","lv":18,"ac":44,"hp":340,"pc":30,"sz":"huge","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/cataclysm-beetle.json","li":"OGL"},{"n":"Caterpillar Carriage","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":380,"pc":30,"sz":"gargantuan","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/caterpillar-carriage.json","li":"ORC"},{"n":"Catfolk Name Collector","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":70,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/catfolk/catfolk-name-collector.json","li":"ORC"},{"n":"Catfolk Pouncer","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":17,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/catfolk-pouncer.json","li":"ORC"},{"n":"Catoblepas","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":215,"pc":22,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/catoblepas.json","li":"ORC"},{"n":"Catrina","s":"pathfinder-monster-core-2","lv":5,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/catrina.json","li":"ORC"},{"n":"Caustic Monitor","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":34,"hp":235,"pc":22,"sz":"huge","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/caustic-monitor.json","li":"OGL"},{"n":"Caustic Wolf","s":"fall-of-plaguestone","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"animal","f":"fall-of-plaguestone/caustic-wolf.json","li":"OGL"},{"n":"Caustic Wraith","s":"wardens-of-wildwood-bestiary","lv":9,"ac":28,"hp":130,"pc":18,"sz":"medium","tp":"undead","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/caustic-wraith.json","li":"ORC"},{"n":"Cauthooj","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":215,"pc":22,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/cauthooj.json","li":"ORC"},{"n":"Cave Bear","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":95,"pc":13,"sz":"large","tp":"animal","f":"pathfinder-monster-core/cave-bear.json","li":"ORC"},{"n":"Cave Giant","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":110,"pc":15,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/cave-giant.json","li":"ORC"},{"n":"Cave Worm","s":"pathfinder-monster-core","lv":13,"ac":32,"hp":270,"pc":20,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/cave-worm.json","li":"ORC"},{"n":"Cavern Troll","s":"pathfinder-monster-core-2","lv":6,"ac":22,"hp":135,"pc":14,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/cavern-troll.json","li":"ORC"},{"n":"Cavnakash","s":"extinction-curse-bestiary","lv":5,"ac":22,"hp":83,"pc":12,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/cavnakash.json","li":"OGL"},{"n":"Celasik","s":"prey-for-death-bestiary","lv":13,"ac":33,"hp":270,"pc":26,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/celasik.json","li":"ORC"},{"n":"Celestial Menagerie Bruiser","s":"extinction-curse-bestiary","lv":8,"ac":27,"hp":135,"pc":14,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/celestial-menagerie-bruiser.json","li":"OGL"},{"n":"Centaur Herbalist","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":40,"pc":10,"sz":"large","tp":"beast","f":"pathfinder-monster-core/centaur-herbalist.json","li":"ORC"},{"n":"Centaur Scout","s":"kingmaker-bestiary","lv":5,"ac":22,"hp":75,"pc":13,"sz":"large","tp":"beast","f":"kingmaker-bestiary/centaur-scout.json","li":"OGL"},{"n":"Centipede Swarm","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":30,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/centipede-swarm.json","li":"ORC"},{"n":"Cephal Lorentus","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":140,"pc":18,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/cephal-lorentus.json","li":"OGL"},{"n":"Chafkhem","s":"abomination-vaults-bestiary","lv":8,"ac":26,"hp":135,"pc":17,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/chafkhem.json","li":"OGL"},{"n":"Chained Norn","s":"claws-of-the-tyrant-bestiary","lv":20,"ac":46,"hp":375,"pc":41,"sz":"large","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/chained-norn.json","li":"ORC"},{"n":"Chakanaj","s":"night-of-the-gray-death-bestiary","lv":14,"ac":36,"hp":300,"pc":25,"sz":"tiny","tp":"fiend","f":"night-of-the-gray-death-bestiary/chakanaj.json","li":"OGL"},{"n":"Chalky","s":"agents-of-edgewatch-bestiary","lv":9,"ac":27,"hp":150,"pc":15,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/chalky.json","li":"OGL"},{"n":"Champion Automaton","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":170,"pc":18,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/champion-automaton.json","li":"ORC"},{"n":"Champion of Rovagug","s":"pathfinder-npc-core","lv":5,"ac":25,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/champion-of-rovagug.json","li":"ORC"},{"n":"Champion of Shelyn","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/champion-of-shelyn.json","li":"ORC"},{"n":"Champion of Zagresh","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":27,"hp":170,"pc":17,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/champion-of-zagresh.json","li":"ORC"},{"n":"Chandriu Invisar","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":64,"pc":17,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/chandriu-invisar.json","li":"OGL"},{"n":"Changeling Exile","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/changeling-exile.json","li":"ORC"},{"n":"Changeling Hellknight","s":"lost-omens-bestiary","lv":4,"ac":22,"hp":45,"pc":13,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/changeling-hellknight.json","li":"OGL"},{"n":"Chaos Falcon","s":"howl-of-the-wild-bestiary","lv":10,"ac":29,"hp":180,"pc":18,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/chaos-falcon.json","li":"ORC"},{"n":"Chaos Gulgamodh","s":"agents-of-edgewatch-bestiary","lv":21,"ac":46,"hp":400,"pc":35,"sz":"gargantuan","tp":"construct","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/chaos-gulgamodh.json","li":"OGL"},{"n":"Charau-ka","s":"age-of-ashes-bestiary","lv":1,"ac":18,"hp":18,"pc":6,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/charau-ka.json","li":"OGL"},{"n":"Charau-ka Acolyte of Angazhan","s":"lost-omens-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/charau-ka-acolyte-of-angazhan.json","li":"OGL"},{"n":"Charau-ka Butcher","s":"lost-omens-bestiary","lv":6,"ac":21,"hp":95,"pc":13,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/charau-ka-butcher.json","li":"OGL"},{"n":"Charau-ka Dragon Priest","s":"age-of-ashes-bestiary","lv":6,"ac":23,"hp":90,"pc":15,"sz":"small","tp":"dragon","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/charau-ka-dragon-priest.json","li":"OGL"},{"n":"Charau-ka Shrieker Crew","s":"battlecry-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/charau-ka-shrieker-crew.json","li":"ORC"},{"n":"Charau-ka Warrior","s":"lost-omens-bestiary","lv":1,"ac":18,"hp":20,"pc":6,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/charau-ka-warrior.json","li":"OGL"},{"n":"Charghar","s":"blood-lords-bestiary","lv":4,"ac":20,"hp":35,"pc":12,"sz":"medium","tp":"spirit","f":"blood-lords-bestiary/book-1-zombie-feast/charghar.json","li":"OGL"},{"n":"Charlatan","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":40,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/charlatan.json","li":"ORC"},{"n":"Charming Scoundrel","s":"lost-omens-bestiary","lv":4,"ac":21,"hp":54,"pc":8,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/character-guide/charming-scoundrel.json","li":"OGL"},{"n":"Charn Scarnetti","s":"seven-dooms-for-sandpoint-bestiary","lv":3,"ac":18,"hp":45,"pc":11,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/charn-scarnetti.json","li":"OGL"},{"n":"Charnel Creation","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":140,"pc":12,"sz":"large","tp":"construct","f":"pathfinder-monster-core/charnel-creation.json","li":"ORC"},{"n":"Chattering Jaws","s":"blood-lords-bestiary","lv":-1,"ac":13,"hp":8,"pc":3,"sz":"tiny","tp":"construct","f":"blood-lords-bestiary/book-1-zombie-feast/chattering-jaws.json","li":"OGL"},{"n":"Chea","s":"blog-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"medium","tp":"beast","f":"blog-bestiary/chea.json","li":"OGL"},{"n":"Chelaxian Loyalist","s":"hellbreakers-bestiary","lv":-1,"ac":14,"hp":10,"pc":5,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/chelaxian-loyalist.json","li":"ORC"},{"n":"Chelaxian Loyalist Leader","s":"hellbreakers-bestiary","lv":1,"ac":15,"hp":25,"pc":7,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/chelaxian-loyalist-leader.json","li":"ORC"},{"n":"Chelaxian Recruit","s":"hellbreakers-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/chelaxian-recruit.json","li":"ORC"},{"n":"Chemical Zombie","s":"outlaws-of-alkenstar-bestiary","lv":6,"ac":23,"hp":125,"pc":12,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/chemical-zombie.json","li":"OGL"},{"n":"Chernasardo Ranger","s":"claws-of-the-tyrant-bestiary","lv":7,"ac":25,"hp":115,"pc":18,"sz":"medium","tp":"humanoid","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/chernasardo-ranger.json","li":"ORC"},{"n":"Chertus Jheed","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":24,"hp":130,"pc":14,"sz":"medium","tp":"fungus","f":"seven-dooms-for-sandpoint-bestiary/chertus-jheed.json","li":"OGL"},{"n":"Chetamog","s":"wardens-of-wildwood-bestiary","lv":2,"ac":18,"hp":32,"pc":8,"sz":"large","tp":"animal","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/chetamog.json","li":"ORC"},{"n":"Chew Spider","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":22,"pc":6,"sz":"large","tp":"animal","f":"kingmaker-bestiary/chew-spider.json","li":"OGL"},{"n":"Chief Sootscale","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":33,"pc":7,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/chief-sootscale.json","li":"OGL"},{"n":"Child of Belcorra","s":"abomination-vaults-bestiary","lv":5,"ac":21,"hp":85,"pc":12,"sz":"small","tp":"undead","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/child-of-belcorra.json","li":"OGL"},{"n":"Child of Urgathoa","s":"book-of-the-dead-bestiary","lv":8,"ac":27,"hp":165,"pc":18,"sz":"large","tp":"undead","f":"book-of-the-dead-bestiary/child-of-urgathoa.json","li":"OGL"},{"n":"Child Of Venom","s":"agents-of-edgewatch-bestiary","lv":13,"ac":31,"hp":300,"pc":23,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/child-of-venom.json","li":"OGL"},{"n":"Chimera","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"beast","f":"pathfinder-monster-core/chimera.json","li":"ORC"},{"n":"Chimeric Manticore","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":120,"pc":15,"sz":"large","tp":"beast","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/chimeric-manticore.json","li":"OGL"},{"n":"Chimpanzee Visitant","s":"extinction-curse-bestiary","lv":3,"ac":18,"hp":55,"pc":9,"sz":"small","tp":"animal","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/chimpanzee-visitant.json","li":"OGL"},{"n":"Choral","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":100,"pc":14,"sz":"small","tp":"celestial","f":"pathfinder-monster-core/choral.json","li":"ORC"},{"n":"Chromatic Ooze","s":"strength-of-thousands-bestiary","lv":18,"ac":28,"hp":550,"pc":30,"sz":"large","tp":"ooze","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/chromatic-ooze.json","li":"OGL"},{"n":"Chronicler","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/chronicler.json","li":"ORC"},{"n":"Chupacabra","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"beast","f":"pathfinder-monster-core/chupacabra.json","li":"ORC"},{"n":"Cilios","s":"crown-of-the-kobold-king-bestiary","lv":6,"ac":23,"hp":110,"pc":16,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/cilios.json","li":"OGL"},{"n":"Cinder Archdragon","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":525,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cinder/cinder-archdragon.json","li":"ORC"},{"n":"Cinder Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":525,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cinder/cinder-archdragon-spellcaster.json","li":"ORC"},{"n":"Cinder Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":14,"ac":35,"hp":310,"pc":26,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Cinder Dragon (Adult)","s":"pathfinder-monster-core-2","lv":14,"ac":35,"hp":310,"pc":26,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-adult.json","li":"ORC"},{"n":"Cinder Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":19,"ac":42,"hp":425,"pc":35,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Cinder Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":19,"ac":42,"hp":425,"pc":35,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-ancient.json","li":"ORC"},{"n":"Cinder Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":210,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-young-spellcaster.json","li":"ORC"},{"n":"Cinder Dragon (Young)","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":210,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/cinder-dragon-young.json","li":"ORC"},{"n":"Cinder Rat","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/cinder-rat.json","li":"ORC"},{"n":"Cinder Rat (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"elemental","f":"menace-under-otari-bestiary/cinder-rat-bb.json","li":"ORC"},{"n":"City Guard Squadron","s":"pathfinder-npc-core","lv":5,"ac":22,"hp":75,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/official/city-guard-squadron.json","li":"ORC"},{"n":"Ciza","s":"extinction-curse-bestiary","lv":17,"ac":39,"hp":250,"pc":32,"sz":"medium","tp":"spirit","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/ciza.json","li":"OGL"},{"n":"Clay Effigy","s":"pathfinder-monster-core","lv":10,"ac":29,"hp":175,"pc":16,"sz":"large","tp":"construct","f":"pathfinder-monster-core/clay-effigy.json","li":"ORC"},{"n":"Cleansed Cultist","s":"kingmaker-bestiary","lv":6,"ac":24,"hp":100,"pc":12,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/cleansed-cultist.json","li":"OGL"},{"n":"Clearwater Cleaner","s":"outlaws-of-alkenstar-bestiary","lv":0,"ac":15,"hp":13,"pc":6,"sz":"small","tp":"plant","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/clearwater-cleaner.json","li":"OGL"},{"n":"Cliffhunter Pteranodon","s":"gatewalkers-bestiary","lv":2,"ac":18,"hp":35,"pc":8,"sz":"large","tp":"animal","f":"gatewalkers-bestiary/book-1-the-seventh-arch/cliffhunter-pteranodon.json","li":"ORC"},{"n":"Clockwork Amalgam","s":"agents-of-edgewatch-bestiary","lv":20,"ac":43,"hp":455,"pc":36,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/clockwork-amalgam.json","li":"OGL"},{"n":"Clockwork Assassin","s":"agents-of-edgewatch-bestiary","lv":13,"ac":34,"hp":230,"pc":23,"sz":"medium","tp":"construct","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/clockwork-assassin.json","li":"OGL"},{"n":"Clockwork Belimarius","s":"rusthenge-bestiary","lv":4,"ac":20,"hp":45,"pc":10,"sz":"medium","tp":"construct","f":"rusthenge-bestiary/clockwork-belimarius.json","li":"OGL"},{"n":"Clockwork Brewer","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":18,"hp":40,"pc":8,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/clockwork-brewer.json","li":"OGL"},{"n":"Clockwork Buccaneer","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":28,"hp":140,"pc":18,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/clockwork-buccaneer.json","li":"OGL"},{"n":"Clockwork Cannoneer","s":"lost-omens-bestiary","lv":15,"ac":38,"hp":250,"pc":25,"sz":"huge","tp":"construct","f":"lost-omens-bestiary/impossible-lands/clockwork-cannoneer.json","li":"OGL"},{"n":"Clockwork Chopper","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":250,"pc":25,"sz":"medium","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/clockwork-chopper.json","li":"OGL"},{"n":"Clockwork Clock Tower","s":"strength-of-thousands-bestiary","lv":20,"ac":48,"hp":325,"pc":34,"sz":"gargantuan","tp":"construct","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/clockwork-clock-tower.json","li":"OGL"},{"n":"Clockwork Corpse","s":"shades-of-blood-bestiary","lv":5,"ac":20,"hp":75,"pc":9,"sz":"medium","tp":"construct","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/clockwork-corpse.json","li":"ORC"},{"n":"Clockwork Disposer","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":21,"hp":70,"pc":13,"sz":"small","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/clockwork-disposer.json","li":"OGL"},{"n":"Clockwork Door Warden","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":20,"hp":50,"pc":12,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/clockwork-door-warden.json","li":"OGL"},{"n":"Clockwork Dragon","s":"pathfinder-monster-core-2","lv":16,"ac":39,"hp":265,"pc":28,"sz":"huge","tp":"construct","f":"pathfinder-monster-core-2/clockwork-dragon.json","li":"ORC"},{"n":"Clockwork Fabricator","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":19,"hp":50,"pc":8,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/clockwork-fabricator.json","li":"OGL"},{"n":"Clockwork Gunner","s":"outlaws-of-alkenstar-bestiary","lv":8,"ac":26,"hp":100,"pc":16,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/clockwork-gunner.json","li":"OGL"},{"n":"Clockwork Handler","s":"outlaws-of-alkenstar-bestiary","lv":1,"ac":16,"hp":16,"pc":8,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/clockwork-handler.json","li":"OGL"},{"n":"Clockwork Hunter","s":"outlaws-of-alkenstar-bestiary","lv":0,"ac":18,"hp":12,"pc":7,"sz":"small","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/clockwork-hunter.json","li":"OGL"},{"n":"Clockwork Infantry","s":"battlecry-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"gargantuan","tp":"construct","f":"battlecry-bestiary/clockwork-infantry.json","li":"ORC"},{"n":"Clockwork Injector","s":"agents-of-edgewatch-bestiary","lv":14,"ac":34,"hp":250,"pc":23,"sz":"medium","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/clockwork-injector.json","li":"OGL"},{"n":"Clockwork Mage","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":115,"pc":17,"sz":"medium","tp":"construct","f":"pathfinder-monster-core-2/clockwork-mage.json","li":"ORC"},{"n":"Clockwork Puppeteer","s":"outlaws-of-alkenstar-bestiary","lv":12,"ac":33,"hp":205,"pc":20,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/clockwork-puppeteer.json","li":"OGL"},{"n":"Clockwork Rifler","s":"blood-lords-bestiary","lv":6,"ac":24,"hp":80,"pc":16,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/clockwork-rifler.json","li":"OGL"},{"n":"Clockwork Runner Pack","s":"battlecry-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"gargantuan","tp":"construct","f":"battlecry-bestiary/clockwork-runner-pack.json","li":"ORC"},{"n":"Clockwork Sentry","s":"shades-of-blood-bestiary","lv":8,"ac":26,"hp":115,"pc":16,"sz":"large","tp":"construct","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/clockwork-sentry.json","li":"ORC"},{"n":"Clockwork Serpent","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":27,"hp":110,"pc":18,"sz":"large","tp":"construct","f":"seven-dooms-for-sandpoint-bestiary/clockwork-serpent.json","li":"OGL"},{"n":"Clockwork Serpent Spy","s":"rusthenge-bestiary","lv":1,"ac":19,"hp":15,"pc":10,"sz":"tiny","tp":"construct","f":"rusthenge-bestiary/clockwork-serpent-spy.json","li":"OGL"},{"n":"Clockwork Shambler","s":"outlaws-of-alkenstar-bestiary","lv":-1,"ac":12,"hp":20,"pc":0,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/clockwork-shambler.json","li":"OGL"},{"n":"Clockwork Shambler Horde","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":25,"hp":240,"pc":14,"sz":"gargantuan","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/clockwork-shambler-horde.json","li":"OGL"},{"n":"Clockwork Soldier","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":80,"pc":16,"sz":"medium","tp":"construct","f":"pathfinder-monster-core-2/clockwork-soldier.json","li":"ORC"},{"n":"Clockwork Sphinx","s":"outlaws-of-alkenstar-bestiary","lv":8,"ac":26,"hp":130,"pc":19,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/clockwork-sphinx.json","li":"OGL"},{"n":"Clockwork Spy","s":"pathfinder-monster-core-2","lv":-1,"ac":17,"hp":8,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core-2/clockwork-spy.json","li":"ORC"},{"n":"Clockwork Whale","s":"revenge-of-the-runelords-bestiary","lv":17,"ac":40,"hp":315,"pc":30,"sz":"gargantuan","tp":"construct","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/clockwork-whale.json","li":"ORC"},{"n":"Cloud Archdragon","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":475,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-archdragon.json","li":"ORC"},{"n":"Cloud Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":475,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-archdragon-spellcaster.json","li":"ORC"},{"n":"Cloud Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":255,"pc":28,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Cloud Dragon (Adult)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":255,"pc":28,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-adult.json","li":"ORC"},{"n":"Cloud Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":355,"pc":34,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Cloud Dragon (Ancient)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":355,"pc":34,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-ancient.json","li":"ORC"},{"n":"Cloud Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":175,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-young-spellcaster.json","li":"ORC"},{"n":"Cloud Dragon (Young)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":175,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/cloud/cloud-dragon-young.json","li":"ORC"},{"n":"Cloud Giant","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":220,"pc":22,"sz":"huge","tp":"giant","f":"pathfinder-monster-core/cloud-giant.json","li":"ORC"},{"n":"Cloudsplitter","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":335,"pc":32,"sz":"large","tp":"spirit","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/cloudsplitter.json","li":"OGL"},{"n":"Coarti","s":"pathfinder-monster-core","lv":7,"ac":24,"hp":110,"pc":17,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/coarti.json","li":"ORC"},{"n":"Coarti Spy","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":110,"pc":17,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/coarti-spy.json","li":"ORC"},{"n":"Cobblebone Swarm","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":30,"pc":9,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/cobblebone-swarm.json","li":"OGL"},{"n":"Cobbleswarm (AoE)","s":"agents-of-edgewatch-bestiary","lv":2,"ac":17,"hp":20,"pc":9,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/cobbleswarm-aoe.json","li":"OGL"},{"n":"Cockatrice","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":45,"pc":8,"sz":"small","tp":"beast","f":"pathfinder-monster-core/cockatrice.json","li":"ORC"},{"n":"Cockroach Swarm","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":20,"pc":6,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/cockroach-swarm.json","li":"ORC"},{"n":"Cocoon of Lucid Potential","s":"pathfinder-dark-archive","lv":13,"ac":33,"hp":290,"pc":26,"sz":"gargantuan","tp":"aberration","f":"pathfinder-dark-archive/npcs/cocoon-of-lucid-potential.json","li":"ORC"},{"n":"Coil Spy","s":"pathfinder-monster-core","lv":4,"ac":22,"hp":48,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/coil-spy.json","li":"ORC"},{"n":"Coiled Conifer","s":"wardens-of-wildwood-bestiary","lv":13,"ac":34,"hp":238,"pc":21,"sz":"huge","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/coiled-conifer.json","li":"ORC"},{"n":"Coldmire Pond","s":"rage-of-elements-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/coldmire-pond.json","li":"OGL"},{"n":"Coloxus","s":"seven-dooms-for-sandpoint-bestiary","lv":12,"ac":33,"hp":270,"pc":22,"sz":"medium","tp":"fiend","f":"seven-dooms-for-sandpoint-bestiary/coloxus.json","li":"OGL"},{"n":"Combat Engineer","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/combat-engineer.json","li":"ORC"},{"n":"Combusted","s":"book-of-the-dead-bestiary","lv":3,"ac":19,"hp":65,"pc":6,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/combusted.json","li":"OGL"},{"n":"Commander Arsiella Dei","s":"claws-of-the-tyrant-bestiary","lv":9,"ac":28,"hp":155,"pc":21,"sz":"medium","tp":"humanoid","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/commander-arsiella-dei.json","li":"ORC"},{"n":"Commander Yrasthura","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":330,"pc":28,"sz":"gargantuan","tp":"giant","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/commander-yrasthura.json","li":"ORC"},{"n":"Commoner","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":10,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/commoner.json","li":"ORC"},{"n":"Comozant Wyrd","s":"rage-of-elements-bestiary","lv":5,"ac":21,"hp":60,"pc":12,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/comozant-wyrd.json","li":"OGL"},{"n":"Compromised Door Warden","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":20,"hp":50,"pc":12,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/compromised-door-warden.json","li":"OGL"},{"n":"Compsognathus","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"tiny","tp":"animal","f":"pathfinder-monster-core/compsognathus.json","li":"ORC"},{"n":"Compsognathus Swarm","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":40,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/compsognathus-swarm.json","li":"ORC"},{"n":"Con Rit","s":"pathfinder-monster-core","lv":7,"ac":27,"hp":100,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/con-rit.json","li":"ORC"},{"n":"Concert Frog","s":"howl-of-the-wild-bestiary","lv":8,"ac":27,"hp":150,"pc":16,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/concert-frog.json","li":"ORC"},{"n":"Conductor","s":"shades-of-blood-bestiary","lv":9,"ac":25,"hp":130,"pc":20,"sz":"medium","tp":"fiend","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/conductor.json","li":"ORC"},{"n":"Conqueror Worm","s":"night-of-the-gray-death-bestiary","lv":21,"ac":46,"hp":460,"pc":37,"sz":"gargantuan","tp":"aberration","f":"night-of-the-gray-death-bestiary/conqueror-worm.json","li":"OGL"},{"n":"Conscript Squad","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":54,"pc":8,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/military/conscript-squad.json","li":"ORC"},{"n":"Conspiracist","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":15,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/conspiracist.json","li":"ORC"},{"n":"Conspirator Archdragon","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/conspirator/conspirator-archdragon.json","li":"ORC"},{"n":"Conspirator Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/conspirator/conspirator-archdragon-spellcaster.json","li":"ORC"},{"n":"Conspirator Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":215,"pc":23,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Conspirator Dragon (Adult)","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":215,"pc":23,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-adult.json","li":"ORC"},{"n":"Conspirator Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":17,"ac":40,"hp":345,"pc":30,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Conspirator Dragon (Ancient)","s":"pathfinder-monster-core","lv":17,"ac":40,"hp":345,"pc":30,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-ancient.json","li":"ORC"},{"n":"Conspirator Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-young-spellcaster.json","li":"ORC"},{"n":"Conspirator Dragon (Young)","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/conspirator-dragon-young.json","li":"ORC"},{"n":"Construction Worker","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":35,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/construction-worker.json","li":"ORC"},{"n":"Contemplative","s":"strength-of-thousands-bestiary","lv":2,"ac":19,"hp":32,"pc":8,"sz":"medium","tp":"aberration","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/contemplative.json","li":"OGL"},{"n":"Contemplative Meditant","s":"strength-of-thousands-bestiary","lv":15,"ac":38,"hp":275,"pc":29,"sz":"medium","tp":"aberration","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/contemplative-meditant.json","li":"OGL"},{"n":"Contemplative Mentor","s":"strength-of-thousands-bestiary","lv":18,"ac":44,"hp":335,"pc":31,"sz":"medium","tp":"aberration","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/contemplative-mentor.json","li":"OGL"},{"n":"Convergent Giant Eagle","s":"extinction-curse-bestiary","lv":15,"ac":37,"hp":290,"pc":29,"sz":"large","tp":"beast","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/convergent-giant-eagle.json","li":"OGL"},{"n":"Convergent Kendley Nathrael","s":"extinction-curse-bestiary","lv":19,"ac":41,"hp":440,"pc":35,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/convergent-kendley-nathrael.json","li":"OGL"},{"n":"Convergent Soldier","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":315,"pc":28,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/convergent-soldier.json","li":"OGL"},{"n":"Cookie","s":"strength-of-thousands-bestiary","lv":16,"ac":38,"hp":320,"pc":29,"sz":"large","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/cookie.json","li":"OGL"},{"n":"Copper Hand Illusionist","s":"agents-of-edgewatch-bestiary","lv":5,"ac":22,"hp":70,"pc":15,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/copper-hand-illusionist.json","li":"OGL"},{"n":"Copper Hand Rogue","s":"agents-of-edgewatch-bestiary","lv":4,"ac":21,"hp":60,"pc":13,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/copper-hand-rogue.json","li":"OGL"},{"n":"Coral Archdragon","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/coral/coral-archdragon.json","li":"ORC"},{"n":"Coral Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/coral/coral-archdragon-spellcaster.json","li":"ORC"},{"n":"Coral Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Coral Dragon (Adult)","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-adult.json","li":"ORC"},{"n":"Coral Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":315,"pc":32,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Coral Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":315,"pc":32,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-ancient.json","li":"ORC"},{"n":"Coral Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-young-spellcaster.json","li":"ORC"},{"n":"Coral Dragon (Young)","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/coral-dragon-young.json","li":"ORC"},{"n":"Coralclaw","s":"myth-speaker-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"animal","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/coralclaw.json","li":"ORC"},{"n":"Corax","s":"kingmaker-bestiary","lv":3,"ac":16,"hp":55,"pc":8,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/corax.json","li":"OGL"},{"n":"Corbayrant","s":"lost-omens-bestiary","lv":16,"ac":38,"hp":295,"pc":28,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/shining-kingdoms/corbayrant.json","li":"ORC"},{"n":"Corn Leshy Throng","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":54,"pc":10,"sz":"gargantuan","tp":"plant","f":"pathfinder-npc-core/ancestry-npcs/leshy/corn-leshy-throng.json","li":"ORC"},{"n":"Corpse Sugi","s":"season-of-ghosts-bestiary","lv":12,"ac":32,"hp":242,"pc":20,"sz":"huge","tp":"undead","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/corpse-sugi.json","li":"OGL"},{"n":"Corpselight","s":"abomination-vaults-bestiary","lv":2,"ac":17,"hp":40,"pc":7,"sz":"tiny","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/corpselight.json","li":"OGL"},{"n":"Corpseroot","s":"book-of-the-dead-bestiary","lv":11,"ac":30,"hp":225,"pc":18,"sz":"huge","tp":"undead","f":"book-of-the-dead-bestiary/corpseroot.json","li":"OGL"},{"n":"Corrosive Lizard","s":"extinction-curse-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/corrosive-lizard.json","li":"OGL"},{"n":"Corrupt Guard","s":"age-of-ashes-bestiary","lv":12,"ac":32,"hp":215,"pc":22,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/corrupt-guard.json","li":"OGL"},{"n":"Corrupt Shieldmarshal (Clan Pistol)","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":120,"pc":18,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/corrupt-shieldmarshal-clan-pistol.json","li":"OGL"},{"n":"Corrupt Shieldmarshal (Jezail)","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":120,"pc":18,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/corrupt-shieldmarshal-jezail.json","li":"OGL"},{"n":"Corrupted Blade Spirit","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":50,"pc":9,"sz":"medium","tp":"spirit","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/corrupted-blade-spirit.json","li":"OGL"},{"n":"Corrupted Elder Tree","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":26,"hp":150,"pc":18,"sz":"huge","tp":"fiend","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/corrupted-elder-tree.json","li":"OGL"},{"n":"Corrupted Nosoi","s":"malevolence-bestiary","lv":2,"ac":18,"hp":28,"pc":8,"sz":"tiny","tp":"monitor","f":"malevolence-bestiary/corrupted-nosoi.json","li":"OGL"},{"n":"Corrupted Priest","s":"extinction-curse-bestiary","lv":3,"ac":17,"hp":45,"pc":11,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/corrupted-priest.json","li":"OGL"},{"n":"Corrupted Retainer","s":"extinction-curse-bestiary","lv":2,"ac":19,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/corrupted-retainer.json","li":"OGL"},{"n":"Counteflora","s":"extinction-curse-bestiary","lv":10,"ac":29,"hp":220,"pc":18,"sz":"large","tp":"plant","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/counteflora.json","li":"OGL"},{"n":"Court Historian","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":7,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/court-historian.json","li":"ORC"},{"n":"Court Jester","s":"pathfinder-npc-core","lv":10,"ac":29,"hp":170,"pc":21,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/court-jester.json","li":"ORC"},{"n":"Courtesan","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":25,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/courtesan.json","li":"ORC"},{"n":"Coven Aspirant","s":"pathfinder-npc-core","lv":2,"ac":15,"hp":35,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/coven-aspirant.json","li":"ORC"},{"n":"Crag Linnorm","s":"pathfinder-monster-core","lv":14,"ac":37,"hp":270,"pc":26,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/crag-linnorm.json","li":"ORC"},{"n":"Cranium Preserver","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":28,"hp":220,"pc":19,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/cranium-preserver.json","li":"OGL"},{"n":"Cratonys","s":"abomination-vaults-bestiary","lv":6,"ac":24,"hp":90,"pc":13,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/cratonys.json","li":"OGL"},{"n":"Crawling Hand","s":"pathfinder-monster-core","lv":-1,"ac":12,"hp":8,"pc":5,"sz":"tiny","tp":"undead","f":"pathfinder-monster-core/crawling-hand.json","li":"ORC"},{"n":"Crawling Hand Swarm","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":21,"hp":60,"pc":11,"sz":"large","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/crawling-hand-swarm.json","li":"OGL"},{"n":"Crawling Slurry","s":"strength-of-thousands-bestiary","lv":16,"ac":30,"hp":300,"pc":26,"sz":"medium","tp":"ooze","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/crawling-slurry.json","li":"OGL"},{"n":"Creeping Clot","s":"shades-of-blood-bestiary","lv":5,"ac":12,"hp":150,"pc":7,"sz":"medium","tp":"ooze","f":"shades-of-blood-bestiary/book-2-the-broken-palace/creeping-clot.json","li":"ORC"},{"n":"Creeping Cone Swarm","s":"wardens-of-wildwood-bestiary","lv":10,"ac":29,"hp":135,"pc":18,"sz":"large","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/creeping-cone-swarm.json","li":"ORC"},{"n":"Creeping Crone","s":"blood-lords-bestiary","lv":11,"ac":30,"hp":210,"pc":21,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/creeping-crone.json","li":"OGL"},{"n":"Creeping Evil","s":"gatewalkers-bestiary","lv":8,"ac":16,"hp":185,"pc":11,"sz":"medium","tp":"ooze","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/creeping-evil.json","li":"ORC"},{"n":"Crime Kingpin","s":"pathfinder-npc-core","lv":12,"ac":32,"hp":250,"pc":22,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/crime-kingpin.json","li":"ORC"},{"n":"Crimson Acolyte","s":"strength-of-thousands-bestiary","lv":13,"ac":34,"hp":235,"pc":23,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/crimson-acolyte.json","li":"OGL"},{"n":"Crimson Worm Statue","s":"sky-kings-tomb-bestiary","lv":7,"ac":26,"hp":100,"pc":13,"sz":"large","tp":"construct","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/crimson-worm-statue.json","li":"OGL"},{"n":"Croakchief Globblit Skink-eater","s":"the-slithering-bestiary","lv":5,"ac":21,"hp":85,"pc":13,"sz":"medium","tp":"humanoid","f":"the-slithering-bestiary/croakchief-globblit-skink-eater.json","li":"OGL"},{"n":"Crocodile","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":7,"sz":"large","tp":"animal","f":"pathfinder-monster-core/crocodile.json","li":"ORC"},{"n":"Crooked Coffin Brewer","s":"blood-lords-bestiary","lv":1,"ac":14,"hp":25,"pc":6,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-1-zombie-feast/crooked-coffin-brewer.json","li":"OGL"},{"n":"Crowded Veil","s":"spore-war-bestiary","lv":14,"ac":33,"hp":300,"pc":28,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/crowded-veil.json","li":"ORC"},{"n":"Crownbound Constellation","s":"gatewalkers-bestiary","lv":8,"ac":30,"hp":98,"pc":19,"sz":"huge","tp":"astral","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/crownbound-constellation.json","li":"ORC"},{"n":"Crucidaemon","s":"age-of-ashes-bestiary","lv":15,"ac":38,"hp":225,"pc":26,"sz":"medium","tp":"fiend","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/crucidaemon.json","li":"OGL"},{"n":"Cruncher","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":24,"hp":90,"pc":10,"sz":"large","tp":"beast","f":"seven-dooms-for-sandpoint-bestiary/cruncher.json","li":"OGL"},{"n":"Crying Cicada","s":"howl-of-the-wild-bestiary","lv":3,"ac":19,"hp":48,"pc":11,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/crying-cicada.json","li":"ORC"},{"n":"Crystal Archdragon","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":350,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-archdragon.json","li":"ORC"},{"n":"Crystal Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":350,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-archdragon-spellcaster.json","li":"ORC"},{"n":"Crystal Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":190,"pc":21,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Crystal Dragon (Adult)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":190,"pc":21,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-adult.json","li":"ORC"},{"n":"Crystal Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":16,"ac":39,"hp":290,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Crystal Dragon (Ancient)","s":"lost-omens-bestiary","lv":16,"ac":39,"hp":290,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-ancient.json","li":"ORC"},{"n":"Crystal Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":110,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-young-spellcaster.json","li":"ORC"},{"n":"Crystal Dragon (Young)","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":110,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/crystal/crystal-dragon-young.json","li":"ORC"},{"n":"Crystal Sentinel","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":235,"pc":19,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-2-the-destiny-war/crystal-sentinel.json","li":"OGL"},{"n":"Crystal Strider","s":"rage-of-elements-bestiary","lv":10,"ac":29,"hp":230,"pc":20,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/crystal-strider.json","li":"OGL"},{"n":"Crystal Xorn","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"medium","tp":"elemental","f":"lost-omens-bestiary/mwangi-expanse/crystal-xorn.json","li":"OGL"},{"n":"Crystalline Sentinel","s":"stolen-fate-bestiary","lv":11,"ac":30,"hp":195,"pc":20,"sz":"medium","tp":"elemental","f":"stolen-fate-bestiary/book-2-the-destiny-war/crystalline-sentinel.json","li":"OGL"},{"n":"Cu Sith","s":"extinction-curse-bestiary","lv":7,"ac":24,"hp":140,"pc":16,"sz":"large","tp":"fey","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/cu-sith.json","li":"OGL"},{"n":"Cuckoo Hag","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":170,"pc":18,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/cuckoo-hag.json","li":"ORC"},{"n":"Cuetzmonquali","s":"lost-omens-bestiary","lv":17,"ac":40,"hp":360,"pc":32,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/cuetzmonquali.json","li":"OGL"},{"n":"Cullitox","s":"rage-of-elements-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/cullitox.json","li":"OGL"},{"n":"Cult Leader","s":"pathfinder-npc-core","lv":7,"ac":23,"hp":95,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/cult-leader.json","li":"ORC"},{"n":"Cultist","s":"pathfinder-npc-core","lv":1,"ac":17,"hp":20,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/cultist.json","li":"ORC"},{"n":"Cultist of Alocer","s":"one-shot-bestiary","lv":3,"ac":20,"hp":45,"pc":10,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/dinner-at-lionlodge/cultist-of-alocer.json","li":"OGL"},{"n":"Cultist Troop","s":"sky-kings-tomb-bestiary","lv":5,"ac":21,"hp":90,"pc":15,"sz":"gargantuan","tp":"fey","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/cultist-troop.json","li":"OGL"},{"n":"Cunning Fox","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":15,"pc":9,"sz":"small","tp":"beast","f":"pathfinder-monster-core-2/cunning-fox.json","li":"ORC"},{"n":"Curse Monger","s":"pathfinder-npc-core","lv":14,"ac":35,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/curse-monger.json","li":"ORC"},{"n":"Cursebreaker","s":"the-slithering-bestiary","lv":9,"ac":27,"hp":140,"pc":18,"sz":"medium","tp":"construct","f":"the-slithering-bestiary/cursebreaker.json","li":"OGL"},{"n":"Cursed Guardian","s":"kingmaker-bestiary","lv":4,"ac":21,"hp":58,"pc":8,"sz":"large","tp":"beast","f":"kingmaker-bestiary/cursed-guardian.json","li":"OGL"},{"n":"Cursed King","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":210,"pc":20,"sz":"medium","tp":"undead","f":"lost-omens-bestiary/impossible-lands/cursed-king.json","li":"OGL"},{"n":"Cyclops","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":80,"pc":12,"sz":"large","tp":"giant","f":"pathfinder-monster-core/cyclops.json","li":"ORC"},{"n":"Cyclops Bully","s":"strength-of-thousands-bestiary","lv":9,"ac":28,"hp":155,"pc":17,"sz":"large","tp":"giant","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/cyclops-bully.json","li":"OGL"},{"n":"Cyclops Seeker","s":"myth-speaker-bestiary","lv":10,"ac":29,"hp":175,"pc":21,"sz":"large","tp":"giant","f":"myth-speaker-bestiary/book-3-titanbane/cyclops-seeker.json","li":"ORC"},{"n":"Cyclops Zombie","s":"kingmaker-bestiary","lv":7,"ac":21,"hp":160,"pc":8,"sz":"huge","tp":"undead","f":"kingmaker-bestiary/cyclops-zombie.json","li":"OGL"},{"n":"Cythnigot","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":14,"pc":5,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core/cythnigot.json","li":"ORC"},{"n":"Cythnophorian","s":"wardens-of-wildwood-bestiary","lv":8,"ac":27,"hp":161,"pc":12,"sz":"tiny","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/cythnophorian.json","li":"ORC"},{"n":"Czaresia","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":41,"hp":375,"pc":32,"sz":"gargantuan","tp":"giant","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/czaresia.json","li":"ORC"},{"n":"D'ziriak","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":45,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/dziriak.json","li":"ORC"},{"n":"Daelum","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":21,"hp":76,"pc":11,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/daelum.json","li":"OGL"},{"n":"Daemonic Infector","s":"agents-of-edgewatch-bestiary","lv":22,"ac":45,"hp":475,"pc":40,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/daemonic-infector.json","li":"OGL"},{"n":"Daemonic Rumormonger","s":"agents-of-edgewatch-bestiary","lv":22,"ac":48,"hp":350,"pc":41,"sz":"medium","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/daemonic-rumormonger.json","li":"OGL"},{"n":"Daemonic Skinner","s":"agents-of-edgewatch-bestiary","lv":20,"ac":43,"hp":450,"pc":36,"sz":"large","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/daemonic-skinner.json","li":"OGL"},{"n":"Daeodon","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":12,"sz":"large","tp":"animal","f":"pathfinder-monster-core/daeodon.json","li":"ORC"},{"n":"Dajermube","s":"strength-of-thousands-bestiary","lv":16,"ac":38,"hp":255,"pc":33,"sz":"medium","tp":"spirit","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/dajermube.json","li":"OGL"},{"n":"Dalgyal Gwishin","s":"season-of-ghosts-bestiary","lv":5,"ac":21,"hp":58,"pc":12,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/dalgyal-gwishin.json","li":"ORC"},{"n":"Dalos","s":"age-of-ashes-bestiary","lv":13,"ac":34,"hp":240,"pc":23,"sz":"huge","tp":"fey","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/dalos.json","li":"OGL"},{"n":"Damibwa","s":"strength-of-thousands-bestiary","lv":4,"ac":21,"hp":62,"pc":12,"sz":"medium","tp":"animal","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/damibwa.json","li":"OGL"},{"n":"Danava Titan","s":"pathfinder-monster-core-2","lv":23,"ac":49,"hp":470,"pc":41,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-monster-core-2/danava-titan.json","li":"ORC"},{"n":"Dancer","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":20,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/dancer.json","li":"ORC"},{"n":"Dancing Night Parade","s":"fists-of-the-ruby-phoenix-bestiary","lv":19,"ac":40,"hp":450,"pc":28,"sz":"gargantuan","tp":"spirit","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/dancing-night-parade.json","li":"OGL"},{"n":"Danva","s":"shades-of-blood-bestiary","lv":6,"ac":23,"hp":92,"pc":13,"sz":"medium","tp":"aberration","f":"shades-of-blood-bestiary/book-2-the-broken-palace/danva.json","li":"ORC"},{"n":"Daqqanoenyent","s":"book-of-the-dead-bestiary","lv":9,"ac":28,"hp":170,"pc":17,"sz":"large","tp":"undead","f":"book-of-the-dead-bestiary/daqqanoenyent.json","li":"OGL"},{"n":"Daring Danika","s":"extinction-curse-bestiary","lv":2,"ac":17,"hp":30,"pc":7,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/daring-danika.json","li":"OGL"},{"n":"Darius","s":"one-shot-bestiary","lv":3,"ac":19,"hp":45,"pc":7,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/a-fistful-of-flowers/darius.json","li":"OGL"},{"n":"Darivan","s":"kingmaker-bestiary","lv":10,"ac":28,"hp":220,"pc":19,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/darivan.json","li":"OGL"},{"n":"Dark Talon Kobold","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":19,"hp":26,"pc":8,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/dark-talon-kobold.json","li":"OGL"},{"n":"Darklands Alchemical Golem","s":"extinction-curse-bestiary","lv":10,"ac":29,"hp":170,"pc":17,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/darklands-alchemical-golem.json","li":"OGL"},{"n":"Darkmantle","s":"crown-of-the-kobold-king-bestiary","lv":1,"ac":15,"hp":20,"pc":6,"sz":"small","tp":"beast","f":"crown-of-the-kobold-king-bestiary/darkmantle.json","li":"OGL"},{"n":"Darricus Stallit","s":"extinction-curse-bestiary","lv":8,"ac":28,"hp":122,"pc":17,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/darricus-stallit.json","li":"OGL"},{"n":"Davik Nettles","s":"kingmaker-bestiary","lv":4,"ac":19,"hp":70,"pc":10,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/davik-nettles.json","li":"OGL"},{"n":"Dead Faine","s":"blood-lords-bestiary","lv":17,"ac":39,"hp":315,"pc":32,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/dead-faine.json","li":"OGL"},{"n":"Deadly Mantis","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":220,"pc":20,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/deadly-mantis.json","li":"ORC"},{"n":"Deadtide Skeleton Guard","s":"abomination-vaults-bestiary","lv":-1,"ac":16,"hp":4,"pc":2,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/deadtide-skeleton-guard.json","li":"OGL"},{"n":"Death Coach","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":228,"pc":26,"sz":"huge","tp":"spirit","f":"book-of-the-dead-bestiary/death-coach.json","li":"OGL"},{"n":"Death Drider","s":"extinction-curse-bestiary","lv":13,"ac":34,"hp":235,"pc":24,"sz":"large","tp":"undead","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/death-drider.json","li":"OGL"},{"n":"Death Tower Necromancer","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":28,"hp":135,"pc":19,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/death-tower-necromancer.json","li":"ORC"},{"n":"Deathless Acolyte of Urgathoa","s":"hellbreakers-bestiary","lv":3,"ac":17,"hp":36,"pc":9,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/deathless-acolyte-of-urgathoa.json","li":"ORC"},{"n":"Deathless Acolyte Of Urgathoa","s":"book-of-the-dead-bestiary","lv":3,"ac":17,"hp":36,"pc":9,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/deathless-acolyte-of-urgathoa.json","li":"OGL"},{"n":"Deathless Hierophant Of Urgathoa","s":"book-of-the-dead-bestiary","lv":7,"ac":23,"hp":87,"pc":15,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/deathless-hierophant-of-urgathoa.json","li":"OGL"},{"n":"Deathless Pirate","s":"myth-speaker-bestiary","lv":7,"ac":24,"hp":130,"pc":18,"sz":"medium","tp":"undead","f":"myth-speaker-bestiary/book-3-titanbane/deathless-pirate.json","li":"ORC"},{"n":"Deathless Zealot of Zagresh","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":26,"hp":120,"pc":21,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/deathless-zealot-of-zagresh.json","li":"ORC"},{"n":"Decapod Dinghy","s":"howl-of-the-wild-bestiary","lv":8,"ac":28,"hp":145,"pc":16,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/decapod-dinghy.json","li":"ORC"},{"n":"Deck Crew","s":"myth-speaker-bestiary","lv":6,"ac":23,"hp":70,"pc":14,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/deck-crew.json","li":"ORC"},{"n":"Decrepit Mummy","s":"book-of-the-dead-bestiary","lv":2,"ac":17,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/decrepit-mummy.json","li":"OGL"},{"n":"Decrosia","s":"blood-lords-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/decrosia.json","li":"OGL"},{"n":"Deculi","s":"age-of-ashes-bestiary","lv":12,"ac":33,"hp":215,"pc":23,"sz":"large","tp":"beast","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/deculi.json","li":"OGL"},{"n":"Dedicated Druid","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":100,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/dedicated-druid.json","li":"ORC"},{"n":"Deep End Sarglagon","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":120,"pc":18,"sz":"large","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/deep-end-sarglagon.json","li":"OGL"},{"n":"Deep One","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":24,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/deep-one.json","li":"ORC"},{"n":"Deep One Elder","s":"pathfinder-monster-core-2","lv":14,"ac":36,"hp":260,"pc":26,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-monster-core-2/deep-one-elder.json","li":"ORC"},{"n":"Deep One Hybrid","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/deep-one-hybrid.json","li":"ORC"},{"n":"Deepwater Dhuthorex","s":"abomination-vaults-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/deepwater-dhuthorex.json","li":"OGL"},{"n":"Defaced Naiad Queen","s":"kingmaker-bestiary","lv":15,"ac":38,"hp":230,"pc":28,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/defaced-naiad-queen.json","li":"OGL"},{"n":"Deg","s":"shades-of-blood-bestiary","lv":9,"ac":27,"hp":170,"pc":15,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/deg.json","li":"ORC"},{"n":"Degholau","s":"spore-war-bestiary","lv":13,"ac":33,"hp":290,"pc":22,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/degholau.json","li":"ORC"},{"n":"Deghuun (Child of Mhar)","s":"extinction-curse-bestiary","lv":18,"ac":42,"hp":420,"pc":30,"sz":"huge","tp":"aberration","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/deghuun-child-of-mhar.json","li":"OGL"},{"n":"Deianire","s":"myth-speaker-bestiary","lv":7,"ac":25,"hp":80,"pc":16,"sz":"medium","tp":"spirit","f":"myth-speaker-bestiary/book-3-titanbane/deianire.json","li":"ORC"},{"n":"Deific Champion of Iomedae","s":"pathfinder-npc-core","lv":12,"ac":33,"hp":220,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/deific-champion-of-iomedae.json","li":"ORC"},{"n":"Deific Vessel of Urgathoa","s":"pathfinder-npc-core","lv":15,"ac":35,"hp":300,"pc":27,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/deific-vessel-of-urgathoa.json","li":"ORC"},{"n":"Deimavigga","s":"pathfinder-monster-core-2","lv":17,"ac":40,"hp":285,"pc":32,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/deimavigga.json","li":"ORC"},{"n":"Deinonychus","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/deinonychus.json","li":"ORC"},{"n":"Deinonychus Pack","s":"battlecry-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/deinonychus-pack.json","li":"ORC"},{"n":"Deinosuchus","s":"pathfinder-monster-core","lv":9,"ac":26,"hp":175,"pc":17,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/deinosuchus.json","li":"ORC"},{"n":"Delamar Gianvin","s":"extinction-curse-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/delamar-gianvin.json","li":"OGL"},{"n":"Delaraius Solzakarr","s":"curtain-call-bestiary","lv":20,"ac":45,"hp":375,"pc":36,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-3-bring-the-house-down/delaraius-solzakarr.json","li":"ORC"},{"n":"Delight Archdragon","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":400,"pc":40,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-archdragon.json","li":"ORC"},{"n":"Delight Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":400,"pc":40,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-archdragon-spellcaster.json","li":"ORC"},{"n":"Delight Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":240,"pc":28,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Delight Dragon (Adult)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":240,"pc":28,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-adult.json","li":"ORC"},{"n":"Delight Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":325,"pc":35,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Delight Dragon (Ancient)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":325,"pc":35,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-ancient.json","li":"ORC"},{"n":"Delight Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":165,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-young-spellcaster.json","li":"ORC"},{"n":"Delight Dragon (Young)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":165,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/delight/delight-dragon-young.json","li":"ORC"},{"n":"Delphon","s":"gatewalkers-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-1-the-seventh-arch/delphon.json","li":"ORC"},{"n":"Deluded Mob","s":"pathfinder-npc-core","lv":4,"ac":19,"hp":75,"pc":7,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/villain/deluded-mob.json","li":"ORC"},{"n":"Delvarnis","s":"spore-war-bestiary","lv":11,"ac":29,"hp":160,"pc":20,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/delvarnis.json","li":"ORC"},{"n":"Demolitionist","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/demolitionist.json","li":"ORC"},{"n":"Demom","s":"blog-bestiary","lv":3,"ac":19,"hp":50,"pc":15,"sz":"medium","tp":"fiend","f":"blog-bestiary/demom.json","li":"OGL"},{"n":"Demonbane Warrior","s":"pathfinder-npc-core","lv":5,"ac":22,"hp":76,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/elf/demonbane-warrior.json","li":"ORC"},{"n":"Demongate Colossus","s":"stolen-fate-bestiary","lv":14,"ac":35,"hp":240,"pc":24,"sz":"gargantuan","tp":"construct","f":"stolen-fate-bestiary/book-2-the-destiny-war/demongate-colossus.json","li":"OGL"},{"n":"Demonic Muckrager","s":"gatewalkers-bestiary","lv":4,"ac":20,"hp":85,"pc":10,"sz":"large","tp":"elemental","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/demonic-muckrager.json","li":"ORC"},{"n":"Demonic Rabble","s":"stolen-fate-bestiary","lv":13,"ac":33,"hp":260,"pc":23,"sz":"gargantuan","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/demonic-rabble.json","li":"OGL"},{"n":"Demonologist","s":"pathfinder-npc-core","lv":7,"ac":22,"hp":100,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/demonologist.json","li":"ORC"},{"n":"Demontangle","s":"gatewalkers-bestiary","lv":5,"ac":12,"hp":170,"pc":9,"sz":"large","tp":"ooze","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/demontangle.json","li":"ORC"},{"n":"Deniigi","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/deniigi.json","li":"ORC"},{"n":"Denizen of Leng","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":100,"pc":17,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/denizen-of-leng.json","li":"ORC"},{"n":"Departmental Chair","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/departmental-chair.json","li":"ORC"},{"n":"Derhii","s":"stolen-fate-bestiary","lv":5,"ac":21,"hp":80,"pc":12,"sz":"large","tp":"humanoid","f":"stolen-fate-bestiary/book-2-the-destiny-war/derhii.json","li":"OGL"},{"n":"Dero Magister","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":65,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/dero-magister.json","li":"ORC"},{"n":"Dero Punk","s":"shades-of-blood-bestiary","lv":0,"ac":15,"hp":15,"pc":2,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-2-the-broken-palace/dero-punk.json","li":"ORC"},{"n":"Dero Sentry","s":"shades-of-blood-bestiary","lv":5,"ac":21,"hp":75,"pc":10,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/dero-sentry.json","li":"ORC"},{"n":"Dero Stalker","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":30,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/dero-stalker.json","li":"ORC"},{"n":"Dero Strangler","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":6,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/dero-strangler.json","li":"ORC"},{"n":"Desa-Desa","s":"gatewalkers-bestiary","lv":2,"ac":18,"hp":34,"pc":10,"sz":"small","tp":"animal","f":"gatewalkers-bestiary/book-1-the-seventh-arch/desa-desa.json","li":"ORC"},{"n":"Desecrated Guardian","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":360,"pc":30,"sz":"gargantuan","tp":"construct","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/desecrated-guardian.json","li":"OGL"},{"n":"Desert Drake","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":15,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/desert-drake.json","li":"ORC"},{"n":"Desert Giant","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":185,"pc":19,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/desert-giant.json","li":"ORC"},{"n":"Desert Manticore","s":"howl-of-the-wild-bestiary","lv":12,"ac":33,"hp":270,"pc":22,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/desert-manticore.json","li":"ORC"},{"n":"Desert's Howl","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":330,"pc":33,"sz":"huge","tp":"aberration","f":"lost-omens-bestiary/monsters-of-myth/deserts-howl.json","li":"OGL"},{"n":"Desiak","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"aberration","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/desiak.json","li":"OGL"},{"n":"Desmohund","s":"shades-of-blood-bestiary","lv":1,"ac":16,"hp":20,"pc":10,"sz":"small","tp":"animal","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/desmohund.json","li":"ORC"},{"n":"Despair Archdragon","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":415,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/despair/despair-archdragon.json","li":"ORC"},{"n":"Despair Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":415,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/despair/despair-archdragon-spellcaster.json","li":"ORC"},{"n":"Despair Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":220,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Despair Dragon (Adult)","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":220,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-adult.json","li":"ORC"},{"n":"Despair Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":18,"ac":41,"hp":325,"pc":31,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Despair Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":18,"ac":41,"hp":325,"pc":31,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-ancient.json","li":"ORC"},{"n":"Despair Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":140,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-young-spellcaster.json","li":"ORC"},{"n":"Despair Dragon (Young)","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":140,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/despair-dragon-young.json","li":"ORC"},{"n":"Despairing Pall","s":"rage-of-elements-bestiary","lv":1,"ac":17,"hp":15,"pc":5,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/despairing-pall.json","li":"OGL"},{"n":"Despot","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/despot.json","li":"ORC"},{"n":"Destiny Tempest","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":230,"pc":26,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/destiny-tempest.json","li":"ORC"},{"n":"Devasance","s":"spore-war-bestiary","lv":16,"ac":38,"hp":225,"pc":30,"sz":"medium","tp":"","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/devasance.json","li":"ORC"},{"n":"Devastation Cavalry Brigade","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"animal","f":"lost-omens-bestiary/hellfire-dispatches/devastation-cavalry-brigade.json","li":"ORC"},{"n":"Devil's Disciple","s":"seven-dooms-for-sandpoint-bestiary","lv":2,"ac":18,"hp":30,"pc":5,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/devils-disciple.json","li":"OGL"},{"n":"Dewdrop Jelly","s":"rage-of-elements-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/dewdrop-jelly.json","li":"OGL"},{"n":"Dewey Daystar","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":16,"hp":40,"pc":10,"sz":"small","tp":"plant","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/dewey-daystar.json","li":"OGL"},{"n":"Dezullon","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":130,"pc":18,"sz":"medium","tp":"plant","f":"pathfinder-monster-core/dezullon.json","li":"ORC"},{"n":"Dezullon Thicket","s":"battlecry-bestiary","lv":15,"ac":36,"hp":270,"pc":25,"sz":"gargantuan","tp":"plant","f":"battlecry-bestiary/dezullon-thicket.json","li":"ORC"},{"n":"Dhampir Wizard","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":22,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/dhampir-wizard.json","li":"ORC"},{"n":"Dhuthorex Sage","s":"abomination-vaults-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/dhuthorex-sage.json","li":"OGL"},{"n":"Diabolic Archdragon","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":480,"pc":37,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/diabolic/diabolic-archdragon.json","li":"ORC"},{"n":"Diabolic Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":480,"pc":37,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/diabolic/diabolic-archdragon-spellcaster.json","li":"ORC"},{"n":"Diabolic Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":15,"ac":36,"hp":285,"pc":26,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Diabolic Dragon (Adult)","s":"pathfinder-monster-core","lv":15,"ac":36,"hp":285,"pc":26,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-adult.json","li":"ORC"},{"n":"Diabolic Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":20,"ac":44,"hp":390,"pc":33,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Diabolic Dragon (Ancient)","s":"pathfinder-monster-core","lv":20,"ac":44,"hp":390,"pc":33,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-ancient.json","li":"ORC"},{"n":"Diabolic Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":215,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-young-spellcaster.json","li":"ORC"},{"n":"Diabolic Dragon (Young)","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":215,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/diabolic-dragon-young.json","li":"ORC"},{"n":"Dibrasgorth","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":250,"pc":22,"sz":"gargantuan","tp":"aberration","f":"pathfinder-monster-core-2/dibrasgorth.json","li":"ORC"},{"n":"Dieral Myrnese","s":"stolen-fate-bestiary","lv":5,"ac":20,"hp":70,"pc":11,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/dieral-myrnese.json","li":"OGL"},{"n":"Dig-Widget","s":"pathfinder-monster-core-2","lv":5,"ac":23,"hp":65,"pc":9,"sz":"small","tp":"construct","f":"pathfinder-monster-core-2/dig-widget.json","li":"ORC"},{"n":"Dimari-Diji","s":"strength-of-thousands-bestiary","lv":25,"ac":52,"hp":550,"pc":43,"sz":"gargantuan","tp":"plant","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/dimari-diji.json","li":"OGL"},{"n":"Diobel Sweeper Chemist","s":"agents-of-edgewatch-bestiary","lv":9,"ac":27,"hp":155,"pc":21,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/diobel-sweeper-chemist.json","li":"OGL"},{"n":"Diobel Sweeper Tough","s":"agents-of-edgewatch-bestiary","lv":7,"ac":24,"hp":125,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/diobel-sweeper-tough.json","li":"OGL"},{"n":"Dire Wolf","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":50,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/dire-wolf.json","li":"ORC"},{"n":"Dirge Piper","s":"blood-lords-bestiary","lv":3,"ac":16,"hp":95,"pc":8,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/dirge-piper.json","li":"OGL"},{"n":"Disgorged Zombie","s":"outlaws-of-alkenstar-bestiary","lv":6,"ac":21,"hp":52,"pc":14,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/disgorged-zombie.json","li":"OGL"},{"n":"Diskah Night Watcher","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":26,"hp":130,"pc":21,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/diskah-night-watcher.json","li":"ORC"},{"n":"Diskrasia The Sharp","s":"stolen-fate-bestiary","lv":20,"ac":46,"hp":375,"pc":41,"sz":"large","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/diskrasia-the-sharp.json","li":"OGL"},{"n":"Dismemberment Table","s":"crown-of-the-kobold-king-bestiary","lv":5,"ac":22,"hp":56,"pc":11,"sz":"medium","tp":"construct","f":"crown-of-the-kobold-king-bestiary/dismemberment-table.json","li":"OGL"},{"n":"Diver","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":50,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/diver.json","li":"ORC"},{"n":"Divine Living Rune","s":"prey-for-death-bestiary","lv":13,"ac":34,"hp":245,"pc":25,"sz":"small","tp":"construct","f":"prey-for-death-bestiary/divine-living-rune.json","li":"ORC"},{"n":"Divine Warden of Arazni","s":"claws-of-the-tyrant-bestiary","lv":16,"ac":37,"hp":290,"pc":27,"sz":"medium","tp":"construct","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/divine-warden-of-arazni.json","li":"ORC"},{"n":"Divine Warden of Brigh","s":"blog-bestiary","lv":10,"ac":28,"hp":135,"pc":18,"sz":"medium","tp":"construct","f":"blog-bestiary/divine-warden-of-brigh.json","li":"OGL"},{"n":"Divine Warden Of Haagenti","s":"seven-dooms-for-sandpoint-bestiary","lv":4,"ac":20,"hp":45,"pc":9,"sz":"medium","tp":"construct","f":"seven-dooms-for-sandpoint-bestiary/divine-warden-of-haagenti.json","li":"OGL"},{"n":"Divine Warden of Iomedae","s":"claws-of-the-tyrant-bestiary","lv":16,"ac":37,"hp":290,"pc":27,"sz":"huge","tp":"construct","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/divine-warden-of-iomedae.json","li":"ORC"},{"n":"Divine Warden of Pharasma","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":95,"pc":14,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/divine-warden-of-pharasma.json","li":"ORC"},{"n":"Divoynik","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":45,"pc":7,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/divoynik.json","li":"ORC"},{"n":"Dmiri Yoltosha","s":"age-of-ashes-bestiary","lv":4,"ac":22,"hp":52,"pc":14,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/dmiri-yoltosha.json","li":"OGL"},{"n":"Doatara the Poisoner","s":"one-shot-bestiary","lv":7,"ac":25,"hp":115,"pc":12,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/mark-of-the-mantis/doatara-the-poisoner.json","li":"OGL"},{"n":"Doatara the Priest","s":"one-shot-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/mark-of-the-mantis/doatara-the-priest.json","li":"OGL"},{"n":"Doblagub","s":"extinction-curse-bestiary","lv":13,"ac":35,"hp":250,"pc":26,"sz":"large","tp":"fey","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/doblagub.json","li":"OGL"},{"n":"Dockhand","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":20,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/dockhand.json","li":"ORC"},{"n":"Dog (Ekundayo's Companion)","s":"kingmaker-bestiary","lv":6,"ac":22,"hp":60,"pc":12,"sz":"medium","tp":"animal","f":"kingmaker-bestiary/dog-ekundayos-companion.json","li":"OGL"},{"n":"Doldrums Heap","s":"pathfinder-monster-core","lv":9,"ac":16,"hp":300,"pc":15,"sz":"huge","tp":"plant","f":"pathfinder-monster-core/doldrums-heap.json","li":"ORC"},{"n":"Domovoi","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":11,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/domovoi.json","li":"ORC"},{"n":"Doorwarden","s":"age-of-ashes-bestiary","lv":5,"ac":22,"hp":60,"pc":13,"sz":"large","tp":"construct","f":"age-of-ashes-bestiary/book-1-hellknight-hill/doorwarden.json","li":"OGL"},{"n":"Doppelganger (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":18,"hp":50,"pc":7,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/doppelganger-bb.json","li":"OGL"},{"n":"Doprillu","s":"pathfinder-monster-core-2","lv":14,"ac":36,"hp":260,"pc":22,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/doprillu.json","li":"ORC"},{"n":"Doru","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":7,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core-2/doru.json","li":"ORC"},{"n":"Dovan from Nisroch","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/dovan-from-nisroch.json","li":"OGL"},{"n":"Draconal","s":"pathfinder-monster-core-2","lv":20,"ac":45,"hp":370,"pc":36,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/draconal.json","li":"ORC"},{"n":"Draconic Fumecrux","s":"hellbreakers-bestiary","lv":9,"ac":27,"hp":140,"pc":18,"sz":"large","tp":"undead","f":"hellbreakers-bestiary/draconic-fumecrux.json","li":"ORC"},{"n":"Draft Lizard","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/highhelm/draft-lizard.json","li":"OGL"},{"n":"Dragon Turtle","s":"pathfinder-monster-core","lv":9,"ac":29,"hp":140,"pc":18,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/dragon-turtle.json","li":"ORC"},{"n":"Dragon's Blood Puffball","s":"abomination-vaults-bestiary","lv":8,"ac":24,"hp":170,"pc":12,"sz":"large","tp":"fungus","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/dragons-blood-puffball.json","li":"OGL"},{"n":"Dragonblood Occultist","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":35,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/dragonblood-occultist.json","li":"ORC"},{"n":"Dragonscarred Dead","s":"age-of-ashes-bestiary","lv":13,"ac":33,"hp":210,"pc":24,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/dragonscarred-dead.json","li":"OGL"},{"n":"Dragonshard Guardian","s":"age-of-ashes-bestiary","lv":22,"ac":48,"hp":430,"pc":39,"sz":"large","tp":"construct","f":"age-of-ashes-bestiary/book-6-broken-promises/dragonshard-guardian.json","li":"OGL"},{"n":"Dragonstorm Fire Giant","s":"age-of-ashes-bestiary","lv":18,"ac":42,"hp":400,"pc":30,"sz":"huge","tp":"giant","f":"age-of-ashes-bestiary/book-6-broken-promises/dragonstorm-fire-giant.json","li":"OGL"},{"n":"Drainberry Bush","s":"pathfinder-monster-core-2","lv":7,"ac":23,"hp":135,"pc":16,"sz":"large","tp":"plant","f":"pathfinder-monster-core-2/drainberry-bush.json","li":"ORC"},{"n":"Drake Courser","s":"fists-of-the-ruby-phoenix-bestiary","lv":12,"ac":32,"hp":230,"pc":22,"sz":"large","tp":"dragon","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/drake-courser.json","li":"OGL"},{"n":"Drake Flight","s":"battlecry-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"gargantuan","tp":"dragon","f":"battlecry-bestiary/drake-flight.json","li":"ORC"},{"n":"Drake Skeleton","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":130,"pc":14,"sz":"large","tp":"undead","f":"book-of-the-dead-bestiary/drake-skeleton.json","li":"OGL"},{"n":"Draugr","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":7,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/draugr.json","li":"ORC"},{"n":"Draxie","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":8,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/draxie.json","li":"ORC"},{"n":"Drazmorg The Damned","s":"crown-of-the-kobold-king-bestiary","lv":8,"ac":23,"hp":115,"pc":16,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/drazmorg-the-damned.json","li":"OGL"},{"n":"Dread Dhuthorex","s":"abomination-vaults-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/dread-dhuthorex.json","li":"OGL"},{"n":"Dread Roc","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":290,"pc":26,"sz":"gargantuan","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/dread-roc.json","li":"OGL"},{"n":"Dread Wisp","s":"abomination-vaults-bestiary","lv":9,"ac":31,"hp":90,"pc":20,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/dread-wisp.json","li":"OGL"},{"n":"Dreadsong Dancer","s":"agents-of-edgewatch-bestiary","lv":8,"ac":27,"hp":160,"pc":13,"sz":"medium","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/dreadsong-dancer.json","li":"OGL"},{"n":"Dream Aethusa","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":41,"hp":330,"pc":33,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/dream-aethusa.json","li":"ORC"},{"n":"Dream Spider","s":"pathfinder-monster-core-2","lv":0,"ac":16,"hp":15,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core-2/dream-spider.json","li":"ORC"},{"n":"Dreamscraper","s":"gatewalkers-bestiary","lv":7,"ac":24,"hp":115,"pc":15,"sz":"large","tp":"aberration","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/dreamscraper.json","li":"ORC"},{"n":"Drela","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":26,"hp":104,"pc":14,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/drela.json","li":"OGL"},{"n":"Drelev Guard","s":"kingmaker-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/drelev-guard.json","li":"OGL"},{"n":"Drenchdead","s":"strength-of-thousands-bestiary","lv":12,"ac":32,"hp":230,"pc":21,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/drenchdead.json","li":"OGL"},{"n":"Dreshkan","s":"abomination-vaults-bestiary","lv":4,"ac":20,"hp":72,"pc":11,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/dreshkan.json","li":"OGL"},{"n":"Dretch","s":"rusthenge-bestiary","lv":2,"ac":17,"hp":45,"pc":6,"sz":"small","tp":"fiend","f":"rusthenge-bestiary/dretch.json","li":"OGL"},{"n":"Drill Field Barbazu","s":"abomination-vaults-bestiary","lv":5,"ac":22,"hp":60,"pc":13,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/drill-field-barbazu.json","li":"OGL"},{"n":"Drill Sergeant","s":"pathfinder-npc-core","lv":8,"ac":25,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/drill-sergeant.json","li":"ORC"},{"n":"Drinesh","s":"wardens-of-wildwood-bestiary","lv":10,"ac":29,"hp":175,"pc":21,"sz":"medium","tp":"fey","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/drinesh.json","li":"ORC"},{"n":"Driver","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":28,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/driver.json","li":"ORC"},{"n":"Dromaar Company","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/dromaar-company.json","li":"ORC"},{"n":"Dromaar Lorekeeper","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/orc/dromaar-lorekeeper.json","li":"ORC"},{"n":"Dromaar Mountaineer","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":28,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/dromaar-mountaineer.json","li":"ORC"},{"n":"Dromornis","s":"fists-of-the-ruby-phoenix-bestiary","lv":10,"ac":28,"hp":150,"pc":19,"sz":"large","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/dromornis.json","li":"OGL"},{"n":"Dronuk","s":"prey-for-death-bestiary","lv":17,"ac":39,"hp":330,"pc":30,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/dronuk.json","li":"ORC"},{"n":"Drover","s":"pathfinder-npc-core","lv":0,"ac":15,"hp":18,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/drover.json","li":"ORC"},{"n":"Drow Bodyguard Golem","s":"extinction-curse-bestiary","lv":14,"ac":36,"hp":210,"pc":23,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/drow-bodyguard-golem.json","li":"OGL"},{"n":"Drow Cavern Seer","s":"abomination-vaults-bestiary","lv":9,"ac":27,"hp":110,"pc":18,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/drow-cavern-seer.json","li":"OGL"},{"n":"Drow Hunter","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/drow-hunter.json","li":"OGL"},{"n":"Drow Priestess (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":20,"hp":39,"pc":9,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/drow-priestess-bb.json","li":"OGL"},{"n":"Drow Shootist","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/drow-shootist.json","li":"OGL"},{"n":"Drow Sneak (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":19,"hp":26,"pc":6,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/drow-sneak-bb.json","li":"OGL"},{"n":"Drow Warden","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/drow-warden.json","li":"OGL"},{"n":"Drow Warrior (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":18,"hp":18,"pc":6,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/drow-warrior-bb.json","li":"OGL"},{"n":"Drowned Mummy","s":"blood-lords-bestiary","lv":17,"ac":38,"hp":330,"pc":30,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/drowned-mummy.json","li":"OGL"},{"n":"Drthak","s":"howl-of-the-wild-bestiary","lv":6,"ac":23,"hp":110,"pc":15,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/drthak.json","li":"ORC"},{"n":"Drude","s":"hellbreakers-bestiary","lv":2,"ac":18,"hp":25,"pc":10,"sz":"small","tp":"fey","f":"hellbreakers-bestiary/drude.json","li":"ORC"},{"n":"Druid Circle","s":"battlecry-bestiary","lv":12,"ac":32,"hp":210,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/druid-circle.json","li":"ORC"},{"n":"Druid Initiate","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":18,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/druid-initiate.json","li":"ORC"},{"n":"Drunkard","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":40,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/downtrodden/drunkard.json","li":"ORC"},{"n":"Drunken Brawler","s":"extinction-curse-bestiary","lv":1,"ac":14,"hp":27,"pc":4,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/drunken-brawler.json","li":"OGL"},{"n":"Drunken Farmer","s":"fall-of-plaguestone","lv":-1,"ac":13,"hp":16,"pc":2,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/drunken-farmer.json","li":"OGL"},{"n":"Drunken Isgeri Slayer","s":"hellbreakers-bestiary","lv":1,"ac":15,"hp":24,"pc":5,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/drunken-isgeri-slayer.json","li":"ORC"},{"n":"Drusilla","s":"blood-lords-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"fey","f":"blood-lords-bestiary/book-2-graveclaw/drusilla.json","li":"OGL"},{"n":"Drustan","s":"stolen-fate-bestiary","lv":14,"ac":36,"hp":255,"pc":25,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/drustan.json","li":"OGL"},{"n":"Druulbach","s":"wardens-of-wildwood-bestiary","lv":12,"ac":32,"hp":230,"pc":25,"sz":"large","tp":"giant","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/druulbach.json","li":"ORC"},{"n":"Dryad","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":55,"pc":10,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/dryad.json","li":"ORC"},{"n":"Dryad Queen","s":"pathfinder-monster-core","lv":13,"ac":35,"hp":220,"pc":25,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/dryad-queen.json","li":"ORC"},{"n":"Duergar Slave Lord","s":"age-of-ashes-bestiary","lv":13,"ac":35,"hp":240,"pc":26,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/duergar-slave-lord.json","li":"OGL"},{"n":"Duhgik","s":"blog-bestiary","lv":6,"ac":24,"hp":66,"pc":14,"sz":"small","tp":"humanoid","f":"blog-bestiary/duhgik.json","li":"OGL"},{"n":"Dulac","s":"abomination-vaults-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/dulac.json","li":"OGL"},{"n":"Dullahan","s":"pathfinder-monster-core","lv":7,"ac":28,"hp":95,"pc":14,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/dullahan.json","li":"ORC"},{"n":"Dune Candle","s":"abomination-vaults-bestiary","lv":6,"ac":27,"hp":50,"pc":16,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/dune-candle.json","li":"OGL"},{"n":"Durnolith","s":"wardens-of-wildwood-bestiary","lv":9,"ac":28,"hp":150,"pc":16,"sz":"medium","tp":"aberration","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/durnolith.json","li":"ORC"},{"n":"Duskwalker Ghost Hunter","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":56,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/duskwalker-ghost-hunter.json","li":"ORC"},{"n":"Dust Bunny Swarm","s":"blog-bestiary","lv":1,"ac":13,"hp":16,"pc":7,"sz":"large","tp":"construct","f":"blog-bestiary/foolish-housekeeping-and-other-articles/dust-bunny-swarm.json","li":"ORC"},{"n":"Dvorovoi","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":44,"pc":12,"sz":"small","tp":"fey","f":"pathfinder-monster-core-2/dvorovoi.json","li":"ORC"},{"n":"Dwandek","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":270,"pc":31,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/dwandek.json","li":"OGL"},{"n":"Dwarf Battalion","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":105,"pc":13,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/dwarf/dwarf-battalion.json","li":"ORC"},{"n":"Dwarf General","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":150,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/dwarf/dwarf-general.json","li":"ORC"},{"n":"Dwarf Longshot Squad","s":"battlecry-bestiary","lv":10,"ac":29,"hp":180,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/dwarf-longshot-squad.json","li":"ORC"},{"n":"Dwarf Longshot Squad (Guns)","s":"battlecry-bestiary","lv":10,"ac":29,"hp":180,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/dwarf-longshot-squad-guns.json","li":"ORC"},{"n":"Dwarf Smith","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":12,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/dwarf/dwarf-smith.json","li":"ORC"},{"n":"Dwarf Stonecaster","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":70,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/dwarf-stonecaster.json","li":"ORC"},{"n":"Dwarf Warrior","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/dwarf-warrior.json","li":"ORC"},{"n":"Dwarven Monster Hunter","s":"sky-kings-tomb-bestiary","lv":6,"ac":23,"hp":108,"pc":13,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/dwarven-monster-hunter.json","li":"OGL"},{"n":"Dweomercat","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":100,"pc":15,"sz":"medium","tp":"beast","f":"pathfinder-monster-core-2/dweomercat.json","li":"ORC"},{"n":"Dybbuk","s":"pathfinder-monster-core","lv":15,"ac":35,"hp":175,"pc":27,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/dybbuk.json","li":"ORC"},{"n":"Dynamo","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":145,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/dynamo.json","li":"ORC"},{"n":"Dyzallin Shraen","s":"extinction-curse-bestiary","lv":19,"ac":42,"hp":380,"pc":32,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/dyzallin-shraen.json","li":"OGL"},{"n":"Dyzallin's Golem","s":"extinction-curse-bestiary","lv":18,"ac":42,"hp":255,"pc":26,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/dyzallins-golem.json","li":"OGL"},{"n":"Eagle","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":6,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core/eagle.json","li":"ORC"},{"n":"Earth Scamp","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":20,"pc":3,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/earth-scamp.json","li":"ORC"},{"n":"Earth Wisp","s":"pathfinder-monster-core-2","lv":0,"ac":15,"hp":15,"pc":6,"sz":"tiny","tp":"elemental","f":"pathfinder-monster-core-2/earth-wisp.json","li":"ORC"},{"n":"Earthen Destrier","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":75,"pc":10,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/earthen-destrier.json","li":"ORC"},{"n":"Eberark","s":"agents-of-edgewatch-bestiary","lv":10,"ac":30,"hp":275,"pc":19,"sz":"huge","tp":"beast","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/eberark.json","li":"OGL"},{"n":"Echopsyvne","s":"curtain-call-bestiary","lv":18,"ac":39,"hp":255,"pc":31,"sz":"medium","tp":"undead","f":"curtain-call-bestiary/book-3-bring-the-house-down/echopsyvne.json","li":"ORC"},{"n":"Ecorche","s":"book-of-the-dead-bestiary","lv":16,"ac":38,"hp":275,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/ecorche.json","li":"OGL"},{"n":"Ectoplasmic Amalgam","s":"blood-lords-bestiary","lv":15,"ac":37,"hp":320,"pc":25,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/ectoplasmic-amalgam.json","li":"OGL"},{"n":"Edgrin Galesong","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":17,"hp":32,"pc":7,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/edgrin-galesong.json","li":"OGL"},{"n":"Edolpho Phinelli","s":"blog-bestiary","lv":3,"ac":18,"hp":40,"pc":6,"sz":"medium","tp":"humanoid","f":"blog-bestiary/edolpho-phinelli.json","li":"OGL"},{"n":"Egarhowl","s":"curtain-call-bestiary","lv":17,"ac":38,"hp":235,"pc":31,"sz":"medium","tp":"undead","f":"curtain-call-bestiary/book-3-bring-the-house-down/egarhowl.json","li":"ORC"},{"n":"Einherji","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":17,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/einherji.json","li":"ORC"},{"n":"Einherji Host","s":"prey-for-death-bestiary","lv":15,"ac":35,"hp":270,"pc":22,"sz":"gargantuan","tp":"monitor","f":"prey-for-death-bestiary/einherji-host.json","li":"ORC"},{"n":"Ekleios","s":"myth-speaker-bestiary","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"undead","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/ekleios.json","li":"ORC"},{"n":"Ekujae Guardian","s":"age-of-ashes-bestiary","lv":2,"ac":19,"hp":26,"pc":8,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/ekujae-guardian.json","li":"OGL"},{"n":"Elananx","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":95,"pc":14,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/elananx.json","li":"ORC"},{"n":"Elasmosaurus","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":125,"pc":16,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/elasmosaurus.json","li":"ORC"},{"n":"Elder Cauthooj","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":255,"pc":25,"sz":"medium","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/elder-cauthooj.json","li":"OGL"},{"n":"Elder Child of Belcorra","s":"abomination-vaults-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"small","tp":"undead","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/elder-child-of-belcorra.json","li":"OGL"},{"n":"Elder Elemental Tsunami","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":260,"pc":25,"sz":"huge","tp":"elemental","f":"kingmaker-bestiary/elder-elemental-tsunami.json","li":"OGL"},{"n":"Elder Outcrop","s":"rage-of-elements-bestiary","lv":13,"ac":33,"hp":295,"pc":26,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/elder-outcrop.json","li":"OGL"},{"n":"Elder Shantak","s":"revenge-of-the-runelords-bestiary","lv":15,"ac":37,"hp":255,"pc":27,"sz":"large","tp":"beast","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/elder-shantak.json","li":"ORC"},{"n":"Elder Thing","s":"gatewalkers-bestiary","lv":5,"ac":21,"hp":90,"pc":14,"sz":"medium","tp":"aberration","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/elder-thing.json","li":"ORC"},{"n":"Elder Thing Researcher","s":"gatewalkers-bestiary","lv":10,"ac":29,"hp":218,"pc":21,"sz":"medium","tp":"aberration","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/elder-thing-researcher.json","li":"ORC"},{"n":"Elder Wyrmwraith","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":400,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wyrmwraith/elder-wyrmwraith.json","li":"ORC"},{"n":"Eldritch Emeritus","s":"pathfinder-npc-core","lv":17,"ac":39,"hp":290,"pc":32,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/eldritch-emeritus.json","li":"ORC"},{"n":"Electric Eel","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":18,"pc":4,"sz":"small","tp":"animal","f":"pathfinder-monster-core/electric-eel.json","li":"ORC"},{"n":"Elemental Avalanche","s":"pathfinder-monster-core","lv":11,"ac":32,"hp":215,"pc":20,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core/elemental-avalanche.json","li":"ORC"},{"n":"Elemental Hurricane","s":"pathfinder-monster-core","lv":11,"ac":32,"hp":140,"pc":20,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core/elemental-hurricane.json","li":"ORC"},{"n":"Elemental Inferno","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":210,"pc":20,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core/elemental-inferno.json","li":"ORC"},{"n":"Elemental Thicket","s":"rage-of-elements-bestiary","lv":11,"ac":28,"hp":240,"pc":24,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/elemental-thicket.json","li":"OGL"},{"n":"Elemental Tsunami","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":195,"pc":22,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core/elemental-tsunami.json","li":"ORC"},{"n":"Elemental Tsunami","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"huge","tp":"elemental","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/elemental-tsunami.json","li":"ORC"},{"n":"Elephant","s":"pathfinder-monster-core","lv":7,"ac":23,"hp":130,"pc":13,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/elephant.json","li":"ORC"},{"n":"Eleukas","s":"blog-bestiary","lv":2,"ac":19,"hp":32,"pc":10,"sz":"medium","tp":"humanoid","f":"blog-bestiary/eleukas.json","li":"OGL"},{"n":"Elf Ranger","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":17,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/elf-ranger.json","li":"ORC"},{"n":"Elga Verniex","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":90,"pc":13,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/elga-verniex.json","li":"OGL"},{"n":"Elite Ort","s":"hellbreakers-bestiary","lv":0,"ac":13,"hp":20,"pc":0,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/elite-ort.json","li":"ORC"},{"n":"Elk","s":"quest-for-the-frozen-flame-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/elk.json","li":"OGL"},{"n":"Eloko","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"small","tp":"fey","f":"lost-omens-bestiary/mwangi-expanse/eloko.json","li":"OGL"},{"n":"Elven Court Guard","s":"pathfinder-npc-core","lv":13,"ac":35,"hp":225,"pc":24,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/elf/elven-court-guard.json","li":"ORC"},{"n":"Elysian Sheep","s":"extinction-curse-bestiary","lv":7,"ac":25,"hp":140,"pc":18,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/elysian-sheep.json","li":"OGL"},{"n":"Elysian Titan","s":"pathfinder-monster-core-2","lv":21,"ac":46,"hp":400,"pc":36,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-monster-core-2/elysian-titan.json","li":"ORC"},{"n":"Emaliza Zandivar","s":"age-of-ashes-bestiary","lv":20,"ac":45,"hp":375,"pc":36,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/emaliza-zandivar.json","li":"OGL"},{"n":"Ember Fox","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":8,"sz":"small","tp":"elemental","f":"pathfinder-monster-core-2/ember-fox.json","li":"ORC"},{"n":"Emorga All-Seer","s":"wardens-of-wildwood-bestiary","lv":9,"ac":29,"hp":170,"pc":21,"sz":"gargantuan","tp":"animal","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/emorga-all-seer.json","li":"ORC"},{"n":"Emperor Bird","s":"age-of-ashes-bestiary","lv":2,"ac":18,"hp":27,"pc":8,"sz":"medium","tp":"animal","f":"age-of-ashes-bestiary/book-1-hellknight-hill/emperor-bird.json","li":"OGL"},{"n":"Emperor Cobra","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":80,"pc":13,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/emperor-cobra.json","li":"ORC"},{"n":"Empyreal Archdragon","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":450,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/empyreal/empyreal-archdragon.json","li":"ORC"},{"n":"Empyreal Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":450,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/empyreal/empyreal-archdragon-spellcaster.json","li":"ORC"},{"n":"Empyreal Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":250,"pc":27,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Empyreal Dragon (Adult)","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":250,"pc":27,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-adult.json","li":"ORC"},{"n":"Empyreal Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":19,"ac":43,"hp":350,"pc":35,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Empyreal Dragon (Ancient)","s":"pathfinder-monster-core","lv":19,"ac":43,"hp":350,"pc":35,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-ancient.json","li":"ORC"},{"n":"Empyreal Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":170,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-young-spellcaster.json","li":"ORC"},{"n":"Empyreal Dragon (Young)","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":170,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/empyreal-dragon-young.json","li":"ORC"},{"n":"Emriss","s":"curtain-call-bestiary","lv":12,"ac":33,"hp":210,"pc":25,"sz":"large","tp":"beast","f":"curtain-call-bestiary/book-1-stage-fright/emriss.json","li":"ORC"},{"n":"Enchanting Ritualist","s":"pathfinder-npc-core","lv":18,"ac":40,"hp":320,"pc":31,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/enchanting-ritualist.json","li":"ORC"},{"n":"Encymion","s":"myth-speaker-bestiary","lv":9,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-3-titanbane/encymion.json","li":"ORC"},{"n":"Endlo Kiver","s":"stolen-fate-bestiary","lv":12,"ac":33,"hp":215,"pc":22,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/endlo-kiver.json","li":"OGL"},{"n":"Engelidis","s":"kingmaker-bestiary","lv":16,"ac":40,"hp":290,"pc":28,"sz":"large","tp":"aberration","f":"kingmaker-bestiary/engelidis.json","li":"OGL"},{"n":"Engerra","s":"claws-of-the-tyrant-bestiary","lv":9,"ac":27,"hp":152,"pc":20,"sz":"tiny","tp":"celestial","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/engerra.json","li":"ORC"},{"n":"Enigmatic Conspirant","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/enigmatic-conspirant.json","li":"ORC"},{"n":"Enormous Dragonfly","s":"kingmaker-bestiary","lv":9,"ac":27,"hp":165,"pc":16,"sz":"large","tp":"animal","f":"kingmaker-bestiary/enormous-dragonfly.json","li":"OGL"},{"n":"Enormous Flame Drake","s":"kingmaker-bestiary","lv":8,"ac":27,"hp":140,"pc":16,"sz":"large","tp":"dragon","f":"kingmaker-bestiary/enormous-flame-drake.json","li":"OGL"},{"n":"Enraged Dream","s":"sky-kings-tomb-bestiary","lv":8,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"dream","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/enraged-dream.json","li":"OGL"},{"n":"Enraged Spirit","s":"myth-speaker-bestiary","lv":0,"ac":14,"hp":10,"pc":6,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/enraged-spirit.json","li":"ORC"},{"n":"Envoy","s":"pathfinder-npc-core","lv":0,"ac":13,"hp":12,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/envoy.json","li":"ORC"},{"n":"Envyspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/envyspawn.json","li":"ORC"},{"n":"Eobald","s":"kingmaker-bestiary","lv":6,"ac":18,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/eobald.json","li":"OGL"},{"n":"Ephialtes","s":"stolen-fate-bestiary","lv":16,"ac":39,"hp":299,"pc":30,"sz":"huge","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/ephialtes.json","li":"OGL"},{"n":"Equendia","s":"gatewalkers-bestiary","lv":11,"ac":31,"hp":175,"pc":21,"sz":"medium","tp":"undead","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/equendia.json","li":"ORC"},{"n":"Equestrian Constable","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/equestrian-constable.json","li":"ORC"},{"n":"Eremite","s":"pathfinder-monster-core-2","lv":20,"ac":45,"hp":375,"pc":34,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/eremite.json","li":"ORC"},{"n":"Erinys Sister Wight","s":"hellbreakers-bestiary","lv":3,"ac":18,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/erinys-sister-wight.json","li":"ORC"},{"n":"Erissa","s":"shades-of-blood-bestiary","lv":5,"ac":22,"hp":55,"pc":11,"sz":"medium","tp":"spirit","f":"shades-of-blood-bestiary/book-2-the-broken-palace/erissa.json","li":"ORC"},{"n":"Eron of Jandelay","s":"revenge-of-the-runelords-bestiary","lv":13,"ac":34,"hp":200,"pc":26,"sz":"gargantuan","tp":"monitor","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/eron-of-jandelay.json","li":"ORC"},{"n":"Erzgeist","s":"revenge-of-the-runelords-bestiary","lv":19,"ac":42,"hp":270,"pc":33,"sz":"medium","tp":"spirit","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/erzgeist.json","li":"ORC"},{"n":"Eseneth","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":290,"pc":29,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/eseneth.json","li":"ORC"},{"n":"Eshmok","s":"spore-war-bestiary","lv":9,"ac":27,"hp":200,"pc":18,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/eshmok.json","li":"ORC"},{"n":"Esipil","s":"pathfinder-monster-core-2","lv":1,"ac":17,"hp":15,"pc":7,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core-2/esipil.json","li":"ORC"},{"n":"Esobok","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":55,"pc":12,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/esobok.json","li":"ORC"},{"n":"Esobok Ghoul","s":"malevolence-bestiary","lv":5,"ac":21,"hp":90,"pc":14,"sz":"medium","tp":"undead","f":"malevolence-bestiary/esobok-ghoul.json","li":"OGL"},{"n":"Ether Spider","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":75,"pc":12,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/ether-spider.json","li":"ORC"},{"n":"Ether Sprite","s":"sky-kings-tomb-bestiary","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"fey","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/ether-sprite.json","li":"OGL"},{"n":"Ether Sprite Swarm","s":"sky-kings-tomb-bestiary","lv":3,"ac":19,"hp":32,"pc":9,"sz":"large","tp":"fey","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/ether-sprite-swarm.json","li":"OGL"},{"n":"Ethereal Sailor","s":"lost-omens-bestiary","lv":6,"ac":25,"hp":60,"pc":14,"sz":"medium","tp":"","f":"lost-omens-bestiary/the-grand-bazaar/ethereal-sailor.json","li":"OGL"},{"n":"Etward Ritalson","s":"gatewalkers-bestiary","lv":9,"ac":28,"hp":140,"pc":18,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/etward-ritalson.json","li":"ORC"},{"n":"Eumenid","s":"myth-speaker-bestiary","lv":6,"ac":24,"hp":80,"pc":18,"sz":"medium","tp":"monitor","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/eumenid.json","li":"ORC"},{"n":"Eunice","s":"agents-of-edgewatch-bestiary","lv":0,"ac":15,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/eunice.json","li":"OGL"},{"n":"Eural, The East Wind","s":"rage-of-elements-bestiary","lv":18,"ac":43,"hp":310,"pc":33,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/eural-the-east-wind.json","li":"OGL"},{"n":"Evangelist","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":13,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/evangelist.json","li":"ORC"},{"n":"Everburning Mammoth","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/everburning-mammoth.json","li":"OGL"},{"n":"Evindra","s":"kingmaker-bestiary","lv":13,"ac":35,"hp":210,"pc":20,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/evindra.json","li":"OGL"},{"n":"Evora Yarket","s":"extinction-curse-bestiary","lv":7,"ac":22,"hp":115,"pc":14,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/evora-yarket.json","li":"OGL"},{"n":"Excorion","s":"agents-of-edgewatch-bestiary","lv":7,"ac":24,"hp":160,"pc":18,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/excorion.json","li":"OGL"},{"n":"Excorion","s":"book-of-the-dead-bestiary","lv":7,"ac":24,"hp":160,"pc":18,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/excorion.json","li":"OGL"},{"n":"Excorion Paragon","s":"agents-of-edgewatch-bestiary","lv":18,"ac":41,"hp":300,"pc":30,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/excorion-paragon.json","li":"OGL"},{"n":"Executioner","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":105,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/executioner.json","li":"ORC"},{"n":"Executor Archdragon","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-archdragon.json","li":"ORC"},{"n":"Executor Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":45,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-archdragon-spellcaster.json","li":"ORC"},{"n":"Executor Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Executor Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-adult.json","li":"ORC"},{"n":"Executor Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":335,"pc":30,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Executor Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":335,"pc":30,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-ancient.json","li":"ORC"},{"n":"Executor Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-young-spellcaster.json","li":"ORC"},{"n":"Executor Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/executor/executor-dragon-young.json","li":"ORC"},{"n":"Exiled Revolutionary","s":"pathfinder-npc-core","lv":10,"ac":28,"hp":140,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/exiled-revolutionary.json","li":"ORC"},{"n":"Exorcist","s":"season-of-ghosts-bestiary","lv":8,"ac":24,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/exorcist.json","li":"ORC"},{"n":"Expedition Leader","s":"pathfinder-npc-core","lv":9,"ac":27,"hp":160,"pc":21,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/expedition-leader.json","li":"ORC"},{"n":"Experienced Hound","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":115,"pc":16,"sz":"medium","tp":"animal","f":"pathfinder-npc-core/creature-companions/experienced-hound.json","li":"ORC"},{"n":"Exscinder","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":240,"pc":25,"sz":"huge","tp":"celestial","f":"pathfinder-monster-core-2/exscinder.json","li":"ORC"},{"n":"Exthenios","s":"myth-speaker-bestiary","lv":9,"ac":27,"hp":115,"pc":21,"sz":"medium","tp":"undead","f":"myth-speaker-bestiary/book-3-titanbane/exthenios.json","li":"ORC"},{"n":"Exuberant Apprentice","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":65,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/exuberant-apprentice.json","li":"ORC"},{"n":"Eyelet","s":"wardens-of-wildwood-bestiary","lv":1,"ac":15,"hp":20,"pc":10,"sz":"tiny","tp":"beast","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/eyelet.json","li":"ORC"},{"n":"Eyelet Swarm","s":"wardens-of-wildwood-bestiary","lv":7,"ac":24,"hp":90,"pc":18,"sz":"large","tp":"beast","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/eyelet-swarm.json","li":"ORC"},{"n":"Eylthia","s":"myth-speaker-bestiary","lv":10,"ac":29,"hp":175,"pc":22,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/eylthia.json","li":"ORC"},{"n":"Eylthia's Basilisk","s":"myth-speaker-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"beast","f":"myth-speaker-bestiary/book-3-titanbane/eylthias-basilisk.json","li":"ORC"},{"n":"Ezio Gaeta","s":"hellbreakers-bestiary","lv":7,"ac":25,"hp":90,"pc":16,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/ezio-gaeta.json","li":"ORC"},{"n":"Fabled Harrowkin","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"small","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/fabled-harrowkin.json","li":"OGL"},{"n":"Fabrina The Spinster","s":"stolen-fate-bestiary","lv":20,"ac":46,"hp":375,"pc":41,"sz":"large","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/fabrina-the-spinster.json","li":"OGL"},{"n":"Facade","s":"curtain-call-bestiary","lv":15,"ac":37,"hp":300,"pc":23,"sz":"medium","tp":"astral","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/facade.json","li":"ORC"},{"n":"Faceless Butcher","s":"extinction-curse-bestiary","lv":11,"ac":31,"hp":175,"pc":21,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/faceless-butcher.json","li":"OGL"},{"n":"Facetbound Cascader","s":"blood-lords-bestiary","lv":16,"ac":38,"hp":280,"pc":28,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/facetbound-cascader.json","li":"OGL"},{"n":"Facetbound Nullifier","s":"blood-lords-bestiary","lv":15,"ac":38,"hp":305,"pc":25,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/facetbound-nullifier.json","li":"OGL"},{"n":"Fafnheir","s":"lost-omens-bestiary","lv":24,"ac":51,"hp":500,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/monsters-of-myth/fafnheir.json","li":"OGL"},{"n":"Failed Prophet","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":175,"pc":20,"sz":"medium","tp":"construct","f":"lost-omens-bestiary/shining-kingdoms/failed-prophet.json","li":"ORC"},{"n":"Faithless Ecclesiarch","s":"book-of-the-dead-bestiary","lv":6,"ac":21,"hp":93,"pc":16,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/faithless-ecclesiarch.json","li":"OGL"},{"n":"Fallen Acolyte","s":"rusthenge-bestiary","lv":0,"ac":15,"hp":15,"pc":5,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/fallen-acolyte.json","li":"OGL"},{"n":"Fallen Champion","s":"book-of-the-dead-bestiary","lv":8,"ac":28,"hp":130,"pc":17,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/fallen-champion.json","li":"OGL"},{"n":"Fallenta","s":"curtain-call-bestiary","lv":11,"ac":29,"hp":160,"pc":21,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-1-stage-fright/fallenta.json","li":"ORC"},{"n":"Falrok","s":"age-of-ashes-bestiary","lv":14,"ac":37,"hp":250,"pc":28,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/falrok.json","li":"OGL"},{"n":"False Devil","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":26,"hp":145,"pc":17,"sz":"medium","tp":"beast","f":"seven-dooms-for-sandpoint-bestiary/false-devil.json","li":"OGL"},{"n":"False Governor","s":"season-of-ghosts-bestiary","lv":12,"ac":32,"hp":220,"pc":19,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/false-governor.json","li":"ORC"},{"n":"False Hellbreaker","s":"hellbreakers-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/false-hellbreaker.json","li":"ORC"},{"n":"False Priest","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":50,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/false-priest.json","li":"ORC"},{"n":"False Priestess","s":"kingmaker-bestiary","lv":7,"ac":22,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/false-priestess.json","li":"OGL"},{"n":"Familiar Shadow","s":"season-of-ghosts-bestiary","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/familiar-shadow.json","li":"ORC"},{"n":"Fan Hongrui","s":"season-of-ghosts-bestiary","lv":2,"ac":17,"hp":32,"pc":8,"sz":"small","tp":"undead","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/fan-hongrui.json","li":"ORC"},{"n":"Fangtooth School","s":"howl-of-the-wild-bestiary","lv":3,"ac":18,"hp":40,"pc":11,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/fangtooth-school.json","li":"ORC"},{"n":"Fangwood Sentinel Corps","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/fangwood-sentinel-corps.json","li":"ORC"},{"n":"Farmer","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":18,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/farmer.json","li":"ORC"},{"n":"Fate's Prophet","s":"stolen-fate-bestiary","lv":14,"ac":35,"hp":255,"pc":25,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/fates-prophet.json","li":"OGL"},{"n":"Father Skinsaw","s":"curtain-call-bestiary","lv":20,"ac":44,"hp":380,"pc":33,"sz":"medium","tp":"","f":"curtain-call-bestiary/book-3-bring-the-house-down/father-skinsaw.json","li":"ORC"},{"n":"Fattened War Pig","s":"triumph-of-the-tusk-bestiary","lv":6,"ac":24,"hp":120,"pc":14,"sz":"large","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/fattened-war-pig.json","li":"ORC"},{"n":"Favored Thrall","s":"shades-of-blood-bestiary","lv":4,"ac":18,"hp":60,"pc":8,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/favored-thrall.json","li":"ORC"},{"n":"Fayati Alummur","s":"agents-of-edgewatch-bestiary","lv":8,"ac":27,"hp":150,"pc":19,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/fayati-alummur.json","li":"OGL"},{"n":"Faydhaan","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":145,"pc":16,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/faydhaan.json","li":"ORC"},{"n":"Faydhaan Shuyookh","s":"rage-of-elements-bestiary","lv":14,"ac":36,"hp":240,"pc":23,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/faydhaan-shuyookh.json","li":"OGL"},{"n":"Fazil","s":"sky-kings-tomb-bestiary","lv":1,"ac":18,"hp":16,"pc":8,"sz":"small","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/fazil.json","li":"OGL"},{"n":"Feathered Bear","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":160,"pc":18,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/feathered-bear.json","li":"ORC"},{"n":"Fen Mosquito Swarm","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":30,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/fen-mosquito-swarm.json","li":"ORC"},{"n":"Fen Pudding","s":"kingmaker-bestiary","lv":12,"ac":20,"hp":300,"pc":15,"sz":"huge","tp":"ooze","f":"kingmaker-bestiary/fen-pudding.json","li":"OGL"},{"n":"Fence","s":"pathfinder-npc-core","lv":5,"ac":20,"hp":70,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/fence.json","li":"ORC"},{"n":"Fenton Vilorgo","s":"curtain-call-bestiary","lv":17,"ac":39,"hp":300,"pc":28,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/fenton-vilorgo.json","li":"ORC"},{"n":"Fenton's Faithful","s":"curtain-call-bestiary","lv":13,"ac":33,"hp":220,"pc":23,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/fentons-faithful.json","li":"ORC"},{"n":"Ferghaz","s":"sky-kings-tomb-bestiary","lv":1,"ac":16,"hp":15,"pc":9,"sz":"medium","tp":"spirit","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/ferghaz.json","li":"OGL"},{"n":"Ferrous Butterfly","s":"rage-of-elements-bestiary","lv":1,"ac":15,"hp":20,"pc":7,"sz":"tiny","tp":"elemental","f":"rage-of-elements-bestiary/ferrous-butterfly.json","li":"OGL"},{"n":"Ferrugon","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":190,"pc":22,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/ferrugon.json","li":"ORC"},{"n":"Festering Gnasher","s":"book-of-the-dead-bestiary","lv":1,"ac":16,"hp":18,"pc":8,"sz":"tiny","tp":"undead","f":"book-of-the-dead-bestiary/festering-gnasher.json","li":"OGL"},{"n":"Festrog","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":25,"pc":6,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/festrog.json","li":"ORC"},{"n":"Fetch Behemoth","s":"kingmaker-bestiary","lv":20,"ac":44,"hp":460,"pc":36,"sz":"large","tp":"fey","f":"kingmaker-bestiary/fetch-behemoth.json","li":"OGL"},{"n":"Fetch Stalker","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":350,"pc":30,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/fetch-stalker.json","li":"OGL"},{"n":"Fetchling Scout","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/fetchling-scout.json","li":"ORC"},{"n":"Fey Dragonet","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":30,"pc":8,"sz":"tiny","tp":"dragon","f":"pathfinder-monster-core/fey-dragonet.json","li":"ORC"},{"n":"Fiddling Bones","s":"book-of-the-dead-bestiary","lv":3,"ac":18,"hp":30,"pc":9,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/fiddling-bones.json","li":"OGL"},{"n":"Fiend Caller","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":35,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/fiend-caller.json","li":"ORC"},{"n":"Fiendish Arboreal","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":20,"hp":75,"pc":11,"sz":"large","tp":"fiend","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/fiendish-arboreal.json","li":"OGL"},{"n":"Fiendish Flock","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":26,"hp":88,"pc":16,"sz":"large","tp":"animal","f":"seven-dooms-for-sandpoint-bestiary/fiendish-flock.json","li":"OGL"},{"n":"Fiendish Viro Ahala","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":115,"pc":14,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/fiendish-viro-ahala.json","li":"ORC"},{"n":"Fiery Leopard","s":"fall-of-plaguestone","lv":1,"ac":17,"hp":20,"pc":6,"sz":"medium","tp":"animal","f":"fall-of-plaguestone/fiery-leopard.json","li":"OGL"},{"n":"Filth Fire","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":70,"pc":11,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/filth-fire.json","li":"ORC"},{"n":"Fionn","s":"kingmaker-bestiary","lv":13,"ac":32,"hp":175,"pc":24,"sz":"large","tp":"spirit","f":"kingmaker-bestiary/fionn.json","li":"OGL"},{"n":"Fire Giant","s":"pathfinder-monster-core","lv":10,"ac":31,"hp":175,"pc":18,"sz":"large","tp":"giant","f":"pathfinder-monster-core/fire-giant.json","li":"ORC"},{"n":"Fire Jellyfish Swarm","s":"pathfinder-monster-core-2","lv":6,"ac":13,"hp":155,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/fire-jellyfish-swarm.json","li":"ORC"},{"n":"Fire Scamp","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":16,"pc":3,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/fire-scamp.json","li":"ORC"},{"n":"Fire Wisp","s":"pathfinder-monster-core-2","lv":0,"ac":15,"hp":15,"pc":6,"sz":"tiny","tp":"elemental","f":"pathfinder-monster-core-2/fire-wisp.json","li":"ORC"},{"n":"Fire-pot Ubanu","s":"strength-of-thousands-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/fire-pot-ubanu.json","li":"OGL"},{"n":"Firebrand Bastion","s":"blood-lords-bestiary","lv":17,"ac":41,"hp":390,"pc":29,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/firebrand-bastion.json","li":"OGL"},{"n":"Firebrand Brass Dragon (Ancient)","s":"blog-bestiary","lv":17,"ac":41,"hp":345,"pc":30,"sz":"huge","tp":"dragon","f":"blog-bestiary/firebrand-brass-dragon-ancient.json","li":"OGL"},{"n":"Firehoof Minotaur","s":"myth-speaker-bestiary","lv":7,"ac":24,"hp":140,"pc":16,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/firehoof-minotaur.json","li":"ORC"},{"n":"Firewyrm","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":165,"pc":16,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core/firewyrm.json","li":"ORC"},{"n":"Firitula","s":"shades-of-blood-bestiary","lv":7,"ac":25,"hp":105,"pc":16,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/firitula.json","li":"ORC"},{"n":"First-Class Infantry","s":"battlecry-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/first-class-infantry.json","li":"ORC"},{"n":"Fisher","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/fisher.json","li":"ORC"},{"n":"Five-Color Orchid Mantis","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":137,"pc":18,"sz":"medium","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/five-color-orchid-mantis.json","li":"ORC"},{"n":"Flamboyant Thief","s":"pathfinder-npc-core","lv":15,"ac":37,"hp":225,"pc":27,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/flamboyant-thief.json","li":"ORC"},{"n":"Flame Drake","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":75,"pc":12,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/flame-drake.json","li":"ORC"},{"n":"Flames of Taargick","s":"sky-kings-tomb-bestiary","lv":11,"ac":31,"hp":210,"pc":22,"sz":"huge","tp":"elemental","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/flames-of-taargick.json","li":"OGL"},{"n":"Flaming Skull","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":30,"pc":9,"sz":"tiny","tp":"undead","f":"pathfinder-monster-core-2/flaming-skull.json","li":"ORC"},{"n":"Flash Beetle","s":"pathfinder-monster-core","lv":-1,"ac":16,"hp":6,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core/flash-beetle.json","li":"ORC"},{"n":"Flea Swarm","s":"extinction-curse-bestiary","lv":5,"ac":18,"hp":55,"pc":13,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/flea-swarm.json","li":"OGL"},{"n":"Fleshforged Conformer","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":145,"pc":19,"sz":"medium","tp":"aberration","f":"lost-omens-bestiary/impossible-lands/fleshforged-conformer.json","li":"OGL"},{"n":"Fleshforged Dreadnought","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":300,"pc":29,"sz":"gargantuan","tp":"construct","f":"lost-omens-bestiary/impossible-lands/fleshforged-dreadnought.json","li":"OGL"},{"n":"Fleshwarp Amalgam","s":"battlecry-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"gargantuan","tp":"aberration","f":"battlecry-bestiary/fleshwarp-amalgam.json","li":"ORC"},{"n":"Fleshwarper","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":110,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/fleshwarper.json","li":"ORC"},{"n":"Flickerwisp","s":"abomination-vaults-bestiary","lv":2,"ac":20,"hp":18,"pc":9,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/flickerwisp.json","li":"OGL"},{"n":"Floating Femur","s":"blood-lords-bestiary","lv":-1,"ac":14,"hp":7,"pc":3,"sz":"tiny","tp":"construct","f":"blood-lords-bestiary/book-1-zombie-feast/floating-femur.json","li":"OGL"},{"n":"Flood Ghoul","s":"triumph-of-the-tusk-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/flood-ghoul.json","li":"ORC"},{"n":"Floodslain Mage","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":21,"hp":70,"pc":9,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/floodslain-mage.json","li":"ORC"},{"n":"Floodslain Orc","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":17,"hp":44,"pc":9,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/floodslain-orc.json","li":"ORC"},{"n":"Floodslain Wolf","s":"triumph-of-the-tusk-bestiary","lv":2,"ac":17,"hp":34,"pc":10,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/floodslain-wolf.json","li":"ORC"},{"n":"Floolf","s":"blog-bestiary","lv":1,"ac":19,"hp":50,"pc":11,"sz":"medium","tp":"animal","f":"blog-bestiary/floolf.json","li":"OGL"},{"n":"Fluxwraith","s":"book-of-the-dead-bestiary","lv":17,"ac":39,"hp":250,"pc":35,"sz":"medium","tp":"spirit","f":"book-of-the-dead-bestiary/fluxwraith.json","li":"OGL"},{"n":"Flying Mountain Kaminari","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":320,"pc":33,"sz":"huge","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/flying-mountain-kaminari.json","li":"OGL"},{"n":"Flynkett","s":"howl-of-the-wild-bestiary","lv":3,"ac":19,"hp":60,"pc":9,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/flynkett.json","li":"ORC"},{"n":"Fogfisher","s":"shades-of-blood-bestiary","lv":4,"ac":20,"hp":50,"pc":13,"sz":"large","tp":"aberration","f":"shades-of-blood-bestiary/book-2-the-broken-palace/fogfisher.json","li":"ORC"},{"n":"Follower of Shumfallow","s":"outlaws-of-alkenstar-bestiary","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"small","tp":"fungus","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/follower-of-shumfallow.json","li":"OGL"},{"n":"Foolish Hunter","s":"crown-of-the-kobold-king-bestiary","lv":-1,"ac":16,"hp":10,"pc":9,"sz":"medium","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/foolish-hunter.json","li":"OGL"},{"n":"Forager","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/forager.json","li":"ORC"},{"n":"Foras","s":"kingmaker-bestiary","lv":19,"ac":43,"hp":355,"pc":33,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/foras.json","li":"OGL"},{"n":"Forest Archdragon","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":480,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-archdragon.json","li":"ORC"},{"n":"Forest Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":480,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-archdragon-spellcaster.json","li":"ORC"},{"n":"Forest Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":260,"pc":25,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Forest Dragon (Adult)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":260,"pc":25,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-adult.json","li":"ORC"},{"n":"Forest Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":375,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Forest Dragon (Ancient)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":375,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-ancient.json","li":"ORC"},{"n":"Forest Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-young-spellcaster.json","li":"ORC"},{"n":"Forest Dragon (Young)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/forest/forest-dragon-young.json","li":"ORC"},{"n":"Forest Troll","s":"pathfinder-monster-core","lv":5,"ac":20,"hp":125,"pc":11,"sz":"large","tp":"giant","f":"pathfinder-monster-core/forest-troll.json","li":"ORC"},{"n":"Forest Troll (BB)","s":"menace-under-otari-bestiary","lv":5,"ac":20,"hp":125,"pc":11,"sz":"large","tp":"giant","f":"menace-under-otari-bestiary/forest-troll-bb.json","li":"ORC"},{"n":"Forge-Spurned","s":"age-of-ashes-bestiary","lv":5,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/forge-spurned.json","li":"OGL"},{"n":"Forger of Tanglebriar","s":"spore-war-bestiary","lv":16,"ac":40,"hp":300,"pc":28,"sz":"medium","tp":"fey","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/forger-of-tanglebriar.json","li":"ORC"},{"n":"Forgotten Dead","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":65,"pc":14,"sz":"medium","tp":"","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/forgotten-dead.json","li":"ORC"},{"n":"Forlorn Artist","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":26,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/elf/forlorn-artist.json","li":"ORC"},{"n":"Formian Mageslayer","s":"strength-of-thousands-bestiary","lv":16,"ac":38,"hp":240,"pc":31,"sz":"medium","tp":"","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/formian-mageslayer.json","li":"OGL"},{"n":"Formian Queen","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":255,"pc":31,"sz":"large","tp":"","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/formian-queen.json","li":"OGL"},{"n":"Formian Worker","s":"strength-of-thousands-bestiary","lv":1,"ac":16,"hp":20,"pc":6,"sz":"medium","tp":"","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/formian-worker.json","li":"OGL"},{"n":"Fortune Archdragon","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/fortune/fortune-archdragon.json","li":"ORC"},{"n":"Fortune Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/fortune/fortune-archdragon-spellcaster.json","li":"ORC"},{"n":"Fortune Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":230,"pc":24,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Fortune Dragon (Adult)","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":230,"pc":24,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-adult.json","li":"ORC"},{"n":"Fortune Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":19,"ac":43,"hp":300,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Fortune Dragon (Ancient)","s":"pathfinder-monster-core","lv":19,"ac":43,"hp":300,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-ancient.json","li":"ORC"},{"n":"Fortune Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-young-spellcaster.json","li":"ORC"},{"n":"Fortune Dragon (Young)","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/fortune-dragon-young.json","li":"ORC"},{"n":"Four-Tooth","s":"sky-kings-tomb-bestiary","lv":7,"ac":25,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/four-tooth.json","li":"OGL"},{"n":"Franca Laurentz","s":"agents-of-edgewatch-bestiary","lv":13,"ac":35,"hp":195,"pc":26,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/franca-laurentz.json","li":"OGL"},{"n":"Frefferth","s":"agents-of-edgewatch-bestiary","lv":9,"ac":30,"hp":125,"pc":18,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/frefferth.json","li":"OGL"},{"n":"Freileth","s":"shades-of-blood-bestiary","lv":9,"ac":27,"hp":115,"pc":20,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/freileth.json","li":"ORC"},{"n":"Freshly Bloomed Basilisk","s":"kingmaker-bestiary","lv":9,"ac":26,"hp":188,"pc":18,"sz":"medium","tp":"beast","f":"kingmaker-bestiary/freshly-bloomed-basilisk.json","li":"OGL"},{"n":"Froglegs","s":"strength-of-thousands-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/froglegs.json","li":"OGL"},{"n":"Frost Drake","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":115,"pc":14,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/frost-drake.json","li":"ORC"},{"n":"Frost Giant","s":"pathfinder-monster-core","lv":9,"ac":29,"hp":150,"pc":17,"sz":"large","tp":"giant","f":"pathfinder-monster-core/frost-giant.json","li":"ORC"},{"n":"Frost Roc","s":"prey-for-death-bestiary","lv":14,"ac":34,"hp":300,"pc":25,"sz":"gargantuan","tp":"beast","f":"prey-for-death-bestiary/frost-roc.json","li":"ORC"},{"n":"Frostripper","s":"prey-for-death-bestiary","lv":13,"ac":34,"hp":232,"pc":26,"sz":"huge","tp":"beast","f":"prey-for-death-bestiary/frostripper.json","li":"ORC"},{"n":"Fuath","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":18,"pc":8,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/fuath.json","li":"ORC"},{"n":"Fulthrethu","s":"shades-of-blood-bestiary","lv":5,"ac":22,"hp":75,"pc":12,"sz":"large","tp":"aberration","f":"shades-of-blood-bestiary/book-2-the-broken-palace/fulthrethu.json","li":"ORC"},{"n":"Fuming Sludge","s":"the-slithering-bestiary","lv":7,"ac":16,"hp":160,"pc":11,"sz":"medium","tp":"ooze","f":"the-slithering-bestiary/fuming-sludge.json","li":"OGL"},{"n":"Fungal Abomination","s":"spore-war-bestiary","lv":18,"ac":39,"hp":275,"pc":34,"sz":"huge","tp":"aberration","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/fungal-abomination.json","li":"ORC"},{"n":"Fungal Amalgamite","s":"spore-war-bestiary","lv":13,"ac":33,"hp":220,"pc":23,"sz":"medium","tp":"aberration","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/fungal-amalgamite.json","li":"ORC"},{"n":"Fungal Flytrap","s":"spore-war-bestiary","lv":10,"ac":29,"hp":185,"pc":17,"sz":"huge","tp":"fungus","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/fungal-flytrap.json","li":"ORC"},{"n":"Fungal Marsh Giant","s":"spore-war-bestiary","lv":11,"ac":30,"hp":197,"pc":20,"sz":"large","tp":"fungus","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/fungal-marsh-giant.json","li":"ORC"},{"n":"Fungus Leshy","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":30,"pc":6,"sz":"small","tp":"fungus","f":"pathfinder-monster-core/fungus-leshy.json","li":"ORC"},{"n":"Fungus Tyrant","s":"seven-dooms-for-sandpoint-bestiary","lv":9,"ac":27,"hp":180,"pc":19,"sz":"medium","tp":"fiend","f":"seven-dooms-for-sandpoint-bestiary/fungus-tyrant.json","li":"OGL"},{"n":"Furnerico","s":"curtain-call-bestiary","lv":14,"ac":33,"hp":320,"pc":24,"sz":"large","tp":"aberration","f":"curtain-call-bestiary/book-1-stage-fright/furnerico.json","li":"ORC"},{"n":"Gadgeteer","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":95,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/gadgeteer.json","li":"ORC"},{"n":"Gaetane","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":315,"pc":27,"sz":"medium","tp":"beast","f":"kingmaker-bestiary/gaetane.json","li":"OGL"},{"n":"Gage Carlyle","s":"agents-of-edgewatch-bestiary","lv":11,"ac":24,"hp":120,"pc":24,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/gage-carlyle.json","li":"OGL"},{"n":"Gahlepod","s":"extinction-curse-bestiary","lv":7,"ac":24,"hp":140,"pc":13,"sz":"small","tp":"fey","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/gahlepod.json","li":"OGL"},{"n":"Gale Frenzy","s":"myth-speaker-bestiary","lv":9,"ac":28,"hp":150,"pc":17,"sz":"gargantuan","tp":"beast","f":"myth-speaker-bestiary/book-3-titanbane/gale-frenzy.json","li":"ORC"},{"n":"Gallowdead","s":"book-of-the-dead-bestiary","lv":15,"ac":37,"hp":280,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/gallowdead.json","li":"OGL"},{"n":"Galudu","s":"abomination-vaults-bestiary","lv":11,"ac":30,"hp":195,"pc":18,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/galudu.json","li":"OGL"},{"n":"Gambling Companion","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":46,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tengu/gambling-companion.json","li":"ORC"},{"n":"Gambulami","s":"strength-of-thousands-bestiary","lv":11,"ac":31,"hp":200,"pc":21,"sz":"small","tp":"fey","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/gambulami.json","li":"OGL"},{"n":"Gamekeeper","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":95,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/gamekeeper.json","li":"ORC"},{"n":"Gancanagh","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":75,"pc":11,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core/gancanagh.json","li":"ORC"},{"n":"Gang Leader","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/gang-leader.json","li":"ORC"},{"n":"Gang Tough","s":"agents-of-edgewatch-bestiary","lv":7,"ac":25,"hp":125,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/gang-tough.json","li":"OGL"},{"n":"Ganzi Martial Artist","s":"pathfinder-monster-core-2","lv":3,"ac":20,"hp":36,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/ganzi-martial-artist.json","li":"ORC"},{"n":"Garadasura","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":200,"pc":21,"sz":"huge","tp":"spirit","f":"pathfinder-monster-core-2/garadasura.json","li":"ORC"},{"n":"Gargoyle","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":40,"pc":10,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/gargoyle.json","li":"ORC"},{"n":"Gargoyle (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":21,"hp":40,"pc":10,"sz":"medium","tp":"beast","f":"menace-under-otari-bestiary/gargoyle-bb.json","li":"ORC"},{"n":"Gargoyle Wing","s":"battlecry-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"gargantuan","tp":"beast","f":"battlecry-bestiary/gargoyle-wing.json","li":"ORC"},{"n":"Garrholdion","s":"claws-of-the-tyrant-bestiary","lv":20,"ac":46,"hp":350,"pc":33,"sz":"huge","tp":"construct","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/garrholdion.json","li":"ORC"},{"n":"Garrote Master Assassin","s":"agents-of-edgewatch-bestiary","lv":16,"ac":38,"hp":300,"pc":30,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/garrote-master-assassin.json","li":"OGL"},{"n":"Garuda","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":160,"pc":20,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/garuda.json","li":"ORC"},{"n":"Gashadokuro","s":"book-of-the-dead-bestiary","lv":13,"ac":33,"hp":230,"pc":24,"sz":"huge","tp":"undead","f":"book-of-the-dead-bestiary/gashadokuro.json","li":"OGL"},{"n":"Gathganara","s":"quest-for-the-frozen-flame-bestiary","lv":1,"ac":16,"hp":20,"pc":6,"sz":"medium","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/gathganara.json","li":"OGL"},{"n":"Gau Cho Rong","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":50,"pc":10,"sz":"small","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/gau-cho-rong.json","li":"ORC"},{"n":"Gavergash","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":35,"hp":320,"pc":25,"sz":"large","tp":"giant","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/gavergash.json","li":"ORC"},{"n":"Gbahali","s":"strength-of-thousands-bestiary","lv":9,"ac":28,"hp":170,"pc":17,"sz":"huge","tp":"beast","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/gbahali.json","li":"OGL"},{"n":"Gedovius","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":222,"pc":28,"sz":"medium","tp":"beast","f":"kingmaker-bestiary/gedovius.json","li":"OGL"},{"n":"Geff","s":"shades-of-blood-bestiary","lv":6,"ac":21,"hp":100,"pc":9,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/geff.json","li":"ORC"},{"n":"Gegnir","s":"stolen-fate-bestiary","lv":20,"ac":44,"hp":470,"pc":35,"sz":"huge","tp":"giant","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/gegnir.json","li":"OGL"},{"n":"Geist","s":"book-of-the-dead-bestiary","lv":9,"ac":26,"hp":120,"pc":17,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/geist.json","li":"OGL"},{"n":"Geist","s":"seven-dooms-for-sandpoint-bestiary","lv":9,"ac":26,"hp":120,"pc":17,"sz":"medium","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/geist.json","li":"OGL"},{"n":"Gendarme","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":120,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/gendarme.json","li":"ORC"},{"n":"General Avinash Jurrg","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":225,"pc":26,"sz":"large","tp":"fiend","f":"kingmaker-bestiary/general-avinash-jurrg.json","li":"OGL"},{"n":"Gennayn","s":"rage-of-elements-bestiary","lv":2,"ac":17,"hp":30,"pc":8,"sz":"tiny","tp":"elemental","f":"rage-of-elements-bestiary/gennayn.json","li":"OGL"},{"n":"Gerhard Pendergrast","s":"age-of-ashes-bestiary","lv":8,"ac":26,"hp":135,"pc":19,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/gerhard-pendergrast.json","li":"OGL"},{"n":"Ghaele Of Kharnas","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":315,"pc":32,"sz":"medium","tp":"celestial","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/ghaele-of-kharnas.json","li":"OGL"},{"n":"Ghalzarokh","s":"stolen-fate-bestiary","lv":15,"ac":36,"hp":330,"pc":28,"sz":"large","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/ghalzarokh.json","li":"OGL"},{"n":"Ghast Cultist","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":25,"hp":115,"pc":18,"sz":"medium","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/ghast-cultist.json","li":"OGL"},{"n":"Ghast Outlaw","s":"blood-lords-bestiary","lv":9,"ac":28,"hp":155,"pc":15,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-3-field-of-maidens/ghast-outlaw.json","li":"OGL"},{"n":"Ghastly Bear","s":"age-of-ashes-bestiary","lv":9,"ac":27,"hp":135,"pc":16,"sz":"large","tp":"undead","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/ghastly-bear.json","li":"OGL"},{"n":"Ghiasi","s":"blood-lords-bestiary","lv":17,"ac":40,"hp":285,"pc":34,"sz":"medium","tp":"","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/ghiasi.json","li":"OGL"},{"n":"Ghiasi's Double","s":"blood-lords-bestiary","lv":14,"ac":36,"hp":230,"pc":30,"sz":"medium","tp":"","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/ghiasis-double.json","li":"OGL"},{"n":"Ghiono","s":"blood-lords-bestiary","lv":18,"ac":41,"hp":339,"pc":30,"sz":"medium","tp":"","f":"blood-lords-bestiary/book-6-ghost-kings-rage/ghiono.json","li":"OGL"},{"n":"Ghodrak the Quick","s":"gatewalkers-bestiary","lv":5,"ac":22,"hp":80,"pc":15,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/ghodrak-the-quick.json","li":"ORC"},{"n":"Gholdako","s":"book-of-the-dead-bestiary","lv":10,"ac":27,"hp":215,"pc":16,"sz":"huge","tp":"undead","f":"book-of-the-dead-bestiary/gholdako.json","li":"OGL"},{"n":"Ghost","s":"season-of-ghosts-bestiary","lv":4,"ac":20,"hp":30,"pc":10,"sz":"medium","tp":"spirit","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/ghost.json","li":"ORC"},{"n":"Ghost Ape","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":65,"pc":14,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/ghost-ape.json","li":"ORC"},{"n":"Ghost Commoner","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":30,"pc":10,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/ghost-commoner.json","li":"ORC"},{"n":"Ghost Commoner (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":20,"hp":30,"pc":10,"sz":"medium","tp":"spirit","f":"menace-under-otari-bestiary/ghost-commoner-bb.json","li":"ORC"},{"n":"Ghost Mage","s":"pathfinder-monster-core","lv":10,"ac":27,"hp":135,"pc":17,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/ghost-mage.json","li":"ORC"},{"n":"Ghost Monk","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":25,"hp":115,"pc":18,"sz":"medium","tp":"spirit","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/ghost-monk.json","li":"OGL"},{"n":"Ghost Pirate Captain","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":100,"pc":17,"sz":"medium","tp":"spirit","f":"book-of-the-dead-bestiary/ghost-pirate-captain.json","li":"OGL"},{"n":"Ghostly Guard","s":"kingmaker-bestiary","lv":15,"ac":35,"hp":210,"pc":29,"sz":"medium","tp":"spirit","f":"kingmaker-bestiary/ghostly-guard.json","li":"OGL"},{"n":"Ghostly Mob","s":"pathfinder-monster-core-2","lv":8,"ac":25,"hp":105,"pc":16,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/ghostly-mob.json","li":"ORC"},{"n":"Ghoul Antipaladin","s":"blood-lords-bestiary","lv":9,"ac":29,"hp":155,"pc":15,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/ghoul-antipaladin.json","li":"OGL"},{"n":"Ghoul Crocodile","s":"blood-lords-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/ghoul-crocodile.json","li":"OGL"},{"n":"Ghoul Gnawer","s":"blood-lords-bestiary","lv":11,"ac":28,"hp":190,"pc":18,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/ghoul-gnawer.json","li":"OGL"},{"n":"Ghoul Razorclaw","s":"blood-lords-bestiary","lv":13,"ac":34,"hp":230,"pc":25,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/ghoul-razorclaw.json","li":"OGL"},{"n":"Ghoul Soldier","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":28,"pc":8,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/ghoul-soldier.json","li":"ORC"},{"n":"Ghoul Stalker","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":16,"pc":7,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/ghoul-stalker.json","li":"ORC"},{"n":"Ghoul Stalker (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":17,"hp":16,"pc":7,"sz":"medium","tp":"undead","f":"menace-under-otari-bestiary/ghoul-stalker-bb.json","li":"ORC"},{"n":"Ghul","s":"book-of-the-dead-bestiary","lv":5,"ac":21,"hp":85,"pc":13,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/ghul.json","li":"OGL"},{"n":"Giant Amoeba","s":"pathfinder-monster-core-2","lv":1,"ac":8,"hp":45,"pc":4,"sz":"small","tp":"ooze","f":"pathfinder-monster-core-2/giant-amoeba.json","li":"ORC"},{"n":"Giant Anaconda","s":"pathfinder-monster-core","lv":8,"ac":25,"hp":175,"pc":17,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/giant-anaconda.json","li":"ORC"},{"n":"Giant Animated Statue","s":"pathfinder-monster-core","lv":7,"ac":26,"hp":100,"pc":13,"sz":"huge","tp":"construct","f":"pathfinder-monster-core/giant-animated-statue.json","li":"ORC"},{"n":"Giant Ant","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/giant-ant.json","li":"ORC"},{"n":"Giant Ant (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/giant-ant-bb.json","li":"ORC"},{"n":"Giant Ant Army","s":"battlecry-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/giant-ant-army.json","li":"ORC"},{"n":"Giant Aukashungi","s":"extinction-curse-bestiary","lv":14,"ac":36,"hp":300,"pc":24,"sz":"huge","tp":"aberration","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/giant-aukashungi.json","li":"OGL"},{"n":"Giant Badger","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-badger.json","li":"ORC"},{"n":"Giant Bat","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":30,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-bat.json","li":"ORC"},{"n":"Giant Bloodseeker","s":"sky-kings-tomb-bestiary","lv":2,"ac":19,"hp":25,"pc":10,"sz":"medium","tp":"animal","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/giant-bloodseeker.json","li":"OGL"},{"n":"Giant Bone Skipper","s":"agents-of-edgewatch-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"large","tp":"animal","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/giant-bone-skipper.json","li":"OGL"},{"n":"Giant Centipede","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/giant-centipede.json","li":"ORC"},{"n":"Giant Centipede (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/giant-centipede-bb.json","li":"ORC"},{"n":"Giant Chameleon","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":60,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/giant-chameleon.json","li":"ORC"},{"n":"Giant Cockroach","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core-2/giant-cockroach.json","li":"ORC"},{"n":"Giant Coppermouth","s":"howl-of-the-wild-bestiary","lv":7,"ac":25,"hp":115,"pc":18,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/giant-coppermouth.json","li":"ORC"},{"n":"Giant Crab","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":25,"pc":8,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-crab.json","li":"ORC"},{"n":"Giant Crawling Hand","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":75,"pc":12,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/giant-crawling-hand.json","li":"ORC"},{"n":"Giant Dragonfly","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-dragonfly.json","li":"ORC"},{"n":"Giant Dragonfly Nymph","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":45,"pc":8,"sz":"small","tp":"animal","f":"pathfinder-monster-core-2/giant-dragonfly-nymph.json","li":"ORC"},{"n":"Giant Eagle","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":45,"pc":11,"sz":"large","tp":"beast","f":"pathfinder-monster-core/giant-eagle.json","li":"ORC"},{"n":"Giant Fangtooth","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":75,"pc":14,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/giant-fangtooth.json","li":"ORC"},{"n":"Giant Flea","s":"extinction-curse-bestiary","lv":3,"ac":19,"hp":50,"pc":10,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/giant-flea.json","li":"OGL"},{"n":"Giant Fly","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":8,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-fly.json","li":"ORC"},{"n":"Giant Flytrap","s":"pathfinder-monster-core","lv":10,"ac":29,"hp":185,"pc":17,"sz":"huge","tp":"plant","f":"pathfinder-monster-core/giant-flytrap.json","li":"ORC"},{"n":"Giant Frilled Lizard","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":75,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-frilled-lizard.json","li":"ORC"},{"n":"Giant Frog","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-frog.json","li":"ORC"},{"n":"Giant Gecko","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/giant-gecko.json","li":"ORC"},{"n":"Giant Goliath Beetle","s":"strength-of-thousands-bestiary","lv":3,"ac":20,"hp":40,"pc":10,"sz":"large","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/giant-goliath-beetle.json","li":"OGL"},{"n":"Giant Hippocampus","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":170,"pc":16,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/giant-hippocampus.json","li":"ORC"},{"n":"Giant Jellyfish","s":"pathfinder-monster-core-2","lv":7,"ac":15,"hp":165,"pc":12,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/giant-jellyfish.json","li":"ORC"},{"n":"Giant Joro Spider","s":"agents-of-edgewatch-bestiary","lv":8,"ac":24,"hp":200,"pc":17,"sz":"large","tp":"animal","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/giant-joro-spider.json","li":"OGL"},{"n":"Giant Leech","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":32,"pc":5,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-leech.json","li":"ORC"},{"n":"Giant Leech","s":"sky-kings-tomb-bestiary","lv":2,"ac":17,"hp":32,"pc":5,"sz":"medium","tp":"animal","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/giant-leech.json","li":"OGL"},{"n":"Giant Lightning Serpent","s":"fall-of-plaguestone","lv":2,"ac":19,"hp":27,"pc":7,"sz":"medium","tp":"animal","f":"fall-of-plaguestone/giant-lightning-serpent.json","li":"OGL"},{"n":"Giant Longlegs","s":"seven-dooms-for-sandpoint-bestiary","lv":3,"ac":18,"hp":50,"pc":8,"sz":"small","tp":"animal","f":"seven-dooms-for-sandpoint-bestiary/giant-longlegs.json","li":"OGL"},{"n":"Giant Maggot","s":"pathfinder-monster-core-2","lv":0,"ac":13,"hp":15,"pc":3,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-maggot.json","li":"ORC"},{"n":"Giant Mantis","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":40,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-mantis.json","li":"ORC"},{"n":"Giant Mining Bee","s":"strength-of-thousands-bestiary","lv":2,"ac":18,"hp":30,"pc":9,"sz":"small","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/giant-mining-bee.json","li":"OGL"},{"n":"Giant Monitor Lizard","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":36,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/giant-monitor-lizard.json","li":"ORC"},{"n":"Giant Moray Eel","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":65,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-moray-eel.json","li":"ORC"},{"n":"Giant Mosquito","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":80,"pc":17,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/giant-mosquito.json","li":"ORC"},{"n":"Giant Octopus","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/giant-octopus.json","li":"ORC"},{"n":"Giant Opossum","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/giant-opossum.json","li":"ORC"},{"n":"Giant Orchid Mantis","s":"lost-omens-bestiary","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/tian-xia-world-guide/giant-orchid-mantis.json","li":"ORC"},{"n":"Giant Pirate Skeleton","s":"one-shot-bestiary","lv":8,"ac":26,"hp":125,"pc":18,"sz":"large","tp":"undead","f":"one-shot-bestiary/sundered-waves/giant-pirate-skeleton.json","li":"OGL"},{"n":"Giant Rat","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"small","tp":"animal","f":"pathfinder-monster-core/giant-rat.json","li":"ORC"},{"n":"Giant Rat (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"small","tp":"animal","f":"menace-under-otari-bestiary/giant-rat-bb.json","li":"ORC"},{"n":"Giant Scorpion","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-scorpion.json","li":"ORC"},{"n":"Giant Silverfish","s":"strength-of-thousands-bestiary","lv":0,"ac":15,"hp":17,"pc":8,"sz":"small","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/giant-silverfish.json","li":"OGL"},{"n":"Giant Spider (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":17,"hp":16,"pc":7,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/giant-spider-bb.json","li":"ORC"},{"n":"Giant Stag Beetle","s":"pathfinder-monster-core","lv":4,"ac":22,"hp":55,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-stag-beetle.json","li":"ORC"},{"n":"Giant Swamp Fly","s":"standalone-adventures","lv":1,"ac":17,"hp":20,"pc":8,"sz":"medium","tp":"animal","f":"standalone-adventures/adventure-2-swamp-stalkers/giant-swamp-fly.json","li":"ORC"},{"n":"Giant Tapir","s":"quest-for-the-frozen-flame-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"large","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/giant-tapir.json","li":"OGL"},{"n":"Giant Tapir (Snared)","s":"quest-for-the-frozen-flame-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"large","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/giant-tapir-snared.json","li":"OGL"},{"n":"Giant Tarantula","s":"pathfinder-monster-core","lv":6,"ac":21,"hp":135,"pc":14,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-tarantula.json","li":"ORC"},{"n":"Giant Tardigrade","s":"howl-of-the-wild-bestiary","lv":9,"ac":23,"hp":120,"pc":16,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/giant-tardigrade.json","li":"ORC"},{"n":"Giant Trapdoor Spider","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":28,"pc":7,"sz":"medium","tp":"animal","f":"kingmaker-bestiary/giant-trapdoor-spider.json","li":"OGL"},{"n":"Giant Tsetse Fly","s":"strength-of-thousands-bestiary","lv":2,"ac":18,"hp":30,"pc":9,"sz":"large","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/giant-tsetse-fly.json","li":"OGL"},{"n":"Giant Viper","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":26,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/giant-viper.json","li":"ORC"},{"n":"Giant Viper (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":17,"hp":26,"pc":7,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/giant-viper-bb.json","li":"ORC"},{"n":"Giant Wasp","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":45,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core/giant-wasp.json","li":"ORC"},{"n":"Giant Worker Bee","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":16,"pc":5,"sz":"medium","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/giant-worker-bee.json","li":"OGL"},{"n":"Gibtanius","s":"abomination-vaults-bestiary","lv":8,"ac":28,"hp":140,"pc":16,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/gibtanius.json","li":"OGL"},{"n":"Gibtas Bounder","s":"abomination-vaults-bestiary","lv":5,"ac":22,"hp":76,"pc":13,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/gibtas-bounder.json","li":"OGL"},{"n":"Gibtas Spawn Swarm","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":70,"pc":14,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/gibtas-spawn-swarm.json","li":"OGL"},{"n":"Gigantic Bee Drone","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":60,"pc":12,"sz":"large","tp":"animal","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/gigantic-bee-drone.json","li":"ORC"},{"n":"Gigantic Bee Guard","s":"myth-speaker-bestiary","lv":4,"ac":21,"hp":60,"pc":14,"sz":"large","tp":"animal","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/gigantic-bee-guard.json","li":"ORC"},{"n":"Gigantic Bee Royal Guardian","s":"myth-speaker-bestiary","lv":6,"ac":23,"hp":115,"pc":15,"sz":"huge","tp":"animal","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/gigantic-bee-royal-guardian.json","li":"ORC"},{"n":"Gigantopithecus","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":60,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/gigantopithecus.json","li":"ORC"},{"n":"Gilded Gunner Assassin","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":22,"hp":75,"pc":15,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/gilded-gunner-assassin.json","li":"OGL"},{"n":"Gilded Gunner Goon","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":20,"hp":60,"pc":8,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/gilded-gunner-goon.json","li":"OGL"},{"n":"Gilded Gunner Safecracker","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":20,"hp":65,"pc":12,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/gilded-gunner-safecracker.json","li":"OGL"},{"n":"Gimmerling","s":"pathfinder-monster-core","lv":12,"ac":34,"hp":235,"pc":21,"sz":"small","tp":"fey","f":"pathfinder-monster-core/gimmerling.json","li":"ORC"},{"n":"Ginjana Mindkeeper","s":"extinction-curse-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"small","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/ginjana-mindkeeper.json","li":"OGL"},{"n":"Girtablilu Guardian","s":"curtain-call-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"large","tp":"beast","f":"curtain-call-bestiary/book-1-stage-fright/girtablilu-guardian.json","li":"ORC"},{"n":"Girtablilu Seer","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":210,"pc":25,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/girtablilu-seer.json","li":"ORC"},{"n":"Girtablilu Sentry","s":"curtain-call-bestiary","lv":8,"ac":27,"hp":160,"pc":18,"sz":"large","tp":"beast","f":"curtain-call-bestiary/book-1-stage-fright/girtablilu-sentry.json","li":"ORC"},{"n":"Girtablilu Sentry","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":160,"pc":18,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/girtablilu-sentry.json","li":"ORC"},{"n":"Giylea","s":"pathfinder-monster-core","lv":16,"ac":41,"hp":230,"pc":28,"sz":"huge","tp":"celestial","f":"pathfinder-monster-core/giylea.json","li":"ORC"},{"n":"Glacial Worm","s":"sky-kings-tomb-bestiary","lv":16,"ac":36,"hp":370,"pc":22,"sz":"gargantuan","tp":"animal","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/glacial-worm.json","li":"OGL"},{"n":"Glass Buccaneer","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":28,"hp":154,"pc":18,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/glass-buccaneer.json","li":"OGL"},{"n":"Glass Elephant","s":"outlaws-of-alkenstar-bestiary","lv":12,"ac":32,"hp":245,"pc":22,"sz":"huge","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/glass-elephant.json","li":"OGL"},{"n":"Glass Sentry","s":"outlaws-of-alkenstar-bestiary","lv":6,"ac":24,"hp":94,"pc":14,"sz":"medium","tp":"elemental","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/glass-sentry.json","li":"OGL"},{"n":"Glaz Nixbrix","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":24,"hp":60,"pc":9,"sz":"small","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/glaz-nixbrix.json","li":"OGL"},{"n":"Gliding River Snake","s":"hellbreakers-bestiary","lv":0,"ac":15,"hp":15,"pc":6,"sz":"small","tp":"animal","f":"hellbreakers-bestiary/gliding-river-snake.json","li":"ORC"},{"n":"Glimmervine","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":90,"pc":11,"sz":"medium","tp":"plant","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/glimmervine.json","li":"ORC"},{"n":"Glitterspore","s":"wardens-of-wildwood-bestiary","lv":8,"ac":24,"hp":105,"pc":17,"sz":"large","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/glitterspore.json","li":"ORC"},{"n":"Gloaming Will-o'-Wisp","s":"agents-of-edgewatch-bestiary","lv":13,"ac":37,"hp":110,"pc":25,"sz":"small","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/gloaming-will-o-wisp.json","li":"OGL"},{"n":"Globetrotting Scholar","s":"pathfinder-npc-core","lv":13,"ac":33,"hp":235,"pc":26,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/globetrotting-scholar.json","li":"ORC"},{"n":"Globster","s":"pathfinder-monster-core","lv":5,"ac":12,"hp":170,"pc":9,"sz":"large","tp":"ooze","f":"pathfinder-monster-core/globster.json","li":"ORC"},{"n":"Glorkus","s":"seven-dooms-for-sandpoint-bestiary","lv":4,"ac":21,"hp":59,"pc":12,"sz":"small","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/glorkus.json","li":"OGL"},{"n":"Glormungost","s":"shades-of-blood-bestiary","lv":6,"ac":24,"hp":66,"pc":10,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-2-the-broken-palace/glormungost.json","li":"ORC"},{"n":"Gluttondark Babau","s":"extinction-curse-bestiary","lv":7,"ac":26,"hp":135,"pc":15,"sz":"medium","tp":"fiend","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/gluttondark-babau.json","li":"OGL"},{"n":"Gluttonous Geode","s":"rage-of-elements-bestiary","lv":1,"ac":15,"hp":25,"pc":6,"sz":"tiny","tp":"elemental","f":"rage-of-elements-bestiary/gluttonous-geode.json","li":"OGL"},{"n":"Gluttonworm","s":"strength-of-thousands-bestiary","lv":19,"ac":41,"hp":445,"pc":32,"sz":"gargantuan","tp":"beast","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/gluttonworm.json","li":"OGL"},{"n":"Gluttonyspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/gluttonyspawn.json","li":"ORC"},{"n":"Glutu","s":"rusthenge-bestiary","lv":3,"ac":19,"hp":44,"pc":11,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/glutu.json","li":"OGL"},{"n":"Glyptodon","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":23,"hp":65,"pc":9,"sz":"large","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/glyptodon.json","li":"OGL"},{"n":"Gnagrif","s":"strength-of-thousands-bestiary","lv":2,"ac":18,"hp":35,"pc":7,"sz":"tiny","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/gnagrif.json","li":"OGL"},{"n":"Gnokesh","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":70,"pc":15,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/gnokesh.json","li":"ORC"},{"n":"Gnome Bard","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":16,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/gnome-bard.json","li":"ORC"},{"n":"Gnome Cannon Corps","s":"battlecry-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/gnome-cannon-corps.json","li":"ORC"},{"n":"Gnome Conservationist","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":100,"pc":17,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/gnome/gnome-conservationist.json","li":"ORC"},{"n":"Gnome Daredevil","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":30,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/gnome/gnome-daredevil.json","li":"ORC"},{"n":"Gnome Philomath","s":"pathfinder-npc-core","lv":-1,"ac":12,"hp":7,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/gnome/gnome-philomath.json","li":"ORC"},{"n":"Goblin Bat-Dog","s":"kingmaker-bestiary","lv":4,"ac":18,"hp":53,"pc":9,"sz":"medium","tp":"animal","f":"kingmaker-bestiary/goblin-bat-dog.json","li":"OGL"},{"n":"Goblin Chef","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":24,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/goblin/goblin-chef.json","li":"ORC"},{"n":"Goblin Commando","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":18,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/goblin-commando.json","li":"ORC"},{"n":"Goblin Commando (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":17,"hp":18,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/goblin-commando-bb.json","li":"ORC"},{"n":"Goblin Dog","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":17,"pc":6,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/goblin-dog.json","li":"ORC"},{"n":"Goblin Get Gang","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":90,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/goblin/goblin-get-gang.json","li":"ORC"},{"n":"Goblin Ghoul","s":"seven-dooms-for-sandpoint-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"small","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/goblin-ghoul.json","li":"OGL"},{"n":"Goblin Igniter (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":17,"hp":15,"pc":4,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/goblin-igniter-bb.json","li":"ORC"},{"n":"Goblin Pyro","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":15,"pc":4,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/goblin-pyro.json","li":"ORC"},{"n":"Goblin Rabble","s":"battlecry-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/goblin-rabble.json","li":"ORC"},{"n":"Goblin Scavenger","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":70,"pc":14,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/goblin/goblin-scavenger.json","li":"ORC"},{"n":"Goblin Shark","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":85,"pc":15,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/goblin-shark.json","li":"ORC"},{"n":"Goblin Snake","s":"pathfinder-monster-core-2","lv":1,"ac":17,"hp":15,"pc":6,"sz":"small","tp":"aberration","f":"pathfinder-monster-core-2/goblin-snake.json","li":"ORC"},{"n":"Goblin War Chanter","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":16,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/goblin-war-chanter.json","li":"ORC"},{"n":"Goblin Warrior","s":"pathfinder-monster-core","lv":-1,"ac":16,"hp":6,"pc":2,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/goblin-warrior.json","li":"ORC"},{"n":"Goblin Warrior (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":16,"hp":6,"pc":2,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/goblin-warrior-bb.json","li":"ORC"},{"n":"Goblin Zombie","s":"blog-bestiary","lv":1,"ac":12,"hp":20,"pc":0,"sz":"small","tp":"undead","f":"blog-bestiary/goblin-zombie.json","li":"OGL"},{"n":"Gobmob Snake","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/gobmob-snake.json","li":"ORC"},{"n":"God Caller","s":"pathfinder-npc-core","lv":10,"ac":29,"hp":150,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/god-caller.json","li":"ORC"},{"n":"Godclaw Hellcrown","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":115,"pc":15,"sz":"tiny","tp":"undead","f":"hellbreakers-bestiary/godclaw-hellcrown.json","li":"ORC"},{"n":"Gogiteth","s":"pathfinder-monster-core","lv":12,"ac":31,"hp":250,"pc":21,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/gogiteth.json","li":"ORC"},{"n":"Gokeki","s":"gatewalkers-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"medium","tp":"animal","f":"gatewalkers-bestiary/book-1-the-seventh-arch/gokeki.json","li":"ORC"},{"n":"Golarion's Finest (Brartork)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-brartork.json","li":"OGL"},{"n":"Golarion's Finest (Han)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-han.json","li":"OGL"},{"n":"Golarion's Finest (Jun)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-jun.json","li":"OGL"},{"n":"Golarion's Finest (Krankkiss)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-krankkiss.json","li":"OGL"},{"n":"Golarion's Finest (Mingyu)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-mingyu.json","li":"OGL"},{"n":"Golarion's Finest (Numoriz)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-numoriz.json","li":"OGL"},{"n":"Golarion's Finest (Paunnima)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-paunnima.json","li":"OGL"},{"n":"Golarion's Finest (Rajna)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/golarions-finest-rajna.json","li":"OGL"},{"n":"Gold Defender","s":"strength-of-thousands-bestiary","lv":13,"ac":34,"hp":190,"pc":21,"sz":"huge","tp":"construct","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/gold-defender.json","li":"OGL"},{"n":"Gold Defender Garrison","s":"strength-of-thousands-bestiary","lv":13,"ac":29,"hp":240,"pc":22,"sz":"gargantuan","tp":"construct","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/gold-defender-garrison.json","li":"OGL"},{"n":"Gold Tank Broker","s":"outlaws-of-alkenstar-bestiary","lv":1,"ac":16,"hp":16,"pc":8,"sz":"medium","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/gold-tank-broker.json","li":"OGL"},{"n":"Gold Tank Investor","s":"outlaws-of-alkenstar-bestiary","lv":-1,"ac":14,"hp":8,"pc":3,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/gold-tank-investor.json","li":"OGL"},{"n":"Golden Erinys Novitiate Circle","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/golden-erinys-novitiate-circle.json","li":"ORC"},{"n":"Goldgorger","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":335,"pc":30,"sz":"medium","tp":"elemental","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/goldgorger.json","li":"ORC"},{"n":"Goldpebble","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":90,"pc":9,"sz":"large","tp":"beast","f":"lost-omens-bestiary/shining-kingdoms/goldpebble.json","li":"ORC"},{"n":"Golem","s":"pathfinder-monster-core-2","lv":8,"ac":25,"hp":170,"pc":16,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/golem.json","li":"ORC"},{"n":"Golgopo","s":"strength-of-thousands-bestiary","lv":8,"ac":26,"hp":130,"pc":16,"sz":"small","tp":"construct","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/golgopo.json","li":"OGL"},{"n":"Goliath Spider","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":220,"pc":22,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/goliath-spider.json","li":"ORC"},{"n":"Gomwai","s":"fists-of-the-ruby-phoenix-bestiary","lv":12,"ac":33,"hp":235,"pc":21,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/gomwai.json","li":"OGL"},{"n":"Gongorinan","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":205,"pc":20,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/gongorinan.json","li":"ORC"},{"n":"Gorilla","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core/gorilla.json","li":"ORC"},{"n":"Gorlak","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":23,"hp":130,"pc":14,"sz":"large","tp":"giant","f":"seven-dooms-for-sandpoint-bestiary/gorlak.json","li":"OGL"},{"n":"Gorumite Infantry","s":"prey-for-death-bestiary","lv":14,"ac":36,"hp":255,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"prey-for-death-bestiary/gorumite-infantry.json","li":"ORC"},{"n":"Gorumite Veteran","s":"prey-for-death-bestiary","lv":12,"ac":33,"hp":240,"pc":21,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/gorumite-veteran.json","li":"ORC"},{"n":"Gorumite Warpriest","s":"prey-for-death-bestiary","lv":12,"ac":32,"hp":212,"pc":23,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/gorumite-warpriest.json","li":"ORC"},{"n":"Gosreg","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":195,"pc":21,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/gosreg.json","li":"ORC"},{"n":"Gourd Leshy","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":20,"pc":5,"sz":"small","tp":"plant","f":"pathfinder-monster-core/gourd-leshy.json","li":"ORC"},{"n":"Gourd Leshy Witch","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":80,"pc":12,"sz":"small","tp":"plant","f":"pathfinder-npc-core/ancestry-npcs/leshy/gourd-leshy-witch.json","li":"ORC"},{"n":"Grabble Forden","s":"agents-of-edgewatch-bestiary","lv":13,"ac":32,"hp":285,"pc":25,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/grabble-forden.json","li":"OGL"},{"n":"Grabbles","s":"kingmaker-bestiary","lv":2,"ac":18,"hp":35,"pc":7,"sz":"small","tp":"fey","f":"kingmaker-bestiary/grabbles.json","li":"OGL"},{"n":"Grace \"The Rhino\" Owano","s":"blood-lords-bestiary","lv":10,"ac":29,"hp":175,"pc":19,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/grace-the-rhino-owano.json","li":"OGL"},{"n":"Graelar the Whisper","s":"blood-lords-bestiary","lv":18,"ac":41,"hp":405,"pc":25,"sz":"large","tp":"giant","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/graelar-the-whisper.json","li":"OGL"},{"n":"Graem","s":"agents-of-edgewatch-bestiary","lv":16,"ac":39,"hp":300,"pc":29,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/graem.json","li":"OGL"},{"n":"Grand Defender","s":"lost-omens-bestiary","lv":15,"ac":40,"hp":280,"pc":29,"sz":"huge","tp":"celestial","f":"lost-omens-bestiary/highhelm/grand-defender.json","li":"OGL"},{"n":"Grand Inquisitor","s":"pathfinder-npc-core","lv":15,"ac":38,"hp":215,"pc":28,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/grand-inquisitor.json","li":"ORC"},{"n":"Grandfather Mantis","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":300,"pc":27,"sz":"medium","tp":"monitor","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/grandfather-mantis.json","li":"OGL"},{"n":"Grandmama","s":"curtain-call-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"monitor","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/grandmama.json","li":"ORC"},{"n":"Grandmaster","s":"pathfinder-npc-core","lv":17,"ac":40,"hp":310,"pc":35,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/martial-artist/grandmaster.json","li":"ORC"},{"n":"Granite Glyptodont","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":145,"pc":17,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/granite-glyptodont.json","li":"ORC"},{"n":"Granite Vulture","s":"blood-lords-bestiary","lv":2,"ac":18,"hp":28,"pc":10,"sz":"medium","tp":"fiend","f":"blood-lords-bestiary/book-1-zombie-feast/granite-vulture.json","li":"OGL"},{"n":"Grappling Spirit","s":"book-of-the-dead-bestiary","lv":9,"ac":27,"hp":125,"pc":17,"sz":"medium","tp":"spirit","f":"book-of-the-dead-bestiary/grappling-spirit.json","li":"OGL"},{"n":"Graul","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":60,"pc":14,"sz":"large","tp":"aberration","f":"lost-omens-bestiary/highhelm/graul.json","li":"OGL"},{"n":"Grauladon","s":"age-of-ashes-bestiary","lv":2,"ac":17,"hp":35,"pc":7,"sz":"large","tp":"dragon","f":"age-of-ashes-bestiary/book-1-hellknight-hill/grauladon.json","li":"OGL"},{"n":"Grave Hag","s":"blood-lords-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/grave-hag.json","li":"OGL"},{"n":"Grave Karina","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":240,"pc":21,"sz":"large","tp":"beast","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/grave-karina.json","li":"OGL"},{"n":"Grave Robber","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":20,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/grave-robber.json","li":"ORC"},{"n":"Grave Spinosaurus","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":30,"hp":280,"pc":26,"sz":"gargantuan","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/grave-spinosaurus.json","li":"OGL"},{"n":"Gravedigger","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/gravedigger.json","li":"ORC"},{"n":"Graveknight","s":"pathfinder-monster-core","lv":10,"ac":31,"hp":175,"pc":19,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/graveknight.json","li":"ORC"},{"n":"Graveknight (Umbra)","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":31,"hp":175,"pc":19,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/graveknight-umbra.json","li":"ORC"},{"n":"Graveknight Captain","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/graveknight-captain.json","li":"ORC"},{"n":"Graveknight Champion","s":"pathfinder-monster-core-2","lv":15,"ac":38,"hp":275,"pc":27,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/graveknight-champion.json","li":"ORC"},{"n":"Graveknight Of Kharnas","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":260,"pc":30,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/graveknight-of-kharnas.json","li":"OGL"},{"n":"Graveknight Warmaster","s":"pathfinder-monster-core-2","lv":14,"ac":37,"hp":255,"pc":26,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/graveknight-warmaster.json","li":"ORC"},{"n":"Graverobber","s":"curtain-call-bestiary","lv":11,"ac":31,"hp":180,"pc":21,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-1-stage-fright/graverobber.json","li":"ORC"},{"n":"Graveshell","s":"age-of-ashes-bestiary","lv":1,"ac":17,"hp":20,"pc":4,"sz":"large","tp":"beast","f":"age-of-ashes-bestiary/book-1-hellknight-hill/graveshell.json","li":"OGL"},{"n":"Gray Butcher","s":"season-of-ghosts-bestiary","lv":2,"ac":20,"hp":20,"pc":7,"sz":"medium","tp":"","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/gray-butcher.json","li":"ORC"},{"n":"Gray Death","s":"night-of-the-gray-death-bestiary","lv":20,"ac":44,"hp":330,"pc":33,"sz":"huge","tp":"spirit","f":"night-of-the-gray-death-bestiary/gray-death.json","li":"OGL"},{"n":"Gray Gardener Assassin","s":"night-of-the-gray-death-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/gray-gardener-assassin.json","li":"OGL"},{"n":"Gray Gardener Director General","s":"night-of-the-gray-death-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/gray-gardener-director-general.json","li":"OGL"},{"n":"Gray Gardener Enforcer","s":"night-of-the-gray-death-bestiary","lv":17,"ac":39,"hp":350,"pc":28,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/gray-gardener-enforcer.json","li":"OGL"},{"n":"Gray Master","s":"curtain-call-bestiary","lv":20,"ac":43,"hp":280,"pc":34,"sz":"medium","tp":"undead","f":"curtain-call-bestiary/book-3-bring-the-house-down/gray-master.json","li":"ORC"},{"n":"Gray Worm","s":"sky-kings-tomb-bestiary","lv":11,"ac":28,"hp":248,"pc":19,"sz":"gargantuan","tp":"beast","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/gray-worm.json","li":"OGL"},{"n":"Graylok Ambusher","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":26,"hp":130,"pc":19,"sz":"large","tp":"giant","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/graylok-ambusher.json","li":"OGL"},{"n":"Graylok Artillerist","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":26,"hp":100,"pc":16,"sz":"large","tp":"giant","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/graylok-artillerist.json","li":"OGL"},{"n":"Graylok Gatebreaker","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":28,"hp":130,"pc":16,"sz":"large","tp":"giant","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/graylok-gatebreaker.json","li":"OGL"},{"n":"Graytusk","s":"fall-of-plaguestone","lv":3,"ac":21,"hp":47,"pc":9,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/graytusk.json","li":"OGL"},{"n":"Great Cyclops","s":"pathfinder-monster-core","lv":12,"ac":32,"hp":235,"pc":22,"sz":"huge","tp":"giant","f":"pathfinder-monster-core/great-cyclops.json","li":"ORC"},{"n":"Great Grodair","s":"strength-of-thousands-bestiary","lv":7,"ac":23,"hp":130,"pc":16,"sz":"large","tp":"beast","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/great-grodair.json","li":"OGL"},{"n":"Great Ironbill","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":22,"hp":58,"pc":10,"sz":"large","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/great-ironbill.json","li":"ORC"},{"n":"Great White Shark","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":11,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/great-white-shark.json","li":"ORC"},{"n":"Greater Chimera","s":"howl-of-the-wild-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/greater-chimera.json","li":"ORC"},{"n":"Greater Hell Hound","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":150,"pc":19,"sz":"large","tp":"beast","f":"pathfinder-monster-core/greater-hell-hound.json","li":"ORC"},{"n":"Greater Herexen","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/greater-herexen.json","li":"ORC"},{"n":"Greater Nightmare","s":"pathfinder-monster-core","lv":11,"ac":31,"hp":200,"pc":22,"sz":"huge","tp":"beast","f":"pathfinder-monster-core/greater-nightmare.json","li":"ORC"},{"n":"Greater Shadow","s":"pathfinder-monster-core","lv":7,"ac":24,"hp":75,"pc":14,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/greater-shadow.json","li":"ORC"},{"n":"Gredress Tilnanos","s":"hellbreakers-bestiary","lv":7,"ac":22,"hp":100,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/gredress-tilnanos.json","li":"ORC"},{"n":"Greedspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/greedspawn.json","li":"ORC"},{"n":"Greedspawn","s":"revenge-of-the-runelords-bestiary","lv":10,"ac":30,"hp":180,"pc":19,"sz":"medium","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/greedspawn.json","li":"ORC"},{"n":"Greedspawn","s":"seven-dooms-for-sandpoint-bestiary","lv":2,"ac":18,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/greedspawn.json","li":"OGL"},{"n":"Green Man","s":"pathfinder-monster-core-2","lv":24,"ac":51,"hp":525,"pc":42,"sz":"medium","tp":"plant","f":"pathfinder-monster-core-2/green-man.json","li":"ORC"},{"n":"Green Monkey","s":"gatewalkers-bestiary","lv":3,"ac":19,"hp":50,"pc":12,"sz":"tiny","tp":"beast","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/green-monkey.json","li":"ORC"},{"n":"Gref","s":"agents-of-edgewatch-bestiary","lv":2,"ac":17,"hp":40,"pc":9,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/gref.json","li":"OGL"},{"n":"Grick","s":"agents-of-edgewatch-bestiary","lv":3,"ac":19,"hp":40,"pc":12,"sz":"medium","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/grick.json","li":"OGL"},{"n":"Grick","s":"crown-of-the-kobold-king-bestiary","lv":3,"ac":20,"hp":35,"pc":8,"sz":"medium","tp":"aberration","f":"crown-of-the-kobold-king-bestiary/grick.json","li":"OGL"},{"n":"Griffon","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":13,"sz":"large","tp":"animal","f":"pathfinder-monster-core/griffon.json","li":"ORC"},{"n":"Grigori","s":"kingmaker-bestiary","lv":7,"ac":23,"hp":110,"pc":15,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/grigori.json","li":"OGL"},{"n":"Grikkitog","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":200,"pc":29,"sz":"huge","tp":"aberration","f":"pathfinder-monster-core/grikkitog.json","li":"ORC"},{"n":"Grim Reaper","s":"pathfinder-monster-core","lv":21,"ac":47,"hp":320,"pc":41,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/grim-reaper.json","li":"ORC"},{"n":"Grimbal","s":"crown-of-the-kobold-king-bestiary","lv":6,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"spirit","f":"crown-of-the-kobold-king-bestiary/grimbal.json","li":"OGL"},{"n":"Grimple","s":"pathfinder-monster-core-2","lv":-1,"ac":14,"hp":9,"pc":6,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/grimple.json","li":"ORC"},{"n":"Grimwold","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":270,"pc":27,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/grimwold.json","li":"OGL"},{"n":"Grindylow","s":"pathfinder-monster-core","lv":0,"ac":15,"hp":14,"pc":5,"sz":"small","tp":"aberration","f":"pathfinder-monster-core/grindylow.json","li":"ORC"},{"n":"Grinlowe","s":"agents-of-edgewatch-bestiary","lv":16,"ac":39,"hp":300,"pc":29,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/grinlowe.json","li":"OGL"},{"n":"Grioth Cultist","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":40,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/grioth-cultist.json","li":"ORC"},{"n":"Grioth Scout","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":18,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/grioth-scout.json","li":"ORC"},{"n":"Grippli Archer","s":"age-of-ashes-bestiary","lv":3,"ac":20,"hp":44,"pc":10,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/grippli-archer.json","li":"OGL"},{"n":"Grippli Greenspeaker","s":"age-of-ashes-bestiary","lv":5,"ac":21,"hp":71,"pc":13,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/grippli-greenspeaker.json","li":"OGL"},{"n":"Grippli Jinxer","s":"strength-of-thousands-bestiary","lv":6,"ac":23,"hp":95,"pc":16,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/grippli-jinxer.json","li":"OGL"},{"n":"Grippli Skirmisher","s":"strength-of-thousands-bestiary","lv":4,"ac":22,"hp":60,"pc":12,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/grippli-skirmisher.json","li":"OGL"},{"n":"Grisantian Lion","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":215,"pc":25,"sz":"huge","tp":"beast","f":"pathfinder-monster-core-2/grisantian-lion.json","li":"ORC"},{"n":"Gristleburst","s":"blog-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"small","tp":"humanoid","f":"blog-bestiary/gristleburst.json","li":"OGL"},{"n":"Gritblight","s":"wardens-of-wildwood-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"large","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/gritblight.json","li":"ORC"},{"n":"Grizzer","s":"spore-war-bestiary","lv":10,"ac":29,"hp":180,"pc":20,"sz":"medium","tp":"fey","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/grizzer.json","li":"ORC"},{"n":"Grizzly Bear","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":59,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/grizzly-bear.json","li":"ORC"},{"n":"Grodair","s":"pathfinder-monster-core-2","lv":5,"ac":20,"hp":90,"pc":13,"sz":"medium","tp":"beast","f":"pathfinder-monster-core-2/grodair.json","li":"ORC"},{"n":"Groetan Candle","s":"abomination-vaults-bestiary","lv":6,"ac":27,"hp":50,"pc":16,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/groetan-candle.json","li":"OGL"},{"n":"Grogrisant","s":"lost-omens-bestiary","lv":16,"ac":38,"hp":295,"pc":30,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/grogrisant.json","li":"OGL"},{"n":"Gromog","s":"kingmaker-bestiary","lv":2,"ac":17,"hp":28,"pc":5,"sz":"large","tp":"giant","f":"kingmaker-bestiary/gromog.json","li":"OGL"},{"n":"Grootslang","s":"lost-omens-bestiary","lv":16,"ac":38,"hp":370,"pc":28,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/grootslang.json","li":"OGL"},{"n":"Groplit","s":"quest-for-the-frozen-flame-bestiary","lv":0,"ac":16,"hp":16,"pc":6,"sz":"small","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/groplit.json","li":"OGL"},{"n":"Grospek Lavarsus","s":"agents-of-edgewatch-bestiary","lv":7,"ac":24,"hp":140,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/grospek-lavarsus.json","li":"OGL"},{"n":"Grothlut","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":50,"pc":5,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/grothlut.json","li":"ORC"},{"n":"Grouloop","s":"strength-of-thousands-bestiary","lv":9,"ac":27,"hp":185,"pc":18,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/grouloop.json","li":"OGL"},{"n":"Gruddunk","s":"spore-war-bestiary","lv":15,"ac":37,"hp":275,"pc":28,"sz":"medium","tp":"beast","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/gruddunk.json","li":"ORC"},{"n":"Grunka","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":16,"hp":6,"pc":2,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/grunka.json","li":"OGL"},{"n":"Gruntch","s":"spore-war-bestiary","lv":18,"ac":42,"hp":350,"pc":32,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/gruntch.json","li":"ORC"},{"n":"Grusk the Pusk","s":"shades-of-blood-bestiary","lv":4,"ac":20,"hp":70,"pc":11,"sz":"small","tp":"fiend","f":"shades-of-blood-bestiary/book-2-the-broken-palace/grusk-the-pusk.json","li":"ORC"},{"n":"Guard","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/guard.json","li":"ORC"},{"n":"Guard Dog","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core/guard-dog.json","li":"ORC"},{"n":"Guardian Aluum","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":210,"pc":22,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-2-the-destiny-war/guardian-aluum.json","li":"OGL"},{"n":"Guardian of the Faithful","s":"extinction-curse-bestiary","lv":8,"ac":28,"hp":90,"pc":15,"sz":"huge","tp":"construct","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/guardian-of-the-faithful.json","li":"OGL"},{"n":"Gug","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/gug.json","li":"ORC"},{"n":"Guhdggi","s":"season-of-ghosts-bestiary","lv":5,"ac":21,"hp":80,"pc":14,"sz":"large","tp":"fiend","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/guhdggi.json","li":"ORC"},{"n":"Guide","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":60,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/guide.json","li":"ORC"},{"n":"Guildmaster","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/artisan/guildmaster.json","li":"ORC"},{"n":"Guillotine Golem","s":"night-of-the-gray-death-bestiary","lv":18,"ac":42,"hp":270,"pc":28,"sz":"medium","tp":"construct","f":"night-of-the-gray-death-bestiary/guillotine-golem.json","li":"OGL"},{"n":"Guloval","s":"blood-lords-bestiary","lv":12,"ac":32,"hp":250,"pc":23,"sz":"small","tp":"celestial","f":"blood-lords-bestiary/book-3-field-of-maidens/guloval.json","li":"OGL"},{"n":"Gulzash","s":"abomination-vaults-bestiary","lv":4,"ac":20,"hp":72,"pc":10,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/gulzash.json","li":"OGL"},{"n":"Gumiho","s":"fists-of-the-ruby-phoenix-bestiary","lv":17,"ac":39,"hp":310,"pc":29,"sz":"medium","tp":"fey","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/gumiho.json","li":"OGL"},{"n":"Gunmarshal","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":18,"hp":30,"pc":10,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/gunmarshal.json","li":"OGL"},{"n":"Gunpowder Ooze","s":"lost-omens-bestiary","lv":14,"ac":29,"hp":400,"pc":22,"sz":"large","tp":"ooze","f":"lost-omens-bestiary/impossible-lands/gunpowder-ooze.json","li":"OGL"},{"n":"Gunsmith","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":16,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/gunsmith.json","li":"ORC"},{"n":"Gunwitch","s":"pathfinder-npc-core","lv":7,"ac":23,"hp":90,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/gunwitch.json","li":"ORC"},{"n":"Gurglegut","s":"season-of-ghosts-bestiary","lv":3,"ac":18,"hp":48,"pc":8,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/gurglegut.json","li":"OGL"},{"n":"Gurglegut (Level 12)","s":"season-of-ghosts-bestiary","lv":12,"ac":32,"hp":216,"pc":23,"sz":"large","tp":"humanoid","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/gurglegut-level-12.json","li":"ORC"},{"n":"Gurija","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":95,"pc":11,"sz":"large","tp":"giant","f":"kingmaker-bestiary/gurija.json","li":"OGL"},{"n":"Gurlunk","s":"seven-dooms-for-sandpoint-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"small","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/gurlunk.json","li":"OGL"},{"n":"Gurtlekep","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/gurtlekep.json","li":"OGL"},{"n":"Guthallath","s":"pathfinder-monster-core","lv":19,"ac":43,"hp":325,"pc":30,"sz":"gargantuan","tp":"construct","f":"pathfinder-monster-core/guthallath.json","li":"ORC"},{"n":"Gutter Ooze","s":"pathfinder-monster-core-2","lv":-1,"ac":7,"hp":20,"pc":2,"sz":"tiny","tp":"ooze","f":"pathfinder-monster-core-2/gutter-ooze.json","li":"ORC"},{"n":"Gylou","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":240,"pc":28,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/gylou.json","li":"ORC"},{"n":"Hadi Mob","s":"stolen-fate-bestiary","lv":15,"ac":37,"hp":270,"pc":25,"sz":"gargantuan","tp":"humanoid","f":"stolen-fate-bestiary/book-2-the-destiny-war/hadi-mob.json","li":"OGL"},{"n":"Hadrinnex","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":118,"pc":17,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/hadrinnex.json","li":"ORC"},{"n":"Hadrosaurid","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":13,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/hadrosaurid.json","li":"ORC"},{"n":"Hagegraf Royal Guard","s":"sky-kings-tomb-bestiary","lv":5,"ac":22,"hp":90,"pc":16,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/hagegraf-royal-guard.json","li":"OGL"},{"n":"Hala The Rod","s":"stolen-fate-bestiary","lv":20,"ac":46,"hp":375,"pc":41,"sz":"large","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/hala-the-rod.json","li":"OGL"},{"n":"Halbrux Far-sight","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"large","tp":"giant","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/halbrux-far-sight.json","li":"OGL"},{"n":"Halfling Head Chef","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":36,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/halfling/halfling-head-chef.json","li":"ORC"},{"n":"Halfling Lucky Draw","s":"battlecry-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/halfling-lucky-draw.json","li":"ORC"},{"n":"Halfling Smuggler","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":95,"pc":13,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/halfling/halfling-smuggler.json","li":"ORC"},{"n":"Halfling Street Watcher","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/halfling-street-watcher.json","li":"ORC"},{"n":"Halfling Troublemaker","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":18,"pc":10,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/halfling-troublemaker.json","li":"ORC"},{"n":"Halfling Yarnspinner","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":110,"pc":14,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/halfling/halfling-yarnspinner.json","li":"ORC"},{"n":"Hallod","s":"fall-of-plaguestone","lv":3,"ac":19,"hp":44,"pc":9,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/hallod.json","li":"OGL"},{"n":"Halspin the Stung","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":250,"pc":24,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/halspin-the-stung.json","li":"OGL"},{"n":"Hana's Hundreds","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":37,"hp":270,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/hanas-hundreds.json","li":"OGL"},{"n":"Haniver","s":"pathfinder-monster-core-2","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/haniver.json","li":"ORC"},{"n":"Hannis Drelev","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":220,"pc":17,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/hannis-drelev.json","li":"OGL"},{"n":"Hansin","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":26,"hp":104,"pc":14,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/hansin.json","li":"OGL"},{"n":"Hantu Belian","s":"fists-of-the-ruby-phoenix-bestiary","lv":11,"ac":27,"hp":150,"pc":24,"sz":"small","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/hantu-belian.json","li":"OGL"},{"n":"Hantu Denai","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":22,"hp":125,"pc":18,"sz":"large","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/hantu-denai.json","li":"OGL"},{"n":"Happs Bydon","s":"kingmaker-bestiary","lv":0,"ac":15,"hp":17,"pc":4,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/happs-bydon.json","li":"OGL"},{"n":"Hārakasura","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":130,"pc":15,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core-2/hārakasura.json","li":"ORC"},{"n":"Harbor Seal","s":"howl-of-the-wild-bestiary","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/harbor-seal.json","li":"ORC"},{"n":"Harbormaster","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/harbormaster.json","li":"ORC"},{"n":"Hardhead Mole","s":"howl-of-the-wild-bestiary","lv":0,"ac":15,"hp":20,"pc":6,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/hardhead-mole.json","li":"ORC"},{"n":"Hargrit Leadbuster","s":"troubles-in-otari-bestiary","lv":4,"ac":20,"hp":65,"pc":16,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/hargrit-leadbuster.json","li":"OGL"},{"n":"Hargulka","s":"kingmaker-bestiary","lv":8,"ac":26,"hp":190,"pc":16,"sz":"large","tp":"giant","f":"kingmaker-bestiary/hargulka.json","li":"OGL"},{"n":"Harlo Krant","s":"book-of-the-dead-bestiary","lv":4,"ac":20,"hp":80,"pc":13,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/harlo-krant.json","li":"OGL"},{"n":"Harmony In Agony","s":"blood-lords-bestiary","lv":13,"ac":34,"hp":200,"pc":23,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/harmony-in-agony.json","li":"OGL"},{"n":"Harpy","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/harpy.json","li":"ORC"},{"n":"Harpy (BB)","s":"menace-under-otari-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"beast","f":"menace-under-otari-bestiary/harpy-bb.json","li":"ORC"},{"n":"Harpy Warbird","s":"stolen-fate-bestiary","lv":11,"ac":30,"hp":200,"pc":20,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/harpy-warbird.json","li":"OGL"},{"n":"Harrow Doll","s":"extinction-curse-bestiary","lv":8,"ac":26,"hp":120,"pc":14,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/harrow-doll.json","li":"OGL"},{"n":"Harrow Reader","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":8,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/harrow-reader.json","li":"ORC"},{"n":"Harvest Regiment","s":"rage-of-elements-bestiary","lv":8,"ac":26,"hp":135,"pc":17,"sz":"gargantuan","tp":"elemental","f":"rage-of-elements-bestiary/harvest-regiment.json","li":"OGL"},{"n":"Hateful Bear","s":"wardens-of-wildwood-bestiary","lv":6,"ac":24,"hp":95,"pc":15,"sz":"large","tp":"animal","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/hateful-bear.json","li":"ORC"},{"n":"Hateful Hermit","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":80,"pc":11,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/hateful-hermit.json","li":"OGL"},{"n":"Hateful Hodag","s":"wardens-of-wildwood-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"large","tp":"beast","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/hateful-hodag.json","li":"ORC"},{"n":"Hateful Logger","s":"wardens-of-wildwood-bestiary","lv":4,"ac":20,"hp":70,"pc":11,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/hateful-logger.json","li":"ORC"},{"n":"Haunted Nosoi","s":"malevolence-bestiary","lv":2,"ac":18,"hp":28,"pc":8,"sz":"tiny","tp":"monitor","f":"malevolence-bestiary/haunted-nosoi.json","li":"OGL"},{"n":"Headless Rustler","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":28,"hp":95,"pc":14,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/headless-rustler.json","li":"OGL"},{"n":"Headless Xulgath","s":"extinction-curse-bestiary","lv":11,"ac":29,"hp":195,"pc":20,"sz":"large","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/headless-xulgath.json","li":"OGL"},{"n":"Heart-Eating Vulture","s":"season-of-ghosts-bestiary","lv":4,"ac":21,"hp":68,"pc":10,"sz":"large","tp":"beast","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/heart-eating-vulture.json","li":"ORC"},{"n":"Heartbroken Dream","s":"sky-kings-tomb-bestiary","lv":8,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"dream","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/heartbroken-dream.json","li":"OGL"},{"n":"Heavy Cavalry","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":105,"pc":14,"sz":"gargantuan","tp":"animal","f":"pathfinder-npc-core/military/heavy-cavalry.json","li":"ORC"},{"n":"Hecatinia","s":"hellbreakers-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/hecatinia.json","li":"ORC"},{"n":"Hedvend VI","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":70,"pc":12,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/hedvend-vi.json","li":"ORC"},{"n":"Hegessik","s":"agents-of-edgewatch-bestiary","lv":15,"ac":37,"hp":250,"pc":29,"sz":"large","tp":"monitor","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/hegessik.json","li":"OGL"},{"n":"Hegremon","s":"quest-for-the-frozen-flame-bestiary","lv":13,"ac":34,"hp":225,"pc":27,"sz":"large","tp":"giant","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/hegremon.json","li":"OGL"},{"n":"Heh Shan-Bao","s":"season-of-ghosts-bestiary","lv":9,"ac":25,"hp":135,"pc":15,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/heh-shan-bao.json","li":"ORC"},{"n":"Heh Shan-Bao (Level 13)","s":"season-of-ghosts-bestiary","lv":13,"ac":35,"hp":180,"pc":23,"sz":"large","tp":"fiend","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/heh-shan-bao-level-13.json","li":"ORC"},{"n":"Hekatonkheires Titan","s":"pathfinder-monster-core-2","lv":24,"ac":52,"hp":500,"pc":43,"sz":"gargantuan","tp":"aberration","f":"pathfinder-monster-core-2/hekatonkheires-titan.json","li":"ORC"},{"n":"Heldin Ulgincamp","s":"sky-kings-tomb-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/heldin-ulgincamp.json","li":"OGL"},{"n":"Helg Eats-The-Eaters","s":"extinction-curse-bestiary","lv":15,"ac":37,"hp":275,"pc":26,"sz":"large","tp":"aberration","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/helg-eats-the-eaters.json","li":"OGL"},{"n":"Helicoprion","s":"howl-of-the-wild-bestiary","lv":10,"ac":28,"hp":230,"pc":21,"sz":"gargantuan","tp":"animal","f":"howl-of-the-wild-bestiary/helicoprion.json","li":"ORC"},{"n":"Hell Hound","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":40,"pc":9,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/hell-hound.json","li":"ORC"},{"n":"Hell Hound (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":17,"hp":40,"pc":9,"sz":"medium","tp":"beast","f":"menace-under-otari-bestiary/hell-hound-bb.json","li":"ORC"},{"n":"Hell Hound Pack","s":"battlecry-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"gargantuan","tp":"beast","f":"battlecry-bestiary/hell-hound-pack.json","li":"ORC"},{"n":"Hellbound Attorney","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":60,"pc":11,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/hellbound-attorney.json","li":"ORC"},{"n":"Hellbound Honor Guard","s":"lost-omens-bestiary","lv":12,"ac":33,"hp":210,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/hellbound-honor-guard.json","li":"ORC"},{"n":"Hellcat","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":110,"pc":16,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/hellcat.json","li":"ORC"},{"n":"Hellcrown","s":"age-of-ashes-bestiary","lv":1,"ac":16,"hp":20,"pc":10,"sz":"tiny","tp":"undead","f":"age-of-ashes-bestiary/book-1-hellknight-hill/hellcrown.json","li":"OGL"},{"n":"Hellforge Barbazu","s":"abomination-vaults-bestiary","lv":5,"ac":22,"hp":60,"pc":13,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/hellforge-barbazu.json","li":"OGL"},{"n":"Hellknight Armiger","s":"lost-omens-bestiary","lv":4,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/hellknight-armiger.json","li":"OGL"},{"n":"Hellknight Cavalry Brigade","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":135,"pc":16,"sz":"gargantuan","tp":"animal","f":"pathfinder-npc-core/military/hellknight-cavalry-brigade.json","li":"ORC"},{"n":"Hellknight Centaur","s":"blog-bestiary","lv":4,"ac":23,"hp":55,"pc":11,"sz":"large","tp":"beast","f":"blog-bestiary/hellknight-centaur.json","li":"OGL"},{"n":"Hellknight Field-Maralictor","s":"hellbreakers-bestiary","lv":8,"ac":27,"hp":130,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/hellknight-field-maralictor.json","li":"ORC"},{"n":"Hellknight Paravicar","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":145,"pc":20,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/hellknight-paravicar.json","li":"OGL"},{"n":"Hellknight Retrieval Unit","s":"lost-omens-bestiary","lv":6,"ac":24,"hp":90,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/hellknight-retrieval-unit.json","li":"ORC"},{"n":"Hellshadow","s":"curtain-call-bestiary","lv":13,"ac":33,"hp":175,"pc":24,"sz":"large","tp":"fiend","f":"curtain-call-bestiary/book-1-stage-fright/hellshadow.json","li":"ORC"},{"n":"Hendrid Pratchett","s":"agents-of-edgewatch-bestiary","lv":6,"ac":24,"hp":100,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/hendrid-pratchett.json","li":"OGL"},{"n":"Herecite of Zevgavizeb","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":200,"pc":20,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/herecite-of-zevgavizeb.json","li":"OGL"},{"n":"Herexen","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/herexen.json","li":"ORC"},{"n":"Hermean Mutant","s":"age-of-ashes-bestiary","lv":19,"ac":43,"hp":380,"pc":35,"sz":"medium","tp":"aberration","f":"age-of-ashes-bestiary/book-6-broken-promises/hermean-mutant.json","li":"OGL"},{"n":"Hermit Crab Swarm","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":42,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/hermit-crab-swarm.json","li":"ORC"},{"n":"Hero Hunter","s":"pathfinder-npc-core","lv":13,"ac":33,"hp":230,"pc":25,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/hero-hunter.json","li":"ORC"},{"n":"Hesperid","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":175,"pc":19,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/hesperid.json","li":"ORC"},{"n":"Hesperid Queen","s":"pathfinder-monster-core-2","lv":19,"ac":44,"hp":305,"pc":34,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/hesperid-queen.json","li":"ORC"},{"n":"Hestlebeth","s":"hellbreakers-bestiary","lv":3,"ac":18,"hp":45,"pc":9,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/hestlebeth.json","li":"ORC"},{"n":"Hestriviniaas","s":"agents-of-edgewatch-bestiary","lv":22,"ac":48,"hp":400,"pc":40,"sz":"huge","tp":"","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/hestriviniaas.json","li":"OGL"},{"n":"Heuberk Thropp","s":"age-of-ashes-bestiary","lv":9,"ac":28,"hp":155,"pc":14,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/heuberk-thropp.json","li":"OGL"},{"n":"Hexmoth","s":"howl-of-the-wild-bestiary","lv":8,"ac":27,"hp":105,"pc":19,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/hexmoth.json","li":"ORC"},{"n":"Hexworm","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":45,"pc":10,"sz":"tiny","tp":"animal","f":"howl-of-the-wild-bestiary/hexworm.json","li":"ORC"},{"n":"Hezle","s":"age-of-ashes-bestiary","lv":8,"ac":27,"hp":122,"pc":14,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/hezle.json","li":"OGL"},{"n":"Hhrulkaz","s":"sky-kings-tomb-bestiary","lv":3,"ac":19,"hp":50,"pc":8,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/hhrulkaz.json","li":"OGL"},{"n":"High Priest of Pharasma","s":"pathfinder-npc-core","lv":9,"ac":26,"hp":150,"pc":20,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/high-priest-of-pharasma.json","li":"ORC"},{"n":"High Roller","s":"pathfinder-npc-core","lv":11,"ac":30,"hp":150,"pc":22,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/high-roller.json","li":"ORC"},{"n":"Hill Giant Butcher","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":260,"pc":25,"sz":"large","tp":"giant","f":"kingmaker-bestiary/hill-giant-butcher.json","li":"OGL"},{"n":"Hillstomper","s":"kingmaker-bestiary","lv":12,"ac":31,"hp":200,"pc":21,"sz":"huge","tp":"animal","f":"kingmaker-bestiary/hillstomper.json","li":"OGL"},{"n":"Hippocampus","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":24,"pc":6,"sz":"large","tp":"animal","f":"pathfinder-monster-core/hippocampus.json","li":"ORC"},{"n":"Hippogriff","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":32,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core/hippogriff.json","li":"ORC"},{"n":"Hippopotamus","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":85,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/hippopotamus.json","li":"ORC"},{"n":"Hippopotamus Topiary","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":220,"pc":20,"sz":"huge","tp":"plant","f":"pathfinder-monster-core-2/hippopotamus-topiary.json","li":"ORC"},{"n":"Hiss Beetle","s":"shades-of-blood-bestiary","lv":-1,"ac":16,"hp":6,"pc":6,"sz":"small","tp":"animal","f":"shades-of-blood-bestiary/book-2-the-broken-palace/hiss-beetle.json","li":"ORC"},{"n":"Hivebound Arboreal","s":"strength-of-thousands-bestiary","lv":19,"ac":44,"hp":400,"pc":33,"sz":"huge","tp":"plant","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/hivebound-arboreal.json","li":"OGL"},{"n":"Hobgoblin Archer","s":"pathfinder-monster-core","lv":4,"ac":23,"hp":50,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hobgoblin-archer.json","li":"ORC"},{"n":"Hobgoblin Battalion","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":90,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/hobgoblin/hobgoblin-battalion.json","li":"ORC"},{"n":"Hobgoblin General","s":"pathfinder-monster-core","lv":6,"ac":25,"hp":90,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hobgoblin-general.json","li":"ORC"},{"n":"Hobgoblin Soldier","s":"pathfinder-monster-core","lv":1,"ac":18,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hobgoblin-soldier.json","li":"ORC"},{"n":"Hobgoblin Soldier (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":18,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/hobgoblin-soldier-bb.json","li":"ORC"},{"n":"Hobgoblin Spellbreaker","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":50,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/hobgoblin/hobgoblin-spellbreaker.json","li":"ORC"},{"n":"Hobgoblin Vanguard","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":150,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/hobgoblin/hobgoblin-vanguard.json","li":"ORC"},{"n":"Hobgoblin Veteran Regiment","s":"battlecry-bestiary","lv":9,"ac":27,"hp":150,"pc":18,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/hobgoblin-veteran-regiment.json","li":"ORC"},{"n":"Hobji","s":"quest-for-the-frozen-flame-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/hobji.json","li":"OGL"},{"n":"Hodag","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/hodag.json","li":"ORC"},{"n":"Hold Sergeant","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":23,"hp":80,"pc":15,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/hold-sergeant.json","li":"ORC"},{"n":"Hold Warrior","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":20,"hp":50,"pc":12,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/hold-warrior.json","li":"ORC"},{"n":"Hold Warrior (Forge)","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":20,"hp":50,"pc":12,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/hold-warrior-forge.json","li":"ORC"},{"n":"Holdfast","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":55,"pc":14,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/holdfast.json","li":"ORC"},{"n":"Hollow Hush","s":"extinction-curse-bestiary","lv":18,"ac":41,"hp":355,"pc":33,"sz":"large","tp":"aberration","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/hollow-hush.json","li":"OGL"},{"n":"Hollow Husk","s":"blood-lords-bestiary","lv":5,"ac":20,"hp":130,"pc":9,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-3-field-of-maidens/hollow-husk.json","li":"OGL"},{"n":"Hollow Serpent","s":"book-of-the-dead-bestiary","lv":15,"ac":37,"hp":280,"pc":27,"sz":"large","tp":"undead","f":"book-of-the-dead-bestiary/hollow-serpent.json","li":"OGL"},{"n":"Homunculus","s":"pathfinder-monster-core","lv":0,"ac":17,"hp":17,"pc":3,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/homunculus.json","li":"ORC"},{"n":"Hong Meigui","s":"season-of-ghosts-bestiary","lv":10,"ac":29,"hp":128,"pc":20,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/hong-meigui.json","li":"ORC"},{"n":"Honor Guard","s":"curtain-call-bestiary","lv":9,"ac":27,"hp":185,"pc":19,"sz":"large","tp":"giant","f":"curtain-call-bestiary/book-1-stage-fright/honor-guard.json","li":"ORC"},{"n":"Hooklimb Xulgath","s":"extinction-curse-bestiary","lv":10,"ac":29,"hp":190,"pc":18,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/hooklimb-xulgath.json","li":"OGL"},{"n":"Hooktongue","s":"kingmaker-bestiary","lv":14,"ac":30,"hp":275,"pc":25,"sz":"huge","tp":"animal","f":"kingmaker-bestiary/hooktongue.json","li":"OGL"},{"n":"Hooktongue Hydra","s":"kingmaker-bestiary","lv":13,"ac":34,"hp":240,"pc":26,"sz":"huge","tp":"beast","f":"kingmaker-bestiary/hooktongue-hydra.json","li":"OGL"},{"n":"Hooplamander","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":78,"pc":12,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/hooplamander.json","li":"ORC"},{"n":"Hopping Head","s":"lost-omens-bestiary","lv":1,"ac":14,"hp":25,"pc":8,"sz":"tiny","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/hopping-head.json","li":"ORC"},{"n":"Horagnamon","s":"kingmaker-bestiary","lv":8,"ac":28,"hp":100,"pc":18,"sz":"tiny","tp":"animal","f":"kingmaker-bestiary/horagnamon.json","li":"OGL"},{"n":"Horba","s":"extinction-curse-bestiary","lv":2,"ac":19,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/horba.json","li":"OGL"},{"n":"Horde Lich","s":"book-of-the-dead-bestiary","lv":15,"ac":35,"hp":250,"pc":25,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/horde-lich.json","li":"OGL"},{"n":"Horned Archdragon","s":"lost-omens-bestiary","lv":21,"ac":47,"hp":400,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/horned/horned-archdragon.json","li":"ORC"},{"n":"Horned Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":47,"hp":400,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/horned/horned-archdragon-spellcaster.json","li":"ORC"},{"n":"Horned Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":12,"ac":34,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Horned Dragon (Adult)","s":"pathfinder-monster-core","lv":12,"ac":34,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-adult.json","li":"ORC"},{"n":"Horned Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":17,"ac":41,"hp":315,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Horned Dragon (Ancient)","s":"pathfinder-monster-core","lv":17,"ac":41,"hp":315,"pc":30,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-ancient.json","li":"ORC"},{"n":"Horned Dragon (Juvenile, BB)","s":"menace-under-otari-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"medium","tp":"dragon","f":"menace-under-otari-bestiary/horned-dragon-juvenile-bb.json","li":"ORC"},{"n":"Horned Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":8,"ac":28,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-young-spellcaster.json","li":"ORC"},{"n":"Horned Dragon (Young)","s":"pathfinder-monster-core","lv":8,"ac":28,"hp":135,"pc":16,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/horned-dragon-young.json","li":"ORC"},{"n":"Hound of Tindalos","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":90,"pc":17,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/hound-of-tindalos.json","li":"ORC"},{"n":"Hound Topiary","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":50,"pc":9,"sz":"medium","tp":"plant","f":"pathfinder-monster-core-2/hound-topiary.json","li":"ORC"},{"n":"House Drake","s":"pathfinder-monster-core-2","lv":1,"ac":17,"hp":15,"pc":8,"sz":"tiny","tp":"dragon","f":"pathfinder-monster-core-2/house-drake.json","li":"ORC"},{"n":"Howling Spawn","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":175,"pc":21,"sz":"large","tp":"aberration","f":"lost-omens-bestiary/monsters-of-myth/howling-spawn.json","li":"OGL"},{"n":"Hrungul Ironeye","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hrungul-ironeye.json","li":"OGL"},{"n":"Hryngar Assassin","s":"sky-kings-tomb-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-assassin.json","li":"OGL"},{"n":"Hryngar Battlepriest","s":"sky-kings-tomb-bestiary","lv":9,"ac":29,"hp":155,"pc":19,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-battlepriest.json","li":"OGL"},{"n":"Hryngar Bombardier","s":"pathfinder-monster-core","lv":1,"ac":18,"hp":20,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hryngar-bombardier.json","li":"ORC"},{"n":"Hryngar Breccia Squad","s":"sky-kings-tomb-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"gargantuan","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-breccia-squad.json","li":"OGL"},{"n":"Hryngar Forgepriest","s":"sky-kings-tomb-bestiary","lv":6,"ac":23,"hp":99,"pc":13,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/hryngar-forgepriest.json","li":"OGL"},{"n":"Hryngar King's Agent","s":"sky-kings-tomb-bestiary","lv":5,"ac":21,"hp":78,"pc":12,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/hryngar-kings-agent.json","li":"OGL"},{"n":"Hryngar Officer","s":"sky-kings-tomb-bestiary","lv":6,"ac":24,"hp":95,"pc":15,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-officer.json","li":"OGL"},{"n":"Hryngar Rager","s":"sky-kings-tomb-bestiary","lv":6,"ac":23,"hp":108,"pc":13,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-rager.json","li":"OGL"},{"n":"Hryngar Sharpshooter","s":"pathfinder-monster-core","lv":0,"ac":15,"hp":18,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hryngar-sharpshooter.json","li":"ORC"},{"n":"Hryngar Skull Collector","s":"sky-kings-tomb-bestiary","lv":6,"ac":23,"hp":105,"pc":12,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-skull-collector.json","li":"OGL"},{"n":"Hryngar Taskmaster","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/hryngar-taskmaster.json","li":"ORC"},{"n":"Hryngar Veteran","s":"sky-kings-tomb-bestiary","lv":7,"ac":26,"hp":104,"pc":14,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/hryngar-veteran.json","li":"OGL"},{"n":"Hu Ban-Niang","s":"season-of-ghosts-bestiary","lv":5,"ac":20,"hp":75,"pc":11,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/hu-ban-niang.json","li":"ORC"},{"n":"Huldrin Skolsdottir","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":34,"hp":280,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/huldrin-skolsdottir.json","li":"OGL"},{"n":"Humanitarian Hermit","s":"pathfinder-npc-core","lv":9,"ac":26,"hp":150,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/humanitarian-hermit.json","li":"ORC"},{"n":"Hummingbird","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":31,"hp":260,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/hummingbird.json","li":"OGL"},{"n":"Hundun Chaos Mage","s":"agents-of-edgewatch-bestiary","lv":18,"ac":41,"hp":300,"pc":30,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/hundun-chaos-mage.json","li":"OGL"},{"n":"Hungering Growth","s":"blood-lords-bestiary","lv":7,"ac":24,"hp":145,"pc":15,"sz":"small","tp":"aberration","f":"blood-lords-bestiary/book-3-field-of-maidens/hungering-growth.json","li":"OGL"},{"n":"Hungry Ghost","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":60,"pc":13,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core-2/hungry-ghost.json","li":"ORC"},{"n":"Hunter","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/hunter.json","li":"ORC"},{"n":"Hunter Wight","s":"book-of-the-dead-bestiary","lv":7,"ac":24,"hp":112,"pc":16,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/hunter-wight.json","li":"OGL"},{"n":"Hunting Spider","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":16,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/hunting-spider.json","li":"ORC"},{"n":"Hurkum","s":"shades-of-blood-bestiary","lv":7,"ac":25,"hp":130,"pc":12,"sz":"large","tp":"giant","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/hurkum.json","li":"ORC"},{"n":"Hurlilu","s":"stolen-fate-bestiary","lv":11,"ac":32,"hp":170,"pc":21,"sz":"large","tp":"fiend","f":"stolen-fate-bestiary/book-1-the-choosing/hurlilu.json","li":"OGL"},{"n":"Husk Zombie","s":"book-of-the-dead-bestiary","lv":2,"ac":17,"hp":55,"pc":5,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/husk-zombie.json","li":"OGL"},{"n":"Hyaenodon","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/hyaenodon.json","li":"ORC"},{"n":"Hyakume","s":"pathfinder-monster-core-2","lv":15,"ac":36,"hp":275,"pc":29,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/hyakume.json","li":"ORC"},{"n":"Hydra","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":90,"pc":17,"sz":"huge","tp":"beast","f":"pathfinder-monster-core/hydra.json","li":"ORC"},{"n":"Hyena","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/hyena.json","li":"ORC"},{"n":"Hymmir Urath","s":"crown-of-the-kobold-king-bestiary","lv":5,"ac":21,"hp":80,"pc":13,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/hymmir-urath.json","li":"OGL"},{"n":"Hyphae Tyrant","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"small","tp":"fungus","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/hyphae-tyrant.json","li":"OGL"},{"n":"Hyrune Loxenna","s":"blood-lords-bestiary","lv":15,"ac":37,"hp":240,"pc":27,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/hyrune-loxenna.json","li":"OGL"},{"n":"I","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":110,"pc":19,"sz":"medium","tp":"aberration","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/i.json","li":"OGL"},{"n":"I'iko Dragon","s":"strength-of-thousands-bestiary","lv":6,"ac":23,"hp":110,"pc":12,"sz":"small","tp":"dragon","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/iiko-dragon.json","li":"OGL"},{"n":"Iapholi","s":"myth-speaker-bestiary","lv":7,"ac":24,"hp":126,"pc":15,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/iapholi.json","li":"ORC"},{"n":"Iazmilor","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":26,"hp":145,"pc":16,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/iazmilor.json","li":"OGL"},{"n":"Iblydan Hind","s":"myth-speaker-bestiary","lv":4,"ac":21,"hp":62,"pc":11,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/iblydan-hind.json","li":"ORC"},{"n":"Ibrique","s":"shadows-at-sundown-bestiary","lv":13,"ac":35,"hp":200,"pc":18,"sz":"small","tp":"undead","f":"shadows-at-sundown-bestiary/ibrique.json","li":"OGL"},{"n":"Ibrium","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":28,"hp":145,"pc":20,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/ibrium.json","li":"OGL"},{"n":"Ice Linnorm","s":"pathfinder-monster-core","lv":17,"ac":41,"hp":330,"pc":29,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/ice-linnorm.json","li":"ORC"},{"n":"Ice Mummy","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":130,"pc":16,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/ice-mummy.json","li":"OGL"},{"n":"Ice Troll","s":"pathfinder-monster-core-2","lv":4,"ac":19,"hp":90,"pc":10,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/ice-troll.json","li":"ORC"},{"n":"Iceberg Clam","s":"pathfinder-monster-core-2","lv":13,"ac":31,"hp":240,"pc":23,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core-2/iceberg-clam.json","li":"ORC"},{"n":"Icewyrm","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":185,"pc":19,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core-2/icewyrm.json","li":"ORC"},{"n":"Ichor Slinger","s":"book-of-the-dead-bestiary","lv":4,"ac":20,"hp":65,"pc":10,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/ichor-slinger.json","li":"OGL"},{"n":"Icicle Snake","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":35,"pc":7,"sz":"small","tp":"elemental","f":"pathfinder-monster-core-2/icicle-snake.json","li":"ORC"},{"n":"Icy Rat","s":"fall-of-plaguestone","lv":0,"ac":16,"hp":15,"pc":5,"sz":"small","tp":"animal","f":"fall-of-plaguestone/icy-rat.json","li":"OGL"},{"n":"Id Ooze","s":"crown-of-the-kobold-king-bestiary","lv":7,"ac":21,"hp":105,"pc":15,"sz":"medium","tp":"ooze","f":"crown-of-the-kobold-king-bestiary/id-ooze.json","li":"OGL"},{"n":"Idebilor","s":"shades-of-blood-bestiary","lv":7,"ac":25,"hp":112,"pc":17,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-2-the-broken-palace/idebilor.json","li":"ORC"},{"n":"Idovik","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":24,"hp":125,"pc":14,"sz":"large","tp":"beast","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/idovik.json","li":"OGL"},{"n":"Iffdahsil","s":"extinction-curse-bestiary","lv":21,"ac":43,"hp":380,"pc":38,"sz":"gargantuan","tp":"aberration","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/iffdahsil.json","li":"OGL"},{"n":"Ifrit","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":175,"pc":17,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/ifrit.json","li":"ORC"},{"n":"Ifrit Shuyookh","s":"rage-of-elements-bestiary","lv":14,"ac":36,"hp":300,"pc":25,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/ifrit-shuyookh.json","li":"OGL"},{"n":"Iguanodon","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":95,"pc":14,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/iguanodon.json","li":"ORC"},{"n":"Ijda","s":"season-of-ghosts-bestiary","lv":6,"ac":23,"hp":100,"pc":15,"sz":"large","tp":"fiend","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/ijda.json","li":"ORC"},{"n":"Ijhyeojin","s":"lost-omens-bestiary","lv":14,"ac":35,"hp":310,"pc":28,"sz":"medium","tp":"fiend","f":"lost-omens-bestiary/tian-xia-world-guide/ijhyeojin.json","li":"ORC"},{"n":"Ikeshti Brood-Minder","s":"strength-of-thousands-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/ikeshti-brood-minder.json","li":"OGL"},{"n":"Il'setsya Wyrmtouched","s":"agents-of-edgewatch-bestiary","lv":19,"ac":40,"hp":300,"pc":25,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/ilsetsya-wyrmtouched.json","li":"OGL"},{"n":"Ilakni","s":"gatewalkers-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"aberration","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/ilakni.json","li":"ORC"},{"n":"Ildamir","s":"stolen-fate-bestiary","lv":20,"ac":45,"hp":375,"pc":36,"sz":"large","tp":"beast","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/ildamir.json","li":"OGL"},{"n":"Ileosa's Shell","s":"shadows-at-sundown-bestiary","lv":13,"ac":34,"hp":235,"pc":24,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/ileosas-shell.json","li":"OGL"},{"n":"Ilgreth","s":"age-of-ashes-bestiary","lv":20,"ac":28,"hp":350,"pc":39,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/ilgreth.json","li":"OGL"},{"n":"Illcayna Alonnor","s":"hellbreakers-bestiary","lv":9,"ac":27,"hp":160,"pc":21,"sz":"large","tp":"undead","f":"hellbreakers-bestiary/illcayna-alonnor.json","li":"ORC"},{"n":"Ilnaphrae","s":"shades-of-blood-bestiary","lv":6,"ac":24,"hp":65,"pc":17,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/ilnaphrae.json","li":"ORC"},{"n":"Ilora Nuski","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":220,"pc":22,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/ilora-nuski.json","li":"OGL"},{"n":"Ilssrah Embermead","s":"age-of-ashes-bestiary","lv":15,"ac":40,"hp":270,"pc":29,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/ilssrah-embermead.json","li":"OGL"},{"n":"Ilthuliak","s":"kingmaker-bestiary","lv":21,"ac":47,"hp":450,"pc":37,"sz":"gargantuan","tp":"dragon","f":"kingmaker-bestiary/ilthuliak.json","li":"OGL"},{"n":"Ilverani Sentry","s":"gatewalkers-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/ilverani-sentry.json","li":"ORC"},{"n":"Imeckus Stroon","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":210,"pc":25,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/imeckus-stroon.json","li":"OGL"},{"n":"Imentesh","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"monitor","f":"pathfinder-monster-core-2/imentesh.json","li":"ORC"},{"n":"Immense Mandragora","s":"kingmaker-bestiary","lv":20,"ac":43,"hp":400,"pc":33,"sz":"gargantuan","tp":"plant","f":"kingmaker-bestiary/immense-mandragora.json","li":"OGL"},{"n":"Immolis","s":"gatewalkers-bestiary","lv":3,"ac":19,"hp":50,"pc":12,"sz":"medium","tp":"beast","f":"gatewalkers-bestiary/book-1-the-seventh-arch/immolis.json","li":"ORC"},{"n":"Immortal Ichor","s":"age-of-ashes-bestiary","lv":15,"ac":26,"hp":350,"pc":20,"sz":"medium","tp":"ooze","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/immortal-ichor.json","li":"OGL"},{"n":"Immortal Trickster","s":"war-of-immortals-bestiary","lv":11,"ac":31,"hp":198,"pc":24,"sz":"medium","tp":"beast","f":"war-of-immortals-bestiary/immortal-trickster.json","li":"ORC"},{"n":"Imp","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":15,"pc":7,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core/imp.json","li":"ORC"},{"n":"Imperfect Automaton","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":85,"pc":12,"sz":"medium","tp":"construct","f":"lost-omens-bestiary/monsters-of-myth/imperfect-automaton.json","li":"OGL"},{"n":"Imprecasia","s":"season-of-ghosts-bestiary","lv":11,"ac":31,"hp":180,"pc":23,"sz":"medium","tp":"fey","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/imprecasia.json","li":"ORC"},{"n":"Imugi","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":135,"pc":13,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/tian-xia-world-guide/imugi.json","li":"ORC"},{"n":"Imvath","s":"spore-war-bestiary","lv":19,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/imvath.json","li":"ORC"},{"n":"Incutilis","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":21,"pc":7,"sz":"tiny","tp":"aberration","f":"pathfinder-monster-core-2/incutilis.json","li":"ORC"},{"n":"Infantry Soldier","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":28,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/infantry-soldier.json","li":"ORC"},{"n":"Infernal Registrar","s":"pathfinder-npc-core","lv":10,"ac":27,"hp":180,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/infernal-registrar.json","li":"ORC"},{"n":"Ingnovim Tluss","s":"age-of-ashes-bestiary","lv":19,"ac":43,"hp":350,"pc":33,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/ingnovim-tluss.json","li":"OGL"},{"n":"Ingnovim's Assistant","s":"age-of-ashes-bestiary","lv":17,"ac":43,"hp":330,"pc":29,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/ingnovims-assistant.json","li":"OGL"},{"n":"Inizkar","s":"shades-of-blood-bestiary","lv":4,"ac":20,"hp":42,"pc":9,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/inizkar.json","li":"ORC"},{"n":"Inizra Arumelo","s":"age-of-ashes-bestiary","lv":20,"ac":46,"hp":375,"pc":36,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/inizra-arumelo.json","li":"OGL"},{"n":"Inkdrop","s":"lost-omens-bestiary","lv":-1,"ac":7,"hp":15,"pc":6,"sz":"tiny","tp":"construct","f":"lost-omens-bestiary/tian-xia-world-guide/inkdrop.json","li":"ORC"},{"n":"Inmyeonjo","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":38,"hp":300,"pc":30,"sz":"huge","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/inmyeonjo.json","li":"OGL"},{"n":"Innkeeper","s":"pathfinder-npc-core","lv":1,"ac":14,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/innkeeper.json","li":"ORC"},{"n":"Innumma","s":"gatewalkers-bestiary","lv":4,"ac":20,"hp":55,"pc":12,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/innumma.json","li":"ORC"},{"n":"Inrik Vanderholl","s":"wardens-of-wildwood-bestiary","lv":3,"ac":20,"hp":45,"pc":13,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/inrik-vanderholl.json","li":"ORC"},{"n":"Insatiable Bore Worm Swarm","s":"revenge-of-the-runelords-bestiary","lv":17,"ac":40,"hp":240,"pc":29,"sz":"large","tp":"animal","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/insatiable-bore-worm-swarm.json","li":"ORC"},{"n":"Insidiator","s":"hellbreakers-bestiary","lv":1,"ac":15,"hp":20,"pc":10,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/insidiator.json","li":"ORC"},{"n":"Inspector","s":"pathfinder-npc-core","lv":3,"ac":19,"hp":40,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/inspector.json","li":"ORC"},{"n":"Instillo","s":"hellbreakers-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/instillo.json","li":"ORC"},{"n":"Intellect Assemblage","s":"blood-lords-bestiary","lv":19,"ac":43,"hp":355,"pc":29,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-6-ghost-kings-rage/intellect-assemblage.json","li":"OGL"},{"n":"Interlocutor","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":215,"pc":24,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/interlocutor.json","li":"ORC"},{"n":"Interrogator","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":90,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/interrogator.json","li":"ORC"},{"n":"Invidiak","s":"spore-war-bestiary","lv":7,"ac":23,"hp":90,"pc":15,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/invidiak.json","li":"ORC"},{"n":"Iobane Magus","s":"strength-of-thousands-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/iobane-magus.json","li":"OGL"},{"n":"Iogaka","s":"season-of-ghosts-bestiary","lv":5,"ac":21,"hp":90,"pc":12,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/iogaka.json","li":"ORC"},{"n":"Ioseff Xarwin","s":"malevolence-bestiary","lv":9,"ac":29,"hp":112,"pc":16,"sz":"medium","tp":"spirit","f":"malevolence-bestiary/ioseff-xarwin.json","li":"OGL"},{"n":"Ioton (F6)","s":"outlaws-of-alkenstar-bestiary","lv":0,"ac":14,"hp":14,"pc":3,"sz":"tiny","tp":"astral","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/ioton-f6.json","li":"OGL"},{"n":"Irahkatu","s":"kingmaker-bestiary","lv":13,"ac":34,"hp":235,"pc":22,"sz":"large","tp":"beast","f":"kingmaker-bestiary/irahkatu.json","li":"OGL"},{"n":"Iravalinn Morgethai","s":"spore-war-bestiary","lv":14,"ac":34,"hp":220,"pc":21,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/iravalinn-morgethai.json","li":"ORC"},{"n":"Iriatykian Outrider Band","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":120,"pc":14,"sz":"gargantuan","tp":"animal","f":"lost-omens-bestiary/hellfire-dispatches/iriatykian-outrider-band.json","li":"ORC"},{"n":"Iridescent Elephant","s":"extinction-curse-bestiary","lv":7,"ac":21,"hp":110,"pc":11,"sz":"huge","tp":"animal","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/iridescent-elephant.json","li":"OGL"},{"n":"Irkem Dresh","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":19,"hp":37,"pc":8,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/irkem-dresh.json","li":"OGL"},{"n":"Irlgaunt","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":265,"pc":24,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/irlgaunt.json","li":"ORC"},{"n":"Irnakurse","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":152,"pc":18,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/irnakurse.json","li":"ORC"},{"n":"Iron Hag","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":80,"pc":14,"sz":"large","tp":"humanoid","f":"pathfinder-monster-core/iron-hag.json","li":"ORC"},{"n":"Iron Taviah","s":"blood-lords-bestiary","lv":6,"ac":24,"hp":85,"pc":14,"sz":"large","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/iron-taviah.json","li":"OGL"},{"n":"Iron Warden","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":190,"pc":21,"sz":"large","tp":"construct","f":"pathfinder-monster-core/iron-warden.json","li":"ORC"},{"n":"Ironclad Annihilator Beetle","s":"strength-of-thousands-bestiary","lv":21,"ac":49,"hp":400,"pc":36,"sz":"gargantuan","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/ironclad-annihilator-beetle.json","li":"OGL"},{"n":"Iroran Mummy","s":"book-of-the-dead-bestiary","lv":10,"ac":31,"hp":190,"pc":21,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/iroran-mummy.json","li":"OGL"},{"n":"Iroran Skeleton","s":"agents-of-edgewatch-bestiary","lv":11,"ac":31,"hp":210,"pc":18,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/iroran-skeleton.json","li":"OGL"},{"n":"Irovetti's Fetch","s":"kingmaker-bestiary","lv":20,"ac":44,"hp":440,"pc":36,"sz":"large","tp":"fey","f":"kingmaker-bestiary/irovettis-fetch.json","li":"OGL"},{"n":"Irriseni Owlbear","s":"lost-omens-bestiary","lv":5,"ac":23,"hp":85,"pc":15,"sz":"large","tp":"animal","f":"lost-omens-bestiary/travel-guide/irriseni-owlbear.json","li":"OGL"},{"n":"Irshandi","s":"spore-war-bestiary","lv":16,"ac":36,"hp":218,"pc":31,"sz":"medium","tp":"undead","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/irshandi.json","li":"ORC"},{"n":"Iruxi Masked Mummer","s":"pathfinder-npc-core","lv":9,"ac":27,"hp":155,"pc":18,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/lizardfolk/iruxi-masked-mummer.json","li":"ORC"},{"n":"Iruxi Ossature","s":"book-of-the-dead-bestiary","lv":5,"ac":22,"hp":76,"pc":13,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/iruxi-ossature.json","li":"OGL"},{"n":"Isgeri Slayer","s":"hellbreakers-bestiary","lv":2,"ac":17,"hp":36,"pc":8,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/isgeri-slayer.json","li":"ORC"},{"n":"Ishti","s":"age-of-ashes-bestiary","lv":18,"ac":41,"hp":340,"pc":29,"sz":"large","tp":"beast","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/ishti.json","li":"OGL"},{"n":"Island Oni","s":"pathfinder-monster-core","lv":17,"ac":38,"hp":390,"pc":32,"sz":"huge","tp":"giant","f":"pathfinder-monster-core/island-oni.json","li":"ORC"},{"n":"Isphinn","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"elemental","f":"seven-dooms-for-sandpoint-bestiary/isphinn.json","li":"OGL"},{"n":"Ivarsa","s":"quest-for-the-frozen-flame-bestiary","lv":12,"ac":33,"hp":212,"pc":21,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/ivarsa.json","li":"OGL"},{"n":"Ixamè","s":"strength-of-thousands-bestiary","lv":10,"ac":30,"hp":175,"pc":22,"sz":"large","tp":"dragon","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/ixamè.json","li":"OGL"},{"n":"Ixirizmid","s":"malevolence-bestiary","lv":8,"ac":26,"hp":170,"pc":17,"sz":"medium","tp":"fungus","f":"malevolence-bestiary/ixirizmid.json","li":"OGL"},{"n":"Ixusoth","s":"agents-of-edgewatch-bestiary","lv":15,"ac":36,"hp":275,"pc":29,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/ixusoth.json","li":"OGL"},{"n":"Izfiitar","s":"pathfinder-monster-core-2","lv":20,"ac":44,"hp":360,"pc":36,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/izfiitar.json","li":"ORC"},{"n":"Izhkarial","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"gargantuan","tp":"dragon","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/izhkarial.json","li":"ORC"},{"n":"Izurran","s":"wardens-of-wildwood-bestiary","lv":9,"ac":25,"hp":140,"pc":19,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/izurran.json","li":"ORC"},{"n":"Jaathoom","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":55,"pc":15,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/jaathoom.json","li":"ORC"},{"n":"Jaathoom Shuyookh","s":"rage-of-elements-bestiary","lv":10,"ac":29,"hp":150,"pc":22,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/jaathoom-shuyookh.json","li":"OGL"},{"n":"Jabali","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/jabali.json","li":"ORC"},{"n":"Jabali Shuyookh","s":"rage-of-elements-bestiary","lv":12,"ac":33,"hp":210,"pc":21,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/jabali-shuyookh.json","li":"OGL"},{"n":"Jackal Guard","s":"strength-of-thousands-bestiary","lv":10,"ac":29,"hp":180,"pc":19,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/jackal-guard.json","li":"OGL"},{"n":"Jafaki","s":"abomination-vaults-bestiary","lv":8,"ac":26,"hp":100,"pc":18,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/jafaki.json","li":"OGL"},{"n":"Jaggaki","s":"age-of-ashes-bestiary","lv":13,"ac":34,"hp":200,"pc":22,"sz":"large","tp":"undead","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/jaggaki.json","li":"OGL"},{"n":"Jaggedbriar Hag","s":"kingmaker-bestiary","lv":7,"ac":25,"hp":92,"pc":15,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/jaggedbriar-hag.json","li":"OGL"},{"n":"Jah-Tohl","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":140,"pc":18,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/jah-tohl.json","li":"ORC"},{"n":"Jahsi","s":"age-of-ashes-bestiary","lv":8,"ac":28,"hp":135,"pc":14,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/jahsi.json","li":"OGL"},{"n":"Jaiban","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":170,"pc":23,"sz":"gargantuan","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/jaiban.json","li":"OGL"},{"n":"Jailer","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/jailer.json","li":"ORC"},{"n":"Jamandi Aldori","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":260,"pc":23,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/jamandi-aldori.json","li":"OGL"},{"n":"Jandelay Tolokand","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":265,"pc":28,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/jandelay-tolokand.json","li":"ORC"},{"n":"Jann","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":60,"pc":11,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/jann.json","li":"ORC"},{"n":"Jann Shuyookh","s":"rage-of-elements-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/jann-shuyookh.json","li":"OGL"},{"n":"Jarelle Kaldrian","s":"abomination-vaults-bestiary","lv":5,"ac":21,"hp":48,"pc":12,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/jarelle-kaldrian.json","li":"OGL"},{"n":"Jarvs","s":"gatewalkers-bestiary","lv":3,"ac":18,"hp":45,"pc":11,"sz":"tiny","tp":"aberration","f":"gatewalkers-bestiary/book-1-the-seventh-arch/jarvs.json","li":"ORC"},{"n":"Jaul Mezmin","s":"abomination-vaults-bestiary","lv":6,"ac":24,"hp":120,"pc":14,"sz":"medium","tp":"beast","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/jaul-mezmin.json","li":"OGL"},{"n":"Jaul's Wolf","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"animal","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/jauls-wolf.json","li":"OGL"},{"n":"Javownir","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":35,"hp":290,"pc":28,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/javownir.json","li":"ORC"},{"n":"Jekkajak","s":"crown-of-the-kobold-king-bestiary","lv":4,"ac":21,"hp":60,"pc":9,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/jekkajak.json","li":"OGL"},{"n":"Jellico Bounce-Bounce","s":"extinction-curse-bestiary","lv":2,"ac":17,"hp":32,"pc":7,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/jellico-bounce-bounce.json","li":"OGL"},{"n":"Jervis Stoot","s":"seven-dooms-for-sandpoint-bestiary","lv":11,"ac":28,"hp":150,"pc":21,"sz":"medium","tp":"spirit","f":"seven-dooms-for-sandpoint-bestiary/jervis-stoot.json","li":"OGL"},{"n":"Jesseri The Hailstorm","s":"quest-for-the-frozen-flame-bestiary","lv":10,"ac":29,"hp":150,"pc":23,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/jesseri-the-hailstorm.json","li":"OGL"},{"n":"Jewel","s":"kingmaker-bestiary","lv":9,"ac":29,"hp":60,"pc":21,"sz":"tiny","tp":"animal","f":"kingmaker-bestiary/jewel.json","li":"OGL"},{"n":"Ji-yook (Gumiho Form)","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":331,"pc":29,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/ji-yook-gumiho-form.json","li":"OGL"},{"n":"Ji-yook (Level 13)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":35,"hp":190,"pc":26,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/ji-yook-level-13.json","li":"OGL"},{"n":"Ji-yook (Level 9)","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":29,"hp":130,"pc":19,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/ji-yook-level-9.json","li":"OGL"},{"n":"Jiidon","s":"lost-omens-bestiary","lv":3,"ac":19,"hp":40,"pc":10,"sz":"tiny","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/jiidon.json","li":"ORC"},{"n":"Jimbilin","s":"the-enmity-cycle-bestiary","lv":4,"ac":21,"hp":62,"pc":12,"sz":"small","tp":"humanoid","f":"the-enmity-cycle-bestiary/jimbilin.json","li":"OGL"},{"n":"Jin Durwhimmer","s":"kingmaker-bestiary","lv":9,"ac":25,"hp":120,"pc":19,"sz":"small","tp":"spirit","f":"kingmaker-bestiary/jin-durwhimmer.json","li":"OGL"},{"n":"Jin-hae","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":43,"hp":340,"pc":33,"sz":"medium","tp":"ethereal","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/jin-hae.json","li":"OGL"},{"n":"Jinkin","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":19,"pc":7,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/jinkin.json","li":"ORC"},{"n":"Jinkin","s":"season-of-ghosts-bestiary","lv":1,"ac":15,"hp":19,"pc":7,"sz":"tiny","tp":"fey","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/jinkin.json","li":"ORC"},{"n":"Jinkin","s":"sky-kings-tomb-bestiary","lv":1,"ac":17,"hp":19,"pc":7,"sz":"tiny","tp":"fey","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/jinkin.json","li":"OGL"},{"n":"Jinkin Ripclaw","s":"one-shot-bestiary","lv":1,"ac":17,"hp":19,"pc":7,"sz":"tiny","tp":"fey","f":"one-shot-bestiary/a-few-flowers-more/jinkin-ripclaw.json","li":"OGL"},{"n":"Jinx Eater","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":65,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tengu/jinx-eater.json","li":"ORC"},{"n":"Jitterbone Contortionist","s":"book-of-the-dead-bestiary","lv":4,"ac":20,"hp":56,"pc":10,"sz":"small","tp":"humanoid","f":"book-of-the-dead-bestiary/jitterbone-contortionist.json","li":"OGL"},{"n":"Jonis Flakfatter","s":"agents-of-edgewatch-bestiary","lv":15,"ac":36,"hp":300,"pc":29,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/jonis-flakfatter.json","li":"OGL"},{"n":"Joon-seo","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":35,"hp":250,"pc":28,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/joon-seo.json","li":"OGL"},{"n":"Jordis Serelli","s":"hellbreakers-bestiary","lv":6,"ac":24,"hp":90,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/jordis-serelli.json","li":"ORC"},{"n":"Jordus Munt","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":25,"hp":130,"pc":15,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/jordus-munt.json","li":"OGL"},{"n":"Jorogumo","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":270,"pc":26,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/jorogumo.json","li":"ORC"},{"n":"Jorogumo Disciple","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":315,"pc":27,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/jorogumo-disciple.json","li":"ORC"},{"n":"Joseung Saja","s":"lost-omens-bestiary","lv":14,"ac":35,"hp":250,"pc":28,"sz":"medium","tp":"monitor","f":"lost-omens-bestiary/tian-xia-world-guide/joseung-saja.json","li":"ORC"},{"n":"Jotunborn Sage","s":"pathfinder-monster-core-2","lv":2,"ac":16,"hp":26,"pc":7,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/jotunborn-sage.json","li":"ORC"},{"n":"Jotund Troll","s":"pathfinder-monster-core-2","lv":15,"ac":35,"hp":360,"pc":26,"sz":"huge","tp":"giant","f":"pathfinder-monster-core-2/jotund-troll.json","li":"ORC"},{"n":"Judge","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":5,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/judge.json","li":"ORC"},{"n":"Juggernaut","s":"pathfinder-npc-core","lv":13,"ac":33,"hp":250,"pc":21,"sz":"large","tp":"humanoid","f":"pathfinder-npc-core/engineer/juggernaut.json","li":"ORC"},{"n":"Juggler","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/juggler.json","li":"ORC"},{"n":"Jungle Drake","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":90,"pc":13,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/jungle-drake.json","li":"ORC"},{"n":"Jurgrindor","s":"kingmaker-bestiary","lv":3,"ac":17,"hp":50,"pc":9,"sz":"large","tp":"giant","f":"kingmaker-bestiary/jurgrindor.json","li":"OGL"},{"n":"Juspix Rammel","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":33,"hp":240,"pc":27,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/juspix-rammel.json","li":"OGL"},{"n":"Juvenile Boar","s":"extinction-curse-bestiary","lv":0,"ac":15,"hp":16,"pc":5,"sz":"small","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/juvenile-boar.json","li":"OGL"},{"n":"Juvenile Cave Worm (Azure)","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":170,"pc":12,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/juvenile-cave-worm-azure.json","li":"OGL"},{"n":"Juvenile Cave Worm (Crimson)","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":170,"pc":12,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/juvenile-cave-worm-crimson.json","li":"OGL"},{"n":"Juvenile Cave Worm (Glacial)","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":170,"pc":12,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/juvenile-cave-worm-glacial.json","li":"OGL"},{"n":"Juvenile Cave Worm (Gray)","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":170,"pc":12,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/juvenile-cave-worm-gray.json","li":"OGL"},{"n":"Juvenile Cave Worm (Rock)","s":"sky-kings-tomb-bestiary","lv":8,"ac":26,"hp":170,"pc":12,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/juvenile-cave-worm-rock.json","li":"OGL"},{"n":"Jyoti","s":"pathfinder-monster-core-2","lv":9,"ac":28,"hp":155,"pc":21,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/jyoti.json","li":"ORC"},{"n":"K. H. W.'s Echo","s":"pathfinder-dark-archive","lv":14,"ac":36,"hp":280,"pc":30,"sz":"medium","tp":"humanoid","f":"pathfinder-dark-archive/npcs/k-h-w-s-echo.json","li":"ORC"},{"n":"K'nonna","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"medium","tp":"aberration","f":"lost-omens-bestiary/mwangi-expanse/knonna.json","li":"OGL"},{"n":"K'zaard The Drover","s":"triumph-of-the-tusk-bestiary","lv":6,"ac":24,"hp":95,"pc":17,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/kzaard-the-drover.json","li":"ORC"},{"n":"Kaava Stalker","s":"lost-omens-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/kaava-stalker.json","li":"OGL"},{"n":"Kaba","s":"shades-of-blood-bestiary","lv":6,"ac":24,"hp":65,"pc":17,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/kaba.json","li":"ORC"},{"n":"Kadamel","s":"pathfinder-monster-core-2","lv":17,"ac":40,"hp":300,"pc":34,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/kadamel.json","li":"ORC"},{"n":"Kadlaka","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":21,"hp":60,"pc":14,"sz":"medium","tp":"beast","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/kadlaka.json","li":"OGL"},{"n":"Kagekuma","s":"season-of-ghosts-bestiary","lv":8,"ac":25,"hp":135,"pc":16,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/kagekuma.json","li":"ORC"},{"n":"Kalakaigh","s":"shades-of-blood-bestiary","lv":6,"ac":23,"hp":130,"pc":14,"sz":"medium","tp":"fiend","f":"shades-of-blood-bestiary/book-2-the-broken-palace/kalakaigh.json","li":"ORC"},{"n":"Kalavakus","s":"age-of-ashes-bestiary","lv":10,"ac":30,"hp":200,"pc":19,"sz":"medium","tp":"fiend","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/kalavakus.json","li":"OGL"},{"n":"Kaleb Valdemar's Body","s":"seven-dooms-for-sandpoint-bestiary","lv":12,"ac":20,"hp":112,"pc":9,"sz":"medium","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/kaleb-valdemars-body.json","li":"OGL"},{"n":"Kalen Bray","s":"season-of-ghosts-bestiary","lv":2,"ac":12,"hp":20,"pc":8,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/kalen-bray.json","li":"ORC"},{"n":"Kalkek","s":"extinction-curse-bestiary","lv":7,"ac":25,"hp":105,"pc":16,"sz":"large","tp":"fiend","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/kalkek.json","li":"OGL"},{"n":"Kallas Devil","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":180,"pc":21,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/monsters-of-myth/kallas-devil.json","li":"OGL"},{"n":"Kandirvek","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":35,"hp":252,"pc":26,"sz":"huge","tp":"dragon","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/kandirvek.json","li":"ORC"},{"n":"Kaneepo the Slim","s":"gatewalkers-bestiary","lv":4,"ac":20,"hp":80,"pc":14,"sz":"medium","tp":"fey","f":"gatewalkers-bestiary/book-1-the-seventh-arch/kaneepo-the-slim.json","li":"ORC"},{"n":"Kanker","s":"seven-dooms-for-sandpoint-bestiary","lv":12,"ac":33,"hp":200,"pc":22,"sz":"medium","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/kanker.json","li":"OGL"},{"n":"Kannijo","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":180,"pc":23,"sz":"medium","tp":"undead","f":"stolen-fate-bestiary/book-1-the-choosing/kannijo.json","li":"OGL"},{"n":"Kannitri","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":175,"pc":26,"sz":"medium","tp":"spirit","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/kannitri.json","li":"OGL"},{"n":"Kanya","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":135,"pc":16,"sz":"large","tp":"celestial","f":"pathfinder-monster-core/kanya.json","li":"ORC"},{"n":"Kapmek","s":"crown-of-the-kobold-king-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/kapmek.json","li":"OGL"},{"n":"Kapoacinth","s":"blood-lords-bestiary","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"beast","f":"blood-lords-bestiary/book-2-graveclaw/kapoacinth.json","li":"OGL"},{"n":"Kappa","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":9,"sz":"small","tp":"beast","f":"pathfinder-monster-core-2/kappa.json","li":"ORC"},{"n":"Kapral","s":"agents-of-edgewatch-bestiary","lv":14,"ac":34,"hp":220,"pc":28,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/kapral.json","li":"OGL"},{"n":"Kar","s":"triumph-of-the-tusk-bestiary","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"small","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/kar.json","li":"ORC"},{"n":"Kareq","s":"gatewalkers-bestiary","lv":5,"ac":22,"hp":95,"pc":15,"sz":"large","tp":"animal","f":"gatewalkers-bestiary/book-1-the-seventh-arch/kareq.json","li":"ORC"},{"n":"Kargstaad","s":"kingmaker-bestiary","lv":19,"ac":43,"hp":360,"pc":33,"sz":"large","tp":"giant","f":"kingmaker-bestiary/kargstaad.json","li":"OGL"},{"n":"Kargstaad's Giant","s":"kingmaker-bestiary","lv":15,"ac":37,"hp":270,"pc":27,"sz":"large","tp":"giant","f":"kingmaker-bestiary/kargstaads-giant.json","li":"OGL"},{"n":"Karina","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":95,"pc":12,"sz":"large","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/karina.json","li":"OGL"},{"n":"Karkadann","s":"howl-of-the-wild-bestiary","lv":7,"ac":25,"hp":120,"pc":16,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/karkadann.json","li":"ORC"},{"n":"Karumzek","s":"strength-of-thousands-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"aberration","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/karumzek.json","li":"OGL"},{"n":"Karumzek Priest (Dispel Magic)","s":"curtain-call-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/karumzek-priest-dispel-magic.json","li":"ORC"},{"n":"Karumzek Priest (Divine Immolation)","s":"curtain-call-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/karumzek-priest-divine-immolation.json","li":"ORC"},{"n":"Karumzek Priest (Eclipse Burst)","s":"curtain-call-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/karumzek-priest-eclipse-burst.json","li":"ORC"},{"n":"Karumzek Swarm","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":175,"pc":21,"sz":"large","tp":"aberration","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/karumzek-swarm.json","li":"OGL"},{"n":"Kas Xi Rai","s":"fists-of-the-ruby-phoenix-bestiary","lv":17,"ac":38,"hp":300,"pc":26,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/kas-xi-rai.json","li":"OGL"},{"n":"Kasesh (Stone)","s":"lost-omens-bestiary","lv":3,"ac":19,"hp":35,"pc":10,"sz":"medium","tp":"elemental","f":"lost-omens-bestiary/impossible-lands/kasesh-stone.json","li":"OGL"},{"n":"Kashrishi Evaluator","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":50,"pc":13,"sz":"small","tp":"","f":"lost-omens-bestiary/impossible-lands/kashrishi-evaluator.json","li":"OGL"},{"n":"Katpaskir","s":"pathfinder-monster-core-2","lv":18,"ac":41,"hp":415,"pc":31,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/katpaskir.json","li":"ORC"},{"n":"Keeper of Ancorato","s":"shades-of-blood-bestiary","lv":10,"ac":29,"hp":160,"pc":18,"sz":"gargantuan","tp":"beast","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/keeper-of-ancorato.json","li":"ORC"},{"n":"Keketar","s":"pathfinder-monster-core","lv":17,"ac":40,"hp":260,"pc":30,"sz":"large","tp":"monitor","f":"pathfinder-monster-core/keketar.json","li":"ORC"},{"n":"Kekker","s":"agents-of-edgewatch-bestiary","lv":2,"ac":17,"hp":40,"pc":9,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/kekker.json","li":"OGL"},{"n":"Kelda Halrig","s":"age-of-ashes-bestiary","lv":8,"ac":24,"hp":135,"pc":22,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/kelda-halrig.json","li":"OGL"},{"n":"Kelganth","s":"blood-lords-bestiary","lv":19,"ac":42,"hp":330,"pc":35,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/kelganth.json","li":"OGL"},{"n":"Kellid Graveknight","s":"kingmaker-bestiary","lv":14,"ac":37,"hp":255,"pc":27,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/kellid-graveknight.json","li":"OGL"},{"n":"Kelorbeyan Guard","s":"one-shot-bestiary","lv":4,"ac":21,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/mark-of-the-mantis/kelorbeyan-guard.json","li":"OGL"},{"n":"Kelpie","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":11,"sz":"large","tp":"fey","f":"pathfinder-monster-core-2/kelpie.json","li":"ORC"},{"n":"Kemeneles","s":"agents-of-edgewatch-bestiary","lv":2,"ac":14,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/kemeneles.json","li":"OGL"},{"n":"Kemnebi","s":"blood-lords-bestiary","lv":21,"ac":43,"hp":350,"pc":39,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/kemnebi.json","li":"OGL"},{"n":"Kemnebi's Puppet","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":365,"pc":30,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/kemnebis-puppet.json","li":"OGL"},{"n":"Kepgeda the Hag-Nailed","s":"blood-lords-bestiary","lv":5,"ac":20,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-1-zombie-feast/kepgeda-the-hag-nailed.json","li":"OGL"},{"n":"Kereek","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":85,"pc":12,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/kereek.json","li":"OGL"},{"n":"Keribos","s":"myth-speaker-bestiary","lv":6,"ac":23,"hp":100,"pc":18,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/keribos.json","li":"ORC"},{"n":"Kerinelopas","s":"myth-speaker-bestiary","lv":9,"ac":27,"hp":155,"pc":19,"sz":"large","tp":"aberration","f":"myth-speaker-bestiary/book-3-titanbane/kerinelopas.json","li":"ORC"},{"n":"Kerinza","s":"blood-lords-bestiary","lv":12,"ac":32,"hp":235,"pc":23,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/kerinza.json","li":"OGL"},{"n":"Kerrdremak","s":"crown-of-the-kobold-king-bestiary","lv":1,"ac":15,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/kerrdremak.json","li":"OGL"},{"n":"Keznin Nevarmo","s":"night-of-the-gray-death-bestiary","lv":9,"ac":26,"hp":150,"pc":18,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/keznin-nevarmo.json","li":"OGL"},{"n":"Kharostan","s":"extinction-curse-bestiary","lv":16,"ac":38,"hp":280,"pc":29,"sz":"large","tp":"fiend","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/kharostan.json","li":"OGL"},{"n":"Khasprickle","s":"wardens-of-wildwood-bestiary","lv":9,"ac":28,"hp":155,"pc":21,"sz":"small","tp":"fey","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/khasprickle.json","li":"ORC"},{"n":"Khefak Scuttler","s":"strength-of-thousands-bestiary","lv":-1,"ac":15,"hp":7,"pc":4,"sz":"small","tp":"animal","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/khefak-scuttler.json","li":"OGL"},{"n":"Kholo Bonekeeper","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/kholo-bonekeeper.json","li":"ORC"},{"n":"Kholo Hunter","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":29,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/kholo-hunter.json","li":"ORC"},{"n":"Kholo Outrider","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":120,"pc":18,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kholo/kholo-outrider.json","li":"ORC"},{"n":"Kholo Pragmatist","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":22,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kholo/kholo-pragmatist.json","li":"ORC"},{"n":"Kholo Sergeant","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/kholo-sergeant.json","li":"ORC"},{"n":"Khravgodon","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":160,"pc":18,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/khravgodon.json","li":"ORC"},{"n":"Khurfel","s":"abomination-vaults-bestiary","lv":10,"ac":28,"hp":200,"pc":19,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/khurfel.json","li":"OGL"},{"n":"Ki Adept","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/ki-adept.json","li":"OGL"},{"n":"Ki Adept (Ahmoza Twins)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":230,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/ki-adept-ahmoza-twins.json","li":"OGL"},{"n":"Kieragan Skross","s":"crown-of-the-kobold-king-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/kieragan-skross.json","li":"OGL"},{"n":"Kilia Mwibo","s":"strength-of-thousands-bestiary","lv":15,"ac":36,"hp":345,"pc":26,"sz":"huge","tp":"plant","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/kilia-mwibo.json","li":"OGL"},{"n":"Kimenhul","s":"pathfinder-monster-core-2","lv":20,"ac":45,"hp":425,"pc":35,"sz":"huge","tp":"fiend","f":"pathfinder-monster-core-2/kimenhul.json","li":"ORC"},{"n":"Kimilekki","s":"extinction-curse-bestiary","lv":17,"ac":40,"hp":380,"pc":30,"sz":"huge","tp":"fiend","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/kimilekki.json","li":"OGL"},{"n":"Kimingio","s":"curtain-call-bestiary","lv":20,"ac":45,"hp":380,"pc":33,"sz":"medium","tp":"spirit","f":"curtain-call-bestiary/book-3-bring-the-house-down/kimingio.json","li":"ORC"},{"n":"King Harral","s":"age-of-ashes-bestiary","lv":14,"ac":35,"hp":195,"pc":25,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/king-harral.json","li":"OGL"},{"n":"King Merlokrep","s":"crown-of-the-kobold-king-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/king-merlokrep.json","li":"OGL"},{"n":"King of Biting Ants","s":"strength-of-thousands-bestiary","lv":19,"ac":44,"hp":300,"pc":32,"sz":"medium","tp":"aberration","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/king-of-biting-ants.json","li":"OGL"},{"n":"King Vesket","s":"kingmaker-bestiary","lv":6,"ac":23,"hp":115,"pc":12,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/king-vesket.json","li":"OGL"},{"n":"Kinzaruk","s":"rage-of-elements-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/kinzaruk.json","li":"OGL"},{"n":"Kirosthrek","s":"extinction-curse-bestiary","lv":20,"ac":45,"hp":375,"pc":36,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/kirosthrek.json","li":"OGL"},{"n":"Kiru","s":"strength-of-thousands-bestiary","lv":3,"ac":20,"hp":45,"pc":9,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/kiru.json","li":"OGL"},{"n":"Kitari Lambossa","s":"gatewalkers-bestiary","lv":6,"ac":23,"hp":90,"pc":12,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/kitari-lambossa.json","li":"ORC"},{"n":"Kithangian","s":"pathfinder-monster-core-2","lv":9,"ac":28,"hp":205,"pc":19,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/kithangian.json","li":"ORC"},{"n":"Kitsune Trickster","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":25,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/kitsune-trickster.json","li":"ORC"},{"n":"Kizidhar","s":"rage-of-elements-bestiary","lv":6,"ac":22,"hp":110,"pc":14,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/kizidhar.json","li":"OGL"},{"n":"Kizidhar Shuyookh","s":"rage-of-elements-bestiary","lv":11,"ac":30,"hp":220,"pc":22,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/kizidhar-shuyookh.json","li":"OGL"},{"n":"Klacktel","s":"spore-war-bestiary","lv":20,"ac":46,"hp":360,"pc":34,"sz":"large","tp":"undead","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/klacktel.json","li":"ORC"},{"n":"Knight","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":110,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/knight.json","li":"ORC"},{"n":"Knight of Malice","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":330,"pc":27,"sz":"medium","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/knight-of-malice.json","li":"ORC"},{"n":"Knight Reclaimant","s":"claws-of-the-tyrant-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/knight-reclaimant.json","li":"ORC"},{"n":"Knurr Ragnulf","s":"rusthenge-bestiary","lv":2,"ac":17,"hp":35,"pc":8,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/knurr-ragnulf.json","li":"OGL"},{"n":"Koata Inuu","s":"wardens-of-wildwood-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/koata-inuu.json","li":"ORC"},{"n":"Kob Moleg","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":295,"pc":27,"sz":"large","tp":"giant","f":"kingmaker-bestiary/kob-moleg.json","li":"OGL"},{"n":"Kobold Boss Zolgran (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":17,"hp":25,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-boss-zolgran-bb.json","li":"ORC"},{"n":"Kobold Cavern Mage","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/kobold-cavern-mage.json","li":"ORC"},{"n":"Kobold Earth Diver","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":60,"pc":13,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kobold/kobold-earth-diver.json","li":"ORC"},{"n":"Kobold Egg Guardian","s":"pathfinder-npc-core","lv":3,"ac":19,"hp":48,"pc":9,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kobold/kobold-egg-guardian.json","li":"ORC"},{"n":"Kobold Mage (Black, BB)","s":"menace-under-otari-bestiary","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-mage-black-bb.json","li":"ORC"},{"n":"Kobold Mage (Blue, BB)","s":"menace-under-otari-bestiary","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-mage-blue-bb.json","li":"ORC"},{"n":"Kobold Mage (Green, BB)","s":"menace-under-otari-bestiary","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-mage-green-bb.json","li":"ORC"},{"n":"Kobold Mage (Red, BB)","s":"menace-under-otari-bestiary","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-mage-red-bb.json","li":"ORC"},{"n":"Kobold Mage (White, BB)","s":"menace-under-otari-bestiary","lv":2,"ac":16,"hp":20,"pc":5,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-mage-white-bb.json","li":"ORC"},{"n":"Kobold Scout","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":16,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/kobold-scout.json","li":"ORC"},{"n":"Kobold Scout (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":16,"hp":16,"pc":8,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-scout-bb.json","li":"ORC"},{"n":"Kobold Trap Squad","s":"battlecry-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/kobold-trap-squad.json","li":"ORC"},{"n":"Kobold Trapmaster","s":"troubles-in-otari-bestiary","lv":2,"ac":19,"hp":28,"pc":6,"sz":"small","tp":"humanoid","f":"troubles-in-otari-bestiary/kobold-trapmaster.json","li":"OGL"},{"n":"Kobold Trapmaster (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":19,"hp":28,"pc":6,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-trapmaster-bb.json","li":"ORC"},{"n":"Kobold Trapper","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":32,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/kobold/kobold-trapper.json","li":"ORC"},{"n":"Kobold Tunnelrunner","s":"blog-bestiary","lv":0,"ac":16,"hp":16,"pc":6,"sz":"small","tp":"humanoid","f":"blog-bestiary/kobold-tunnelrunner.json","li":"OGL"},{"n":"Kobold Warrior","s":"pathfinder-monster-core","lv":-1,"ac":16,"hp":7,"pc":3,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/kobold-warrior.json","li":"ORC"},{"n":"Kobold Warrior (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":16,"hp":7,"pc":3,"sz":"small","tp":"humanoid","f":"menace-under-otari-bestiary/kobold-warrior-bb.json","li":"ORC"},{"n":"Kodama","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":95,"pc":15,"sz":"small","tp":"spirit","f":"pathfinder-monster-core-2/kodama.json","li":"ORC"},{"n":"Kolbo","s":"strength-of-thousands-bestiary","lv":6,"ac":24,"hp":115,"pc":12,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/kolbo.json","li":"OGL"},{"n":"Kolo Harvan","s":"agents-of-edgewatch-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/kolo-harvan.json","li":"OGL"},{"n":"Korog","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":295,"pc":29,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/korog.json","li":"OGL"},{"n":"Kotgar Leadbuster","s":"troubles-in-otari-bestiary","lv":4,"ac":21,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/kotgar-leadbuster.json","li":"OGL"},{"n":"Kothogaz, Dance Of Disharmony","s":"lost-omens-bestiary","lv":21,"ac":49,"hp":400,"pc":41,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/kothogaz-dance-of-disharmony.json","li":"OGL"},{"n":"Koto Zekora","s":"fists-of-the-ruby-phoenix-bestiary","lv":17,"ac":39,"hp":295,"pc":30,"sz":"large","tp":"fiend","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/koto-zekora.json","li":"OGL"},{"n":"Kragala","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":62,"pc":8,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/kragala.json","li":"OGL"},{"n":"Kraken","s":"pathfinder-monster-core","lv":18,"ac":42,"hp":360,"pc":34,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core/kraken.json","li":"ORC"},{"n":"Kraken Caller","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/kraken-caller.json","li":"ORC"},{"n":"Kralgurn","s":"age-of-ashes-bestiary","lv":14,"ac":36,"hp":255,"pc":24,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/kralgurn.json","li":"OGL"},{"n":"Krampus (The Horned Miser)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":380,"pc":38,"sz":"large","tp":"humanoid","f":"lost-omens-bestiary/monsters-of-myth/krampus-the-horned-miser.json","li":"OGL"},{"n":"Krampus Celebrant","s":"lost-omens-bestiary","lv":8,"ac":27,"hp":125,"pc":19,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/monsters-of-myth/krampus-celebrant.json","li":"OGL"},{"n":"Krashk","s":"the-enmity-cycle-bestiary","lv":5,"ac":21,"hp":82,"pc":14,"sz":"medium","tp":"humanoid","f":"the-enmity-cycle-bestiary/krashk.json","li":"OGL"},{"n":"Kreekoss","s":"strength-of-thousands-bestiary","lv":6,"ac":24,"hp":95,"pc":15,"sz":"large","tp":"beast","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/kreekoss.json","li":"OGL"},{"n":"Kreeth-Ni","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":19,"hp":40,"pc":11,"sz":"tiny","tp":"fey","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/kreeth-ni.json","li":"OGL"},{"n":"Kressle","s":"kingmaker-bestiary","lv":1,"ac":15,"hp":22,"pc":6,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/kressle.json","li":"OGL"},{"n":"Krohan (Possessed)","s":"sky-kings-tomb-bestiary","lv":4,"ac":18,"hp":52,"pc":9,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/krohan-possessed.json","li":"OGL"},{"n":"Krohan Veldollow","s":"sky-kings-tomb-bestiary","lv":3,"ac":18,"hp":52,"pc":9,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/krohan-veldollow.json","li":"OGL"},{"n":"Krooth","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":150,"pc":16,"sz":"large","tp":"animal","f":"pathfinder-monster-core/krooth.json","li":"ORC"},{"n":"Kuchisake-Onna","s":"pathfinder-dark-archive","lv":14,"ac":36,"hp":252,"pc":28,"sz":"medium","tp":"aberration","f":"pathfinder-dark-archive/npcs/kuchisake-onna.json","li":"ORC"},{"n":"Kugaptee's Blessing","s":"season-of-ghosts-bestiary","lv":2,"ac":15,"hp":70,"pc":8,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/kugaptees-blessing.json","li":"ORC"},{"n":"Kugaptee's Centipede","s":"season-of-ghosts-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"gargantuan","tp":"beast","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/kugaptees-centipede.json","li":"ORC"},{"n":"Kugaptee's Drakauthix","s":"season-of-ghosts-bestiary","lv":9,"ac":25,"hp":190,"pc":17,"sz":"huge","tp":"fiend","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/kugaptees-drakauthix.json","li":"OGL"},{"n":"Kun","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":230,"pc":27,"sz":"gargantuan","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/kun.json","li":"OGL"},{"n":"Kun","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":230,"pc":27,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/kun.json","li":"ORC"},{"n":"Kundal","s":"kingmaker-bestiary","lv":7,"ac":25,"hp":140,"pc":15,"sz":"medium","tp":"beast","f":"kingmaker-bestiary/kundal.json","li":"OGL"},{"n":"Kuribu","s":"pathfinder-monster-core-2","lv":3,"ac":17,"hp":45,"pc":11,"sz":"small","tp":"celestial","f":"pathfinder-monster-core-2/kuribu.json","li":"ORC"},{"n":"Kurnugian Jackal","s":"troubles-in-otari-bestiary","lv":6,"ac":23,"hp":98,"pc":17,"sz":"medium","tp":"beast","f":"troubles-in-otari-bestiary/kurnugian-jackal.json","li":"OGL"},{"n":"Kurshkin","s":"strength-of-thousands-bestiary","lv":3,"ac":19,"hp":50,"pc":10,"sz":"tiny","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/kurshkin.json","li":"OGL"},{"n":"Kuworsys","s":"lost-omens-bestiary","lv":12,"ac":34,"hp":213,"pc":22,"sz":"large","tp":"aberration","f":"lost-omens-bestiary/monsters-of-myth/kuworsys.json","li":"OGL"},{"n":"Kvernknurr","s":"gatewalkers-bestiary","lv":5,"ac":22,"hp":80,"pc":12,"sz":"large","tp":"fey","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/kvernknurr.json","li":"ORC"},{"n":"Kylix","s":"hellbreakers-bestiary","lv":4,"ac":20,"hp":57,"pc":11,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/kylix.json","li":"ORC"},{"n":"Lacedon","s":"book-of-the-dead-bestiary","lv":2,"ac":18,"hp":32,"pc":7,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/lacedon.json","li":"OGL"},{"n":"Lacridaemon","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":45,"pc":9,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/lacridaemon.json","li":"ORC"},{"n":"Lady Shimmersnip","s":"sky-kings-tomb-bestiary","lv":2,"ac":19,"hp":24,"pc":8,"sz":"large","tp":"animal","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/lady-shimmersnip.json","li":"OGL"},{"n":"Lady Siccale","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":43,"hp":360,"pc":32,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/lady-siccale.json","li":"ORC"},{"n":"Lady's Whisper","s":"abomination-vaults-bestiary","lv":11,"ac":31,"hp":195,"pc":25,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/ladys-whisper.json","li":"OGL"},{"n":"Lagofir","s":"quest-for-the-frozen-flame-bestiary","lv":3,"ac":18,"hp":55,"pc":11,"sz":"large","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/lagofir.json","li":"OGL"},{"n":"Lakkai One-Fang","s":"extinction-curse-bestiary","lv":3,"ac":20,"hp":44,"pc":9,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/lakkai-one-fang.json","li":"OGL"},{"n":"Lamia","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":95,"pc":13,"sz":"large","tp":"beast","f":"pathfinder-monster-core/lamia.json","li":"ORC"},{"n":"Lamia Matriarch","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":15,"sz":"large","tp":"beast","f":"pathfinder-monster-core/lamia-matriarch.json","li":"ORC"},{"n":"Lamp Blighter","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":75,"pc":15,"sz":"small","tp":"fey","f":"lost-omens-bestiary/shining-kingdoms/lamp-blighter.json","li":"ORC"},{"n":"Lampad","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":85,"pc":12,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/lampad.json","li":"ORC"},{"n":"Lampad Queen","s":"pathfinder-monster-core-2","lv":15,"ac":38,"hp":235,"pc":27,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/lampad-queen.json","li":"ORC"},{"n":"Lantondo","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":275,"pc":27,"sz":"medium","tp":"construct","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/lantondo.json","li":"OGL"},{"n":"Larabay","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":175,"pc":22,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/larabay.json","li":"ORC"},{"n":"Laruhao","s":"fists-of-the-ruby-phoenix-bestiary","lv":19,"ac":43,"hp":360,"pc":35,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/laruhao.json","li":"OGL"},{"n":"Larval Cave Worm Brood (Azure)","s":"sky-kings-tomb-bestiary","lv":10,"ac":27,"hp":220,"pc":14,"sz":"huge","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/larval-cave-worm-brood-azure.json","li":"OGL"},{"n":"Larval Cave Worm Brood (Crimson)","s":"sky-kings-tomb-bestiary","lv":10,"ac":27,"hp":220,"pc":14,"sz":"huge","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/larval-cave-worm-brood-crimson.json","li":"OGL"},{"n":"Larval Cave Worm Brood (Glacial)","s":"sky-kings-tomb-bestiary","lv":10,"ac":27,"hp":220,"pc":14,"sz":"huge","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/larval-cave-worm-brood-glacial.json","li":"OGL"},{"n":"Larval Cave Worm Brood (Grey)","s":"sky-kings-tomb-bestiary","lv":10,"ac":27,"hp":220,"pc":14,"sz":"huge","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/larval-cave-worm-brood-grey.json","li":"OGL"},{"n":"Larval Cave Worm Brood (Rock)","s":"sky-kings-tomb-bestiary","lv":10,"ac":27,"hp":220,"pc":14,"sz":"huge","tp":"animal","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/larval-cave-worm-brood-rock.json","li":"OGL"},{"n":"Larval Ofalth","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":60,"pc":9,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/larval-ofalth.json","li":"ORC"},{"n":"Lasheeli","s":"blood-lords-bestiary","lv":10,"ac":27,"hp":127,"pc":19,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/lasheeli.json","li":"OGL"},{"n":"Laslunn","s":"age-of-ashes-bestiary","lv":13,"ac":35,"hp":235,"pc":24,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/laslunn.json","li":"OGL"},{"n":"Last Guard","s":"book-of-the-dead-bestiary","lv":20,"ac":45,"hp":330,"pc":33,"sz":"gargantuan","tp":"spirit","f":"book-of-the-dead-bestiary/last-guard.json","li":"OGL"},{"n":"Lava Otter","s":"rage-of-elements-bestiary","lv":1,"ac":15,"hp":22,"pc":7,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/lava-otter.json","li":"OGL"},{"n":"Lava Spitter","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"small","tp":"construct","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/lava-spitter.json","li":"ORC"},{"n":"Lawbringer Warpriest","s":"pathfinder-monster-core","lv":5,"ac":23,"hp":64,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/lawbringer-warpriest.json","li":"ORC"},{"n":"Lawn Crawfish","s":"one-shot-bestiary","lv":1,"ac":20,"hp":17,"pc":8,"sz":"small","tp":"aberration","f":"one-shot-bestiary/little-trouble-in-big-absalom/lawn-crawfish.json","li":"OGL"},{"n":"Lazurite-Infused Stone Golem","s":"age-of-ashes-bestiary","lv":12,"ac":33,"hp":195,"pc":22,"sz":"large","tp":"construct","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/lazurite-infused-stone-golem.json","li":"OGL"},{"n":"Leadsmith","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":22,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/leadsmith.json","li":"OGL"},{"n":"Leaf Leshy","s":"pathfinder-monster-core","lv":0,"ac":18,"hp":15,"pc":4,"sz":"small","tp":"plant","f":"pathfinder-monster-core/leaf-leshy.json","li":"ORC"},{"n":"Leandrus","s":"extinction-curse-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/leandrus.json","li":"OGL"},{"n":"Leaping Thief","s":"pathfinder-npc-core","lv":3,"ac":20,"hp":38,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/catfolk/leaping-thief.json","li":"ORC"},{"n":"Leather Cap","s":"standalone-adventures","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"fungus","f":"standalone-adventures/adventure-2-swamp-stalkers/leather-cap.json","li":"ORC"},{"n":"Ledorick Banyan","s":"extinction-curse-bestiary","lv":14,"ac":36,"hp":260,"pc":24,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/ledorick-banyan.json","li":"OGL"},{"n":"Ledorick Banyan (Possessed)","s":"extinction-curse-bestiary","lv":14,"ac":36,"hp":260,"pc":24,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/ledorick-banyan-possessed.json","li":"OGL"},{"n":"Lefranek Meyal","s":"hellbreakers-bestiary","lv":4,"ac":21,"hp":68,"pc":11,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/lefranek-meyal.json","li":"ORC"},{"n":"Legbreaker","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":110,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/legbreaker.json","li":"ORC"},{"n":"Leiko","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":45,"pc":10,"sz":"medium","tp":"","f":"gatewalkers-bestiary/book-1-the-seventh-arch/leiko.json","li":"ORC"},{"n":"Lekmek","s":"crown-of-the-kobold-king-bestiary","lv":3,"ac":16,"hp":56,"pc":8,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/lekmek.json","li":"OGL"},{"n":"Leng Envoy","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":240,"pc":31,"sz":"medium","tp":"aberration","f":"kingmaker-bestiary/leng-envoy.json","li":"OGL"},{"n":"Leopard","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/leopard.json","li":"ORC"},{"n":"Leopard (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/leopard-bb.json","li":"ORC"},{"n":"Leopard Seal","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":65,"pc":13,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/leopard-seal.json","li":"ORC"},{"n":"Leprechaun","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":25,"pc":11,"sz":"small","tp":"fey","f":"pathfinder-monster-core-2/leprechaun.json","li":"ORC"},{"n":"Leshy Mob","s":"wardens-of-wildwood-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"gargantuan","tp":"plant","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/leshy-mob.json","li":"ORC"},{"n":"Lesser Death","s":"pathfinder-monster-core","lv":16,"ac":39,"hp":255,"pc":32,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/lesser-death.json","li":"ORC"},{"n":"Lesser Jabberwock","s":"kingmaker-bestiary","lv":21,"ac":47,"hp":430,"pc":36,"sz":"huge","tp":"dragon","f":"kingmaker-bestiary/lesser-jabberwock.json","li":"OGL"},{"n":"Lesser Manifestation Of Dahak","s":"age-of-ashes-bestiary","lv":22,"ac":50,"hp":500,"pc":39,"sz":"gargantuan","tp":"dragon","f":"age-of-ashes-bestiary/book-6-broken-promises/lesser-manifestation-of-dahak.json","li":"OGL"},{"n":"Lesser Shadow Scamp","s":"shades-of-blood-bestiary","lv":0,"ac":15,"hp":10,"pc":2,"sz":"small","tp":"elemental","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/lesser-shadow-scamp.json","li":"ORC"},{"n":"Leukodaemon","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":155,"pc":20,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/leukodaemon.json","li":"ORC"},{"n":"Leukodaemon Plague","s":"battlecry-bestiary","lv":14,"ac":35,"hp":255,"pc":25,"sz":"gargantuan","tp":"fiend","f":"battlecry-bestiary/leukodaemon-plague.json","li":"ORC"},{"n":"Levaloch","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":105,"pc":16,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/levaloch.json","li":"ORC"},{"n":"Leviathan Louse","s":"myth-speaker-bestiary","lv":8,"ac":26,"hp":135,"pc":15,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-3-titanbane/leviathan-louse.json","li":"ORC"},{"n":"Librarian","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":6,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/librarian.json","li":"ORC"},{"n":"Lich","s":"pathfinder-monster-core","lv":12,"ac":31,"hp":190,"pc":20,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/lich.json","li":"ORC"},{"n":"Lich Legion","s":"battlecry-bestiary","lv":18,"ac":41,"hp":330,"pc":30,"sz":"gargantuan","tp":"undead","f":"battlecry-bestiary/lich-legion.json","li":"ORC"},{"n":"Lickweed","s":"kingmaker-bestiary","lv":4,"ac":20,"hp":65,"pc":12,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/lickweed.json","li":"OGL"},{"n":"Lie-Master","s":"agents-of-edgewatch-bestiary","lv":14,"ac":34,"hp":300,"pc":24,"sz":"huge","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/lie-master.json","li":"OGL"},{"n":"Lightning Turtle","s":"howl-of-the-wild-bestiary","lv":12,"ac":34,"hp":190,"pc":22,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/lightning-turtle.json","li":"ORC"},{"n":"Lignified Adamantine Golem","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":255,"pc":26,"sz":"large","tp":"construct","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/lignified-adamantine-golem.json","li":"OGL"},{"n":"Line Infantry","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":96,"pc":13,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/military/line-infantry.json","li":"ORC"},{"n":"Lintwerth","s":"kingmaker-bestiary","lv":11,"ac":32,"hp":180,"pc":22,"sz":"small","tp":"elemental","f":"kingmaker-bestiary/lintwerth.json","li":"OGL"},{"n":"Lion","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/lion.json","li":"ORC"},{"n":"Lion Visitant","s":"extinction-curse-bestiary","lv":5,"ac":22,"hp":95,"pc":13,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/lion-visitant.json","li":"OGL"},{"n":"Liralarue","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":45,"hp":375,"pc":35,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/liralarue.json","li":"ORC"},{"n":"Lisavet","s":"blog-bestiary","lv":2,"ac":17,"hp":30,"pc":10,"sz":"medium","tp":"humanoid","f":"blog-bestiary/lisavet.json","li":"OGL"},{"n":"Lithic Locus","s":"rage-of-elements-bestiary","lv":14,"ac":35,"hp":260,"pc":25,"sz":"large","tp":"construct","f":"rage-of-elements-bestiary/lithic-locus.json","li":"OGL"},{"n":"Little Man In The Woods","s":"book-of-the-dead-bestiary","lv":6,"ac":24,"hp":95,"pc":12,"sz":"small","tp":"undead","f":"book-of-the-dead-bestiary/little-man-in-the-woods.json","li":"OGL"},{"n":"Living Boulder","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":35,"pc":6,"sz":"small","tp":"elemental","f":"pathfinder-monster-core-2/living-boulder.json","li":"ORC"},{"n":"Living Grove","s":"rage-of-elements-bestiary","lv":5,"ac":21,"hp":90,"pc":15,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/living-grove.json","li":"OGL"},{"n":"Living Guard","s":"shades-of-blood-bestiary","lv":4,"ac":21,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/living-guard.json","li":"ORC"},{"n":"Living Landslide","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":90,"pc":12,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/living-landslide.json","li":"ORC"},{"n":"Living Lodestone","s":"rage-of-elements-bestiary","lv":6,"ac":23,"hp":95,"pc":14,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/living-lodestone.json","li":"OGL"},{"n":"Living Magma","s":"rage-of-elements-bestiary","lv":13,"ac":35,"hp":250,"pc":22,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/living-magma.json","li":"OGL"},{"n":"Living Mural","s":"agents-of-edgewatch-bestiary","lv":19,"ac":43,"hp":100,"pc":32,"sz":"huge","tp":"construct","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/living-mural.json","li":"OGL"},{"n":"Living Nightmare","s":"curtain-call-bestiary","lv":8,"ac":24,"hp":110,"pc":18,"sz":"medium","tp":"dream","f":"curtain-call-bestiary/book-1-stage-fright/living-nightmare.json","li":"ORC"},{"n":"Living Sap","s":"age-of-ashes-bestiary","lv":6,"ac":13,"hp":175,"pc":7,"sz":"medium","tp":"ooze","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/living-sap.json","li":"OGL"},{"n":"Living Statue","s":"myth-speaker-bestiary","lv":5,"ac":23,"hp":75,"pc":13,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/living-statue.json","li":"ORC"},{"n":"Living Sun-Spire","s":"strength-of-thousands-bestiary","lv":13,"ac":36,"hp":200,"pc":21,"sz":"gargantuan","tp":"construct","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/living-sun-spire.json","li":"OGL"},{"n":"Living Tar","s":"pathfinder-monster-core","lv":7,"ac":14,"hp":165,"pc":9,"sz":"huge","tp":"ooze","f":"pathfinder-monster-core/living-tar.json","li":"ORC"},{"n":"Living Thunderclap","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":50,"pc":9,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/living-thunderclap.json","li":"ORC"},{"n":"Living Waterfall","s":"pathfinder-monster-core","lv":5,"ac":20,"hp":90,"pc":10,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/living-waterfall.json","li":"ORC"},{"n":"Living Whirlwind","s":"pathfinder-monster-core","lv":5,"ac":24,"hp":50,"pc":10,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/living-whirlwind.json","li":"ORC"},{"n":"Living Wildfire","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":80,"pc":10,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/living-wildfire.json","li":"ORC"},{"n":"Lizardfolk Defender","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":21,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/lizardfolk-defender.json","li":"ORC"},{"n":"Lizardfolk Scout","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":17,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/lizardfolk-scout.json","li":"ORC"},{"n":"Lizardfolk Stargazer","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/lizardfolk-stargazer.json","li":"ORC"},{"n":"Lizardfolk Warrior","s":"kingmaker-bestiary","lv":2,"ac":17,"hp":36,"pc":7,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/lizardfolk-warrior.json","li":"OGL"},{"n":"Llorona","s":"book-of-the-dead-bestiary","lv":12,"ac":32,"hp":165,"pc":20,"sz":"medium","tp":"spirit","f":"book-of-the-dead-bestiary/llorona.json","li":"OGL"},{"n":"Lloyd The Leaper","s":"wardens-of-wildwood-bestiary","lv":8,"ac":26,"hp":135,"pc":17,"sz":"small","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/lloyd-the-leaper.json","li":"ORC"},{"n":"Loakan","s":"strength-of-thousands-bestiary","lv":6,"ac":23,"hp":100,"pc":13,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/loakan.json","li":"OGL"},{"n":"Loan Shark","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":25,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/loan-shark.json","li":"ORC"},{"n":"Loblobi","s":"quest-for-the-frozen-flame-bestiary","lv":1,"ac":16,"hp":25,"pc":6,"sz":"small","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/loblobi.json","li":"OGL"},{"n":"Local Herbalist","s":"pathfinder-npc-core","lv":1,"ac":13,"hp":24,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/local-herbalist.json","li":"ORC"},{"n":"Logger","s":"kingmaker-bestiary","lv":1,"ac":13,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/logger.json","li":"OGL"},{"n":"Lograsi","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":41,"hp":335,"pc":30,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/lograsi.json","li":"ORC"},{"n":"Lomok","s":"quest-for-the-frozen-flame-bestiary","lv":11,"ac":30,"hp":210,"pc":21,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/lomok.json","li":"OGL"},{"n":"Lomori Sprout","s":"rage-of-elements-bestiary","lv":3,"ac":17,"hp":50,"pc":9,"sz":"tiny","tp":"plant","f":"rage-of-elements-bestiary/lomori-sprout.json","li":"OGL"},{"n":"Long-horned Bison","s":"quest-for-the-frozen-flame-bestiary","lv":6,"ac":23,"hp":110,"pc":13,"sz":"huge","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/long-horned-bison.json","li":"OGL"},{"n":"Long-horned Bison Beheaded","s":"quest-for-the-frozen-flame-bestiary","lv":2,"ac":18,"hp":32,"pc":7,"sz":"medium","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/long-horned-bison-beheaded.json","li":"OGL"},{"n":"Lophiithu","s":"fists-of-the-ruby-phoenix-bestiary","lv":21,"ac":43,"hp":400,"pc":38,"sz":"gargantuan","tp":"","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/lophiithu.json","li":"OGL"},{"n":"Lord Guirden","s":"agents-of-edgewatch-bestiary","lv":19,"ac":41,"hp":450,"pc":37,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/lord-guirden.json","li":"OGL"},{"n":"Lord Nar","s":"fall-of-plaguestone","lv":4,"ac":21,"hp":68,"pc":9,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/lord-nar.json","li":"OGL"},{"n":"Loreavor","s":"shadows-at-sundown-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"small","tp":"astral","f":"shadows-at-sundown-bestiary/loreavor.json","li":"OGL"},{"n":"Lorthact","s":"shadows-at-sundown-bestiary","lv":16,"ac":38,"hp":300,"pc":27,"sz":"medium","tp":"fiend","f":"shadows-at-sundown-bestiary/lorthact.json","li":"OGL"},{"n":"Losko","s":"shades-of-blood-bestiary","lv":5,"ac":22,"hp":58,"pc":11,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-2-the-broken-palace/losko.json","li":"ORC"},{"n":"Lovelorn","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":10,"sz":"tiny","tp":"undead","f":"pathfinder-monster-core-2/lovelorn.json","li":"ORC"},{"n":"Lucky Courser","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":140,"pc":18,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/catfolk/lucky-courser.json","li":"ORC"},{"n":"Lukarazyll","s":"spore-war-bestiary","lv":14,"ac":34,"hp":325,"pc":22,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/lukarazyll.json","li":"ORC"},{"n":"Luminous Ooze","s":"extinction-curse-bestiary","lv":4,"ac":11,"hp":80,"pc":6,"sz":"small","tp":"ooze","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/luminous-ooze.json","li":"OGL"},{"n":"Luruvin","s":"wardens-of-wildwood-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/luruvin.json","li":"ORC"},{"n":"Lusca","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":320,"pc":31,"sz":"gargantuan","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/lusca.json","li":"OGL"},{"n":"Lustspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/lustspawn.json","li":"ORC"},{"n":"Lyrakien","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":25,"pc":8,"sz":"tiny","tp":"celestial","f":"pathfinder-monster-core/lyrakien.json","li":"ORC"},{"n":"Lyrma Swampwalker","s":"agents-of-edgewatch-bestiary","lv":2,"ac":14,"hp":38,"pc":11,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/lyrma-swampwalker.json","li":"OGL"},{"n":"Lyrt Cozurn","s":"extinction-curse-bestiary","lv":15,"ac":35,"hp":280,"pc":27,"sz":"medium","tp":"spirit","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/lyrt-cozurn.json","li":"OGL"},{"n":"Lythazossa","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":44,"hp":280,"pc":35,"sz":"gargantuan","tp":"spirit","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/lythazossa.json","li":"ORC"},{"n":"Maalya","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":37,"hp":275,"pc":21,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/maalya.json","li":"OGL"},{"n":"Maddenmist","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":36,"hp":251,"pc":24,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/maddenmist.json","li":"ORC"},{"n":"Maestro","s":"pathfinder-npc-core","lv":11,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/maestro.json","li":"ORC"},{"n":"Mafika Ayuwari","s":"fists-of-the-ruby-phoenix-bestiary","lv":17,"ac":37,"hp":250,"pc":29,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/mafika-ayuwari.json","li":"OGL"},{"n":"Maftet Guardian","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":90,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/maftet-guardian.json","li":"ORC"},{"n":"Mage for Hire","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":30,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/mage-for-hire.json","li":"ORC"},{"n":"Mage Killer","s":"pathfinder-npc-core","lv":8,"ac":25,"hp":145,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/mage-killer.json","li":"ORC"},{"n":"Mage Knight","s":"pathfinder-npc-core","lv":10,"ac":29,"hp":140,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/mage-knight.json","li":"ORC"},{"n":"Mage of Many Styles","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":22,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/mage-of-many-styles.json","li":"OGL"},{"n":"Magical Forge","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":30,"hp":135,"pc":15,"sz":"huge","tp":"construct","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/magical-forge.json","li":"ORC"},{"n":"Magma Archdragon","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":450,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-archdragon.json","li":"ORC"},{"n":"Magma Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":450,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-archdragon-spellcaster.json","li":"ORC"},{"n":"Magma Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":33,"hp":270,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Magma Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":33,"hp":270,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-adult.json","li":"ORC"},{"n":"Magma Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":380,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Magma Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":380,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-ancient.json","li":"ORC"},{"n":"Magma Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":175,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-young-spellcaster.json","li":"ORC"},{"n":"Magma Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":175,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/magma/magma-dragon-young.json","li":"ORC"},{"n":"Magma Scorpion","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":155,"pc":18,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/magma-scorpion.json","li":"ORC"},{"n":"Magma Worm","s":"pathfinder-monster-core","lv":18,"ac":40,"hp":410,"pc":25,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core/magma-worm.json","li":"ORC"},{"n":"Magnegor","s":"howl-of-the-wild-bestiary","lv":6,"ac":21,"hp":100,"pc":14,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/magnegor.json","li":"ORC"},{"n":"Magnetic Gecko","s":"howl-of-the-wild-bestiary","lv":1,"ac":15,"hp":20,"pc":10,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/magnetic-gecko.json","li":"ORC"},{"n":"Mago Kai","s":"season-of-ghosts-bestiary","lv":11,"ac":29,"hp":220,"pc":17,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/mago-kai.json","li":"ORC"},{"n":"Majungasaurus","s":"howl-of-the-wild-bestiary","lv":6,"ac":23,"hp":120,"pc":12,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/majungasaurus.json","li":"ORC"},{"n":"Malarunk","s":"age-of-ashes-bestiary","lv":5,"ac":22,"hp":63,"pc":13,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/malarunk.json","li":"OGL"},{"n":"Malgorzata Niska","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":85,"pc":13,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/malgorzata-niska.json","li":"OGL"},{"n":"Maliadi","s":"lost-omens-bestiary","lv":17,"ac":40,"hp":285,"pc":29,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/maliadi.json","li":"OGL"},{"n":"Mamlambo","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/mamlambo.json","li":"OGL"},{"n":"Mammoth","s":"pathfinder-monster-core","lv":10,"ac":29,"hp":190,"pc":18,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/mammoth.json","li":"ORC"},{"n":"Mammoth Land Star","s":"howl-of-the-wild-bestiary","lv":8,"ac":26,"hp":100,"pc":19,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/mammoth-land-star.json","li":"ORC"},{"n":"Mammoth Squid","s":"myth-speaker-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"gargantuan","tp":"animal","f":"myth-speaker-bestiary/book-3-titanbane/mammoth-squid.json","li":"ORC"},{"n":"Mammoth Turtle","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":270,"pc":24,"sz":"gargantuan","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/mammoth-turtle.json","li":"OGL"},{"n":"Manananggal","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":180,"pc":16,"sz":"medium","tp":"aberration","f":"lost-omens-bestiary/tian-xia-world-guide/manananggal.json","li":"ORC"},{"n":"Mandragora","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":11,"sz":"small","tp":"plant","f":"pathfinder-monster-core-2/mandragora.json","li":"ORC"},{"n":"Mandragora Swarm","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":230,"pc":30,"sz":"large","tp":"plant","f":"kingmaker-bestiary/mandragora-swarm.json","li":"OGL"},{"n":"Mangy Wolf","s":"fall-of-plaguestone","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"medium","tp":"animal","f":"fall-of-plaguestone/mangy-wolf.json","li":"OGL"},{"n":"Manifestation Of Dahak","s":"age-of-ashes-bestiary","lv":24,"ac":52,"hp":600,"pc":46,"sz":"gargantuan","tp":"dragon","f":"age-of-ashes-bestiary/book-6-broken-promises/manifestation-of-dahak.json","li":"OGL"},{"n":"Manticore (Quill Tail)","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":90,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core/manticore-quill-tail.json","li":"ORC"},{"n":"Manticore (Scorpion Tail)","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":90,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core/manticore-scorpion-tail.json","li":"ORC"},{"n":"Mantis Keeper","s":"prey-for-death-bestiary","lv":17,"ac":39,"hp":318,"pc":31,"sz":"small","tp":"plant","f":"prey-for-death-bestiary/mantis-keeper.json","li":"ORC"},{"n":"Marguk Cleftneck","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":25,"hp":175,"pc":16,"sz":"large","tp":"giant","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/marguk-cleftneck.json","li":"ORC"},{"n":"Mari Lwyd","s":"blog-bestiary","lv":11,"ac":30,"hp":190,"pc":21,"sz":"large","tp":"fey","f":"blog-bestiary/mari-lwyd.json","li":"OGL"},{"n":"Markish Aghayarea","s":"stolen-fate-bestiary","lv":15,"ac":37,"hp":250,"pc":29,"sz":"large","tp":"undead","f":"stolen-fate-bestiary/book-2-the-destiny-war/markish-aghayarea.json","li":"OGL"},{"n":"Marp","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":48,"pc":12,"sz":"small","tp":"beast","f":"howl-of-the-wild-bestiary/marp.json","li":"ORC"},{"n":"Marrmora","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":280,"pc":27,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/marrmora.json","li":"ORC"},{"n":"Marsh Giant","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":150,"pc":16,"sz":"large","tp":"giant","f":"pathfinder-monster-core/marsh-giant.json","li":"ORC"},{"n":"Martial Student","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":40,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/martial-artist/martial-student.json","li":"ORC"},{"n":"Mashkudu The Bully","s":"strength-of-thousands-bestiary","lv":5,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/mashkudu-the-bully.json","li":"OGL"},{"n":"Mask of Blackfingers","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":290,"pc":32,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-3-bring-the-house-down/mask-of-blackfingers.json","li":"ORC"},{"n":"Mask of Father Skinsaw","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":290,"pc":32,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-3-bring-the-house-down/mask-of-father-skinsaw.json","li":"ORC"},{"n":"Mask of Gray Master","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":290,"pc":32,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-3-bring-the-house-down/mask-of-gray-master.json","li":"ORC"},{"n":"Mask of the Reaper","s":"curtain-call-bestiary","lv":16,"ac":39,"hp":290,"pc":32,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-3-bring-the-house-down/mask-of-the-reaper.json","li":"ORC"},{"n":"Masque Mannequin","s":"curtain-call-bestiary","lv":15,"ac":38,"hp":210,"pc":26,"sz":"medium","tp":"construct","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/masque-mannequin.json","li":"ORC"},{"n":"Master of Disguise","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":110,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/master-of-disguise.json","li":"ORC"},{"n":"Master Xun","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":250,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/master-xun.json","li":"OGL"},{"n":"Mastermind","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":55,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/mastermind.json","li":"ORC"},{"n":"Mastiff Of Tindalos","s":"kingmaker-bestiary","lv":15,"ac":37,"hp":210,"pc":29,"sz":"medium","tp":"aberration","f":"kingmaker-bestiary/mastiff-of-tindalos.json","li":"OGL"},{"n":"Masu","s":"outlaws-of-alkenstar-bestiary","lv":-1,"ac":14,"hp":6,"pc":8,"sz":"tiny","tp":"animal","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/masu.json","li":"OGL"},{"n":"Mateena Lumlin","s":"night-of-the-gray-death-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/mateena-lumlin.json","li":"OGL"},{"n":"Matron Uldrula","s":"blood-lords-bestiary","lv":19,"ac":40,"hp":275,"pc":21,"sz":"medium","tp":"monitor","f":"blood-lords-bestiary/book-6-ghost-kings-rage/matron-uldrula.json","li":"OGL"},{"n":"Matsuki Shou","s":"season-of-ghosts-bestiary","lv":5,"ac":18,"hp":70,"pc":12,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/matsuki-shou.json","li":"ORC"},{"n":"Maurrisa Jonne","s":"agents-of-edgewatch-bestiary","lv":10,"ac":29,"hp":230,"pc":20,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/maurrisa-jonne.json","li":"OGL"},{"n":"Mayor","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":16,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/mayor.json","li":"ORC"},{"n":"Maze-Weaver","s":"revenge-of-the-runelords-bestiary","lv":13,"ac":34,"hp":235,"pc":24,"sz":"huge","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/maze-weaver.json","li":"ORC"},{"n":"Meat Guardian","s":"blood-lords-bestiary","lv":5,"ac":20,"hp":60,"pc":7,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/meat-guardian.json","li":"OGL"},{"n":"Mechanic","s":"pathfinder-npc-core","lv":1,"ac":14,"hp":22,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/mechanic.json","li":"ORC"},{"n":"Mechanical Assistant","s":"the-enmity-cycle-bestiary","lv":5,"ac":22,"hp":42,"pc":12,"sz":"medium","tp":"construct","f":"the-enmity-cycle-bestiary/mechanical-assistant.json","li":"OGL"},{"n":"Mechanical Carny","s":"extinction-curse-bestiary","lv":2,"ac":17,"hp":33,"pc":6,"sz":"medium","tp":"construct","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/mechanical-carny.json","li":"OGL"},{"n":"Mechanical Laborer","s":"blood-lords-bestiary","lv":5,"ac":22,"hp":55,"pc":11,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/mechanical-laborer.json","li":"OGL"},{"n":"Medusa","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":105,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/medusa.json","li":"ORC"},{"n":"Megalania","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":125,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/megalania.json","li":"ORC"},{"n":"Megaloceros","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":21,"hp":58,"pc":10,"sz":"large","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/megaloceros.json","li":"OGL"},{"n":"Megalodon","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":180,"pc":20,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/megalodon.json","li":"ORC"},{"n":"Megaprimatus","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":150,"pc":15,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/megaprimatus.json","li":"ORC"},{"n":"Meitremar","s":"rusthenge-bestiary","lv":3,"ac":18,"hp":42,"pc":7,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/meitremar.json","li":"OGL"},{"n":"Meladaemon","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":225,"pc":21,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/meladaemon.json","li":"ORC"},{"n":"Melfesh Monster","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":78,"pc":14,"sz":"medium","tp":"fungus","f":"lost-omens-bestiary/monsters-of-myth/melfesh-monster.json","li":"OGL"},{"n":"Melianse","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":78,"pc":11,"sz":"small","tp":"fey","f":"kingmaker-bestiary/melianse.json","li":"OGL"},{"n":"Meliosa's Leshy","s":"one-shot-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"plant","f":"one-shot-bestiary/a-fistful-of-flowers/meliosas-leshy.json","li":"OGL"},{"n":"Meliosa's Leshy (Golden Bamboo Leshy)","s":"one-shot-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"plant","f":"one-shot-bestiary/a-fistful-of-flowers/meliosas-leshy-golden-bamboo-leshy.json","li":"OGL"},{"n":"Meliosa's Leshy (Minkaian Honeysuckle Leshy)","s":"one-shot-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"plant","f":"one-shot-bestiary/a-fistful-of-flowers/meliosas-leshy-minkaian-honeysuckle-leshy.json","li":"OGL"},{"n":"Meliosa's Leshy (Mint Leshy)","s":"one-shot-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"plant","f":"one-shot-bestiary/a-fistful-of-flowers/meliosas-leshy-mint-leshy.json","li":"OGL"},{"n":"Meliosa's Leshy (Wisteria Leshy)","s":"one-shot-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"plant","f":"one-shot-bestiary/a-fistful-of-flowers/meliosas-leshy-wisteria-leshy.json","li":"OGL"},{"n":"Melodic Squall","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":39,"hp":280,"pc":30,"sz":"huge","tp":"elemental","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/melodic-squall.json","li":"OGL"},{"n":"Melody on the Wind","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":170,"pc":21,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core-2/melody-on-the-wind.json","li":"ORC"},{"n":"Melomach","s":"rage-of-elements-bestiary","lv":13,"ac":33,"hp":292,"pc":19,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/melomach.json","li":"OGL"},{"n":"Mengkare","s":"age-of-ashes-bestiary","lv":23,"ac":50,"hp":575,"pc":40,"sz":"gargantuan","tp":"dragon","f":"age-of-ashes-bestiary/book-6-broken-promises/mengkare.json","li":"OGL"},{"n":"Meokdan","s":"season-of-ghosts-bestiary","lv":2,"ac":17,"hp":32,"pc":9,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/meokdan.json","li":"ORC"},{"n":"Mercenary Assassin","s":"stolen-fate-bestiary","lv":9,"ac":27,"hp":155,"pc":17,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/mercenary-assassin.json","li":"OGL"},{"n":"Mercenary Band","s":"pathfinder-npc-core","lv":9,"ac":26,"hp":180,"pc":17,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/mercenary/mercenary-band.json","li":"ORC"},{"n":"Mercenary Enforcer","s":"season-of-ghosts-bestiary","lv":6,"ac":24,"hp":102,"pc":14,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/mercenary-enforcer.json","li":"ORC"},{"n":"Mercenary Sailor","s":"age-of-ashes-bestiary","lv":5,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/mercenary-sailor.json","li":"OGL"},{"n":"Merchant","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":7,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/artisan/merchant.json","li":"ORC"},{"n":"Mercurial","s":"rage-of-elements-bestiary","lv":2,"ac":17,"hp":30,"pc":6,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/mercurial.json","li":"OGL"},{"n":"Merfolk Warrior","s":"pathfinder-monster-core","lv":1,"ac":18,"hp":19,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/merfolk-warrior.json","li":"ORC"},{"n":"Merfolk Wavecaller","s":"myth-speaker-bestiary","lv":7,"ac":24,"hp":90,"pc":15,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/merfolk-wavecaller.json","li":"ORC"},{"n":"Merfolk Wavecaller","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/merfolk-wavecaller.json","li":"ORC"},{"n":"Messenger","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/messenger.json","li":"ORC"},{"n":"Metal Scamp","s":"myth-speaker-bestiary","lv":1,"ac":15,"hp":20,"pc":3,"sz":"medium","tp":"elemental","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/metal-scamp.json","li":"ORC"},{"n":"Metal Scamp","s":"rage-of-elements-bestiary","lv":1,"ac":15,"hp":20,"pc":3,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/metal-scamp.json","li":"OGL"},{"n":"Metal Wisp","s":"rage-of-elements-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"tiny","tp":"elemental","f":"rage-of-elements-bestiary/metal-wisp.json","li":"OGL"},{"n":"Metuak","s":"quest-for-the-frozen-flame-bestiary","lv":13,"ac":33,"hp":240,"pc":20,"sz":"medium","tp":"fiend","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/metuak.json","li":"OGL"},{"n":"Mi-Go","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":120,"pc":14,"sz":"medium","tp":"fungus","f":"pathfinder-monster-core-2/mi-go.json","li":"ORC"},{"n":"Mialari Docur","s":"age-of-ashes-bestiary","lv":10,"ac":30,"hp":160,"pc":20,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/mialari-docur.json","li":"OGL"},{"n":"Miastrilek","s":"spore-war-bestiary","lv":11,"ac":30,"hp":245,"pc":20,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/miastrilek.json","li":"ORC"},{"n":"Miavri","s":"curtain-call-bestiary","lv":13,"ac":32,"hp":232,"pc":23,"sz":"medium","tp":"fey","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/miavri.json","li":"ORC"},{"n":"Mighty Bul-Gae","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":255,"pc":30,"sz":"large","tp":"beast","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/mighty-bul-gae.json","li":"OGL"},{"n":"Millindemalion","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":275,"pc":23,"sz":"small","tp":"fey","f":"pathfinder-monster-core-2/millindemalion.json","li":"ORC"},{"n":"Mime","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/mime.json","li":"ORC"},{"n":"Mimic","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":75,"pc":9,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/mimic.json","li":"ORC"},{"n":"Mimic (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":20,"hp":75,"pc":9,"sz":"medium","tp":"aberration","f":"menace-under-otari-bestiary/mimic-bb.json","li":"OGL"},{"n":"Minargul","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":22,"hp":92,"pc":11,"sz":"small","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/minargul.json","li":"OGL"},{"n":"Minchgorm","s":"agents-of-edgewatch-bestiary","lv":18,"ac":42,"hp":440,"pc":30,"sz":"huge","tp":"fey","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/minchgorm.json","li":"OGL"},{"n":"Mindmoppet","s":"gatewalkers-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"tiny","tp":"ooze","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/mindmoppet.json","li":"ORC"},{"n":"Miner","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":20,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/miner.json","li":"ORC"},{"n":"Minister Of Tumult","s":"book-of-the-dead-bestiary","lv":14,"ac":36,"hp":190,"pc":28,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/minister-of-tumult.json","li":"OGL"},{"n":"Minognos-Ushad","s":"kingmaker-bestiary","lv":19,"ac":43,"hp":295,"pc":30,"sz":"huge","tp":"dragon","f":"kingmaker-bestiary/minognos-ushad.json","li":"OGL"},{"n":"Minotaur Hunter","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":70,"pc":12,"sz":"large","tp":"beast","f":"pathfinder-monster-core/minotaur-hunter.json","li":"ORC"},{"n":"Minotaur Hunter (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":20,"hp":70,"pc":12,"sz":"large","tp":"beast","f":"menace-under-otari-bestiary/minotaur-hunter-bb.json","li":"ORC"},{"n":"Miogimo","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":310,"pc":31,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/miogimo.json","li":"OGL"},{"n":"Mirage Archdragon","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":450,"pc":39,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mirage/mirage-archdragon.json","li":"ORC"},{"n":"Mirage Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":450,"pc":39,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mirage/mirage-archdragon-spellcaster.json","li":"ORC"},{"n":"Mirage Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":235,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Mirage Dragon (Adult)","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":235,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-adult.json","li":"ORC"},{"n":"Mirage Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":18,"ac":41,"hp":345,"pc":33,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Mirage Dragon (Ancient)","s":"pathfinder-monster-core","lv":18,"ac":41,"hp":345,"pc":33,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-ancient.json","li":"ORC"},{"n":"Mirage Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":155,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-young-spellcaster.json","li":"ORC"},{"n":"Mirage Dragon (Young)","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":155,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/mirage-dragon-young.json","li":"ORC"},{"n":"Miranette","s":"shades-of-blood-bestiary","lv":7,"ac":23,"hp":100,"pc":15,"sz":"medium","tp":"fiend","f":"shades-of-blood-bestiary/book-2-the-broken-palace/miranette.json","li":"ORC"},{"n":"Miriel Grayleaf","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":13,"hp":5,"pc":2,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/miriel-grayleaf.json","li":"OGL"},{"n":"Mirmicette","s":"claws-of-the-tyrant-bestiary","lv":6,"ac":22,"hp":95,"pc":16,"sz":"small","tp":"fey","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/mirmicette.json","li":"ORC"},{"n":"Mirror Seer","s":"pathfinder-npc-core","lv":9,"ac":27,"hp":140,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/mirror-seer.json","li":"ORC"},{"n":"Mirror Wolf","s":"howl-of-the-wild-bestiary","lv":7,"ac":24,"hp":117,"pc":18,"sz":"medium","tp":"beast","f":"howl-of-the-wild-bestiary/mirror-wolf.json","li":"ORC"},{"n":"Misery Siktempora","s":"revenge-of-the-runelords-bestiary","lv":12,"ac":32,"hp":160,"pc":25,"sz":"large","tp":"time","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/misery-siktempora.json","li":"ORC"},{"n":"Miss Whisper","s":"night-of-the-gray-death-bestiary","lv":9,"ac":26,"hp":140,"pc":18,"sz":"medium","tp":"fiend","f":"night-of-the-gray-death-bestiary/miss-whisper.json","li":"OGL"},{"n":"Mist Bear","s":"howl-of-the-wild-bestiary","lv":7,"ac":24,"hp":140,"pc":18,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/mist-bear.json","li":"ORC"},{"n":"Mist Stalker","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":60,"pc":13,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/mist-stalker.json","li":"ORC"},{"n":"Mister Beak","s":"abomination-vaults-bestiary","lv":3,"ac":22,"hp":38,"pc":10,"sz":"tiny","tp":"construct","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/mister-beak.json","li":"OGL"},{"n":"Mistress Dusklight","s":"extinction-curse-bestiary","lv":11,"ac":30,"hp":195,"pc":19,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/mistress-dusklight.json","li":"OGL"},{"n":"Mitflit","s":"pathfinder-monster-core","lv":-1,"ac":14,"hp":10,"pc":4,"sz":"small","tp":"fey","f":"pathfinder-monster-core/mitflit.json","li":"ORC"},{"n":"Mitflit Vermin Cavalry","s":"battlecry-bestiary","lv":4,"ac":20,"hp":60,"pc":14,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/mitflit-vermin-cavalry.json","li":"ORC"},{"n":"Mithral Golem","s":"blood-lords-bestiary","lv":16,"ac":40,"hp":220,"pc":26,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-6-ghost-kings-rage/mithral-golem.json","li":"OGL"},{"n":"Mivanian Soldier","s":"stolen-fate-bestiary","lv":8,"ac":27,"hp":140,"pc":17,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/mivanian-soldier.json","li":"OGL"},{"n":"Mix Coatl","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":135,"pc":19,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/mix-coatl.json","li":"ORC"},{"n":"Mixed Martial Artist","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":130,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/martial-artist/mixed-martial-artist.json","li":"ORC"},{"n":"Mjolgat","s":"howl-of-the-wild-bestiary","lv":4,"ac":21,"hp":60,"pc":15,"sz":"small","tp":"beast","f":"howl-of-the-wild-bestiary/mjolgat.json","li":"ORC"},{"n":"Mnoghoth","s":"seven-dooms-for-sandpoint-bestiary","lv":9,"ac":28,"hp":130,"pc":18,"sz":"large","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/mnoghoth.json","li":"OGL"},{"n":"Mo Douqiu the Hedonist","s":"season-of-ghosts-bestiary","lv":2,"ac":18,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/mo-douqiu-the-hedonist.json","li":"ORC"},{"n":"Mobana","s":"agents-of-edgewatch-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/mobana.json","li":"OGL"},{"n":"Mobogo","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":160,"pc":21,"sz":"huge","tp":"beast","f":"pathfinder-monster-core-2/mobogo.json","li":"ORC"},{"n":"Mocking Archdragon","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":420,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-archdragon.json","li":"ORC"},{"n":"Mocking Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":420,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-archdragon-spellcaster.json","li":"ORC"},{"n":"Mocking Chorus","s":"howl-of-the-wild-bestiary","lv":18,"ac":41,"hp":340,"pc":30,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/mocking-chorus.json","li":"ORC"},{"n":"Mocking Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":215,"pc":25,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Mocking Dragon (Adult)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":215,"pc":25,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-adult.json","li":"ORC"},{"n":"Mocking Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":325,"pc":32,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Mocking Dragon (Ancient)","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":325,"pc":32,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-ancient.json","li":"ORC"},{"n":"Mocking Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":135,"pc":19,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-young-spellcaster.json","li":"ORC"},{"n":"Mocking Dragon (Young)","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":135,"pc":19,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/mocking/mocking-dragon-young.json","li":"ORC"},{"n":"Mogaran","s":"stolen-fate-bestiary","lv":17,"ac":38,"hp":325,"pc":30,"sz":"huge","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/mogaran.json","li":"OGL"},{"n":"Moldering Steed","s":"claws-of-the-tyrant-bestiary","lv":16,"ac":38,"hp":370,"pc":28,"sz":"large","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/moldering-steed.json","li":"ORC"},{"n":"Molog","s":"triumph-of-the-tusk-bestiary","lv":11,"ac":32,"hp":225,"pc":18,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/molog.json","li":"ORC"},{"n":"Molted Reefclaw","s":"myth-speaker-bestiary","lv":1,"ac":17,"hp":17,"pc":8,"sz":"small","tp":"aberration","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/molted-reefclaw.json","li":"ORC"},{"n":"Monk Cadre","s":"battlecry-bestiary","lv":14,"ac":35,"hp":270,"pc":28,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/monk-cadre.json","li":"ORC"},{"n":"Monk of Kugaptee","s":"season-of-ghosts-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/monk-of-kugaptee.json","li":"ORC"},{"n":"Monster Hunter","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":105,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/monster-hunter.json","li":"ORC"},{"n":"Moon Hag","s":"pathfinder-monster-core-2","lv":10,"ac":28,"hp":190,"pc":22,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/moon-hag.json","li":"ORC"},{"n":"Moonstalker","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":25,"hp":90,"pc":18,"sz":"medium","tp":"spirit","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/moonstalker.json","li":"ORC"},{"n":"Moose","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":50,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/moose.json","li":"ORC"},{"n":"Morgrym Leadbuster","s":"troubles-in-otari-bestiary","lv":4,"ac":19,"hp":50,"pc":11,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/morgrym-leadbuster.json","li":"OGL"},{"n":"Morlibint","s":"blog-bestiary","lv":4,"ac":21,"hp":60,"pc":7,"sz":"medium","tp":"humanoid","f":"blog-bestiary/morlibint.json","li":"OGL"},{"n":"Morlock Cultist","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":58,"pc":11,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/morlock-cultist.json","li":"OGL"},{"n":"Morlock Engineer","s":"abomination-vaults-bestiary","lv":3,"ac":18,"hp":46,"pc":8,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/morlock-engineer.json","li":"OGL"},{"n":"Morlock Scavenger","s":"abomination-vaults-bestiary","lv":1,"ac":16,"hp":20,"pc":6,"sz":"small","tp":"humanoid","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/morlock-scavenger.json","li":"OGL"},{"n":"Morlock Thrall","s":"shades-of-blood-bestiary","lv":4,"ac":20,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-2-the-broken-palace/morlock-thrall.json","li":"ORC"},{"n":"Morlock Tinkerer","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":40,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/morlock-tinkerer.json","li":"ORC"},{"n":"Morrigna","s":"pathfinder-monster-core","lv":15,"ac":38,"hp":240,"pc":28,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core/morrigna.json","li":"ORC"},{"n":"Morthak","s":"howl-of-the-wild-bestiary","lv":4,"ac":20,"hp":70,"pc":12,"sz":"medium","tp":"beast","f":"howl-of-the-wild-bestiary/morthak.json","li":"ORC"},{"n":"Mosghuta, Boss Cow","s":"blood-lords-bestiary","lv":3,"ac":15,"hp":70,"pc":4,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/mosghuta-boss-cow.json","li":"OGL"},{"n":"Mosquito Witch","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/mosquito-witch.json","li":"OGL"},{"n":"Mosquito Witch (The Hemoprophet)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/mosquito-witch-the-hemoprophet.json","li":"OGL"},{"n":"Mosquito Witch (The Legion Leech)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/mosquito-witch-the-legion-leech.json","li":"OGL"},{"n":"Mosquito Witch (The Swarm Seer)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/mosquito-witch-the-swarm-seer.json","li":"OGL"},{"n":"Moss Sloth","s":"rage-of-elements-bestiary","lv":2,"ac":18,"hp":40,"pc":8,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/moss-sloth.json","li":"OGL"},{"n":"Mother Mitera","s":"pathfinder-dark-archive","lv":8,"ac":25,"hp":140,"pc":18,"sz":"medium","tp":"","f":"pathfinder-dark-archive/npcs/mother-mitera.json","li":"ORC"},{"n":"Mother Venom","s":"agents-of-edgewatch-bestiary","lv":17,"ac":38,"hp":400,"pc":33,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/mother-venom.json","li":"OGL"},{"n":"Mountain Guardian","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":100,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/mountain-guardian.json","li":"ORC"},{"n":"Mountain Oni","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":165,"pc":17,"sz":"large","tp":"giant","f":"pathfinder-monster-core/mountain-oni.json","li":"ORC"},{"n":"Mountaineer","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":80,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/mountaineer.json","li":"ORC"},{"n":"Mpeshi","s":"strength-of-thousands-bestiary","lv":6,"ac":24,"hp":110,"pc":14,"sz":"large","tp":"beast","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/mpeshi.json","li":"OGL"},{"n":"Mpondo","s":"strength-of-thousands-bestiary","lv":15,"ac":37,"hp":285,"pc":26,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/mpondo.json","li":"OGL"},{"n":"Mr. Snips","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":210,"pc":23,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/mr-snips.json","li":"OGL"},{"n":"Muckish Creep","s":"fists-of-the-ruby-phoenix-bestiary","lv":8,"ac":27,"hp":160,"pc":18,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/muckish-creep.json","li":"OGL"},{"n":"Mud Spider","s":"age-of-ashes-bestiary","lv":6,"ac":21,"hp":135,"pc":14,"sz":"large","tp":"animal","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/mud-spider.json","li":"OGL"},{"n":"Mugrisant Qlippoth","s":"spore-war-bestiary","lv":15,"ac":37,"hp":245,"pc":27,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/mugrisant-qlippoth.json","li":"ORC"},{"n":"Mukradi","s":"pathfinder-monster-core","lv":15,"ac":37,"hp":300,"pc":24,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core/mukradi.json","li":"ORC"},{"n":"Mulventok","s":"abomination-vaults-bestiary","lv":7,"ac":24,"hp":115,"pc":15,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/mulventok.json","li":"OGL"},{"n":"Mumkuh","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":80,"pc":13,"sz":"medium","tp":"undead","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/mumkuh.json","li":"OGL"},{"n":"Mummified Cat","s":"book-of-the-dead-bestiary","lv":0,"ac":15,"hp":17,"pc":7,"sz":"tiny","tp":"undead","f":"book-of-the-dead-bestiary/mummified-cat.json","li":"OGL"},{"n":"Mummy Guardian","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":125,"pc":16,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/mummy-guardian.json","li":"ORC"},{"n":"Mummy Pharaoh","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":175,"pc":20,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/mummy-pharaoh.json","li":"ORC"},{"n":"Mummy Prophet Of Set","s":"book-of-the-dead-bestiary","lv":13,"ac":33,"hp":250,"pc":23,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/mummy-prophet-of-set.json","li":"OGL"},{"n":"Mummy Valet","s":"blood-lords-bestiary","lv":6,"ac":23,"hp":110,"pc":16,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/mummy-valet.json","li":"OGL"},{"n":"Munavri Spellblade","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/munavri-spellblade.json","li":"ORC"},{"n":"Munsahir","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":40,"pc":8,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/munsahir.json","li":"ORC"},{"n":"Munsahir Gatecrasher","s":"rage-of-elements-bestiary","lv":4,"ac":22,"hp":65,"pc":11,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/munsahir-gatecrasher.json","li":"OGL"},{"n":"Munsahir Trooper","s":"rage-of-elements-bestiary","lv":5,"ac":22,"hp":65,"pc":14,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/munsahir-trooper.json","li":"OGL"},{"n":"Murajau","s":"rage-of-elements-bestiary","lv":5,"ac":25,"hp":60,"pc":13,"sz":"large","tp":"humanoid","f":"rage-of-elements-bestiary/murajau.json","li":"OGL"},{"n":"Murder of Crows","s":"kingmaker-bestiary","lv":9,"ac":27,"hp":150,"pc":19,"sz":"large","tp":"animal","f":"kingmaker-bestiary/murder-of-crows.json","li":"OGL"},{"n":"Murmur","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":105,"pc":10,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/murmur.json","li":"OGL"},{"n":"Murschen","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":140,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/murschen.json","li":"OGL"},{"n":"Murshek","s":"triumph-of-the-tusk-bestiary","lv":6,"ac":23,"hp":105,"pc":17,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/murshek.json","li":"ORC"},{"n":"Muse Phantom","s":"extinction-curse-bestiary","lv":5,"ac":21,"hp":50,"pc":10,"sz":"medium","tp":"spirit","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/muse-phantom.json","li":"OGL"},{"n":"Musketeer","s":"pathfinder-npc-core","lv":3,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/musketeer.json","li":"ORC"},{"n":"Mutant Bat","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":22,"hp":75,"pc":16,"sz":"huge","tp":"animal","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/mutant-bat.json","li":"OGL"},{"n":"Mutant Desert Drake","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":28,"hp":150,"pc":17,"sz":"large","tp":"dragon","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/mutant-desert-drake.json","li":"OGL"},{"n":"Mutant Giant Toad","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":18,"hp":44,"pc":9,"sz":"large","tp":"animal","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/mutant-giant-toad.json","li":"OGL"},{"n":"Mutant Gnoll Hulk","s":"lost-omens-bestiary","lv":9,"ac":26,"hp":195,"pc":17,"sz":"large","tp":"humanoid","f":"lost-omens-bestiary/impossible-lands/mutant-gnoll-hulk.json","li":"OGL"},{"n":"Mutant Wolf","s":"fall-of-plaguestone","lv":3,"ac":19,"hp":45,"pc":9,"sz":"medium","tp":"animal","f":"fall-of-plaguestone/mutant-wolf.json","li":"OGL"},{"n":"Mutated Centaur","s":"myth-speaker-bestiary","lv":7,"ac":24,"hp":115,"pc":15,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-3-titanbane/mutated-centaur.json","li":"ORC"},{"n":"Mutated Sewer Ooze","s":"strength-of-thousands-bestiary","lv":6,"ac":16,"hp":45,"pc":10,"sz":"large","tp":"ooze","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/mutated-sewer-ooze.json","li":"OGL"},{"n":"Muurfeli","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":300,"pc":30,"sz":"large","tp":"elemental","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/muurfeli.json","li":"OGL"},{"n":"Myceloid","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":70,"pc":10,"sz":"medium","tp":"fungus","f":"pathfinder-monster-core-2/myceloid.json","li":"ORC"},{"n":"Myrna Rath","s":"agents-of-edgewatch-bestiary","lv":16,"ac":39,"hp":340,"pc":30,"sz":"medium","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/myrna-rath.json","li":"OGL"},{"n":"Myroga","s":"gatewalkers-bestiary","lv":6,"ac":24,"hp":120,"pc":17,"sz":"large","tp":"dragon","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/myroga.json","li":"ORC"},{"n":"Myrucarx","s":"agents-of-edgewatch-bestiary","lv":18,"ac":41,"hp":340,"pc":33,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/myrucarx.json","li":"OGL"},{"n":"Mythic Gogiteth","s":"war-of-immortals-bestiary","lv":12,"ac":31,"hp":250,"pc":21,"sz":"large","tp":"aberration","f":"war-of-immortals-bestiary/mythic-gogiteth.json","li":"ORC"},{"n":"Mythic Griffon","s":"war-of-immortals-bestiary","lv":4,"ac":21,"hp":60,"pc":13,"sz":"large","tp":"animal","f":"war-of-immortals-bestiary/mythic-griffon.json","li":"ORC"},{"n":"Mythic Hippogriff","s":"myth-speaker-bestiary","lv":2,"ac":18,"hp":32,"pc":8,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/mythic-hippogriff.json","li":"ORC"},{"n":"Mythic Lich","s":"war-of-immortals-bestiary","lv":12,"ac":31,"hp":190,"pc":20,"sz":"medium","tp":"undead","f":"war-of-immortals-bestiary/mythic-lich.json","li":"ORC"},{"n":"Mythic Ogre Boss","s":"war-of-immortals-bestiary","lv":7,"ac":25,"hp":130,"pc":12,"sz":"large","tp":"giant","f":"war-of-immortals-bestiary/mythic-ogre-boss.json","li":"ORC"},{"n":"Mythic Phoenix Flame","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":48,"pc":11,"sz":"medium","tp":"elemental","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/mythic-phoenix-flame.json","li":"ORC"},{"n":"Naari Pyrochemist","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":18,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/naari-pyrochemist.json","li":"ORC"},{"n":"Nagaji Soldier","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":28,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/nagaji-soldier.json","li":"ORC"},{"n":"Nai Yan Fei","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":44,"hp":375,"pc":36,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/nai-yan-fei.json","li":"OGL"},{"n":"Naiad","s":"pathfinder-monster-core","lv":1,"ac":14,"hp":20,"pc":6,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/naiad.json","li":"ORC"},{"n":"Naiad Queen","s":"pathfinder-monster-core","lv":7,"ac":26,"hp":100,"pc":18,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/naiad-queen.json","li":"ORC"},{"n":"Nairu","s":"strength-of-thousands-bestiary","lv":8,"ac":26,"hp":130,"pc":16,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/nairu.json","li":"OGL"},{"n":"Najra Lizard","s":"agents-of-edgewatch-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"tiny","tp":"dragon","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/najra-lizard.json","li":"OGL"},{"n":"Nakasha","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":26,"hp":135,"pc":11,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/nakasha.json","li":"ORC"},{"n":"Nalushae Meronis","s":"shades-of-blood-bestiary","lv":8,"ac":26,"hp":99,"pc":18,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-2-the-broken-palace/nalushae-meronis.json","li":"ORC"},{"n":"Nanoshard Swarm","s":"rage-of-elements-bestiary","lv":9,"ac":28,"hp":120,"pc":18,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/nanoshard-swarm.json","li":"OGL"},{"n":"Narlo Nyrell","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":26,"hp":136,"pc":16,"sz":"medium","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/narlo-nyrell.json","li":"OGL"},{"n":"Narlynark","s":"crown-of-the-kobold-king-bestiary","lv":5,"ac":22,"hp":75,"pc":13,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/narlynark.json","li":"OGL"},{"n":"Narrik","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":130,"pc":15,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/narrik.json","li":"ORC"},{"n":"Narseigus Wormcaller","s":"sky-kings-tomb-bestiary","lv":11,"ac":31,"hp":140,"pc":20,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/narseigus-wormcaller.json","li":"OGL"},{"n":"Nasurgeth","s":"pathfinder-monster-core-2","lv":20,"ac":45,"hp":510,"pc":36,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/nasurgeth.json","li":"ORC"},{"n":"Natbakh","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":34,"hp":320,"pc":25,"sz":"gargantuan","tp":"beast","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/natbakh.json","li":"ORC"},{"n":"Natural Scientist","s":"pathfinder-npc-core","lv":2,"ac":16,"hp":25,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/natural-scientist.json","li":"ORC"},{"n":"Naunet","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":120,"pc":14,"sz":"large","tp":"monitor","f":"pathfinder-monster-core-2/naunet.json","li":"ORC"},{"n":"Navigator","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/navigator.json","li":"ORC"},{"n":"Nayren Allurajix","s":"hellbreakers-bestiary","lv":10,"ac":28,"hp":175,"pc":18,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/nayren-allurajix.json","li":"ORC"},{"n":"Ndede","s":"stolen-fate-bestiary","lv":15,"ac":37,"hp":270,"pc":25,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/ndede.json","li":"OGL"},{"n":"Necrohulk Flailer","s":"blood-lords-bestiary","lv":13,"ac":32,"hp":295,"pc":23,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/necrohulk-flailer.json","li":"OGL"},{"n":"Necrohulk Smasher","s":"blood-lords-bestiary","lv":15,"ac":36,"hp":345,"pc":25,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/necrohulk-smasher.json","li":"OGL"},{"n":"Necrohusk","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":22,"hp":75,"pc":14,"sz":"medium","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/necrohusk.json","li":"OGL"},{"n":"Necromancer","s":"pathfinder-npc-core","lv":5,"ac":20,"hp":65,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/necromancer.json","li":"ORC"},{"n":"Necromancer Troop","s":"blood-lords-bestiary","lv":19,"ac":29,"hp":270,"pc":35,"sz":"gargantuan","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/necromancer-troop.json","li":"OGL"},{"n":"Necromunculus","s":"blood-lords-bestiary","lv":0,"ac":16,"hp":20,"pc":5,"sz":"tiny","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/necromunculus.json","li":"OGL"},{"n":"Nemesis","s":"curtain-call-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"large","tp":"","f":"curtain-call-bestiary/book-1-stage-fright/nemesis.json","li":"ORC"},{"n":"Nemmia Bramblecloak","s":"extinction-curse-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"small","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/nemmia-bramblecloak.json","li":"OGL"},{"n":"Nenchuuj","s":"agents-of-edgewatch-bestiary","lv":19,"ac":43,"hp":355,"pc":33,"sz":"medium","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/nenchuuj.json","li":"OGL"},{"n":"Neshkefru","s":"myth-speaker-bestiary","lv":8,"ac":27,"hp":135,"pc":18,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/neshkefru.json","li":"ORC"},{"n":"Nessari","s":"pathfinder-monster-core","lv":20,"ac":46,"hp":335,"pc":37,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/nessari.json","li":"ORC"},{"n":"Netherworld Sprigjack","s":"shades-of-blood-bestiary","lv":-1,"ac":15,"hp":10,"pc":5,"sz":"tiny","tp":"fey","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/netherworld-sprigjack.json","li":"ORC"},{"n":"Netherworld Vampire Bat Swarm","s":"shades-of-blood-bestiary","lv":1,"ac":15,"hp":11,"pc":10,"sz":"large","tp":"animal","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/netherworld-vampire-bat-swarm.json","li":"ORC"},{"n":"Ngara","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":215,"pc":22,"sz":"large","tp":"aberration","f":"kingmaker-bestiary/ngara.json","li":"OGL"},{"n":"Nhakazarin","s":"abomination-vaults-bestiary","lv":5,"ac":21,"hp":75,"pc":10,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/nhakazarin.json","li":"OGL"},{"n":"Nhimbaloth's Cutter","s":"abomination-vaults-bestiary","lv":8,"ac":26,"hp":135,"pc":14,"sz":"medium","tp":"construct","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/nhimbaloths-cutter.json","li":"OGL"},{"n":"Niallana","s":"curtain-call-bestiary","lv":15,"ac":36,"hp":275,"pc":26,"sz":"medium","tp":"undead","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/niallana.json","li":"ORC"},{"n":"Niesha","s":"prey-for-death-bestiary","lv":16,"ac":36,"hp":300,"pc":30,"sz":"medium","tp":"ooze","f":"prey-for-death-bestiary/niesha.json","li":"ORC"},{"n":"Nightgaunt","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/nightgaunt.json","li":"ORC"},{"n":"Nightmare","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":100,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core/nightmare.json","li":"ORC"},{"n":"Nightmare Rook","s":"kingmaker-bestiary","lv":20,"ac":46,"hp":380,"pc":38,"sz":"gargantuan","tp":"beast","f":"kingmaker-bestiary/nightmare-rook.json","li":"OGL"},{"n":"Nightwood Guardian","s":"rage-of-elements-bestiary","lv":9,"ac":26,"hp":200,"pc":17,"sz":"large","tp":"giant","f":"rage-of-elements-bestiary/nightwood-guardian.json","li":"OGL"},{"n":"Nihiris","s":"extinction-curse-bestiary","lv":17,"ac":39,"hp":250,"pc":32,"sz":"medium","tp":"spirit","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/nihiris.json","li":"OGL"},{"n":"Nilak","s":"kingmaker-bestiary","lv":9,"ac":26,"hp":160,"pc":19,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/nilak.json","li":"OGL"},{"n":"Nilith","s":"pathfinder-monster-core","lv":10,"ac":32,"hp":150,"pc":19,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/nilith.json","li":"ORC"},{"n":"Nils Kelveken","s":"malevolence-bestiary","lv":5,"ac":23,"hp":55,"pc":13,"sz":"medium","tp":"undead","f":"malevolence-bestiary/nils-kelveken.json","li":"OGL"},{"n":"Ninkonda","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":350,"pc":29,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/ninkonda.json","li":"ORC"},{"n":"Niodrhast","s":"kingmaker-bestiary","lv":19,"ac":43,"hp":445,"pc":33,"sz":"gargantuan","tp":"aberration","f":"kingmaker-bestiary/niodrhast.json","li":"OGL"},{"n":"Nishkiv the Knife","s":"kingmaker-bestiary","lv":1,"ac":16,"hp":20,"pc":5,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/nishkiv-the-knife.json","li":"OGL"},{"n":"Nixie","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":22,"pc":6,"sz":"small","tp":"fey","f":"pathfinder-monster-core-2/nixie.json","li":"ORC"},{"n":"Nizca Iricol","s":"shades-of-blood-bestiary","lv":11,"ac":29,"hp":170,"pc":24,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/nizca-iricol.json","li":"ORC"},{"n":"Nketiah","s":"age-of-ashes-bestiary","lv":6,"ac":23,"hp":74,"pc":12,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/nketiah.json","li":"OGL"},{"n":"Nkiruka","s":"strength-of-thousands-bestiary","lv":14,"ac":36,"hp":260,"pc":25,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/nkiruka.json","li":"OGL"},{"n":"Noble","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":50,"pc":11,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/noble.json","li":"ORC"},{"n":"Nolly Peltry","s":"age-of-ashes-bestiary","lv":11,"ac":31,"hp":185,"pc":21,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/nolly-peltry.json","li":"OGL"},{"n":"Nonsequitaur","s":"blog-bestiary","lv":3,"ac":20,"hp":40,"pc":9,"sz":"large","tp":"beast","f":"blog-bestiary/nonsequitaur.json","li":"OGL"},{"n":"Noolik","s":"the-enmity-cycle-bestiary","lv":4,"ac":21,"hp":58,"pc":11,"sz":"tiny","tp":"fey","f":"the-enmity-cycle-bestiary/noolik.json","li":"OGL"},{"n":"Noppera-bo Grunt","s":"season-of-ghosts-bestiary","lv":0,"ac":15,"hp":18,"pc":4,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/noppera-bo-grunt.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Arcane)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-arcane.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Divine)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-divine.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Martial)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-martial.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Occult)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-occult.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Primal)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-primal.json","li":"ORC"},{"n":"Noppera-Bo Impersonator (Skilled)","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":93,"pc":14,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/noppera-bo-impersonator-skilled.json","li":"ORC"},{"n":"Noppera-bo Occultist","s":"season-of-ghosts-bestiary","lv":2,"ac":17,"hp":30,"pc":8,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/noppera-bo-occultist.json","li":"ORC"},{"n":"Noppera-bo Trickster","s":"season-of-ghosts-bestiary","lv":1,"ac":16,"hp":20,"pc":5,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/noppera-bo-trickster.json","li":"ORC"},{"n":"Norgorberite Poisoner","s":"agents-of-edgewatch-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/norgorberite-poisoner.json","li":"OGL"},{"n":"Norgorberite Spy","s":"strength-of-thousands-bestiary","lv":10,"ac":29,"hp":170,"pc":18,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/norgorberite-spy.json","li":"OGL"},{"n":"Norn","s":"pathfinder-monster-core","lv":20,"ac":46,"hp":375,"pc":41,"sz":"large","tp":"fey","f":"pathfinder-monster-core/norn.json","li":"ORC"},{"n":"Nornhound","s":"stolen-fate-bestiary","lv":18,"ac":40,"hp":421,"pc":32,"sz":"gargantuan","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/nornhound.json","li":"OGL"},{"n":"Nosferatu Malefactor","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":135,"pc":19,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/nosferatu-malefactor.json","li":"ORC"},{"n":"Nosferatu Overlord","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":215,"pc":27,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/nosferatu-overlord.json","li":"ORC"},{"n":"Nosferatu Thrall","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/nosferatu-thrall.json","li":"ORC"},{"n":"Nosferotter","s":"blog-bestiary","lv":2,"ac":18,"hp":30,"pc":11,"sz":"medium","tp":"humanoid","f":"blog-bestiary/nosferotter.json","li":"OGL"},{"n":"Nosoi","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":18,"pc":6,"sz":"tiny","tp":"monitor","f":"pathfinder-monster-core/nosoi.json","li":"ORC"},{"n":"Novice Hellknight Armiger","s":"hellbreakers-bestiary","lv":1,"ac":15,"hp":20,"pc":7,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/novice-hellknight-armiger.json","li":"ORC"},{"n":"Novitiate of the Golden Erinys","s":"hellbreakers-bestiary","lv":1,"ac":15,"hp":20,"pc":9,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/novitiate-of-the-golden-erinys.json","li":"ORC"},{"n":"Nox","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/nox.json","li":"OGL"},{"n":"Noxious Needler","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":150,"pc":15,"sz":"large","tp":"construct","f":"pathfinder-monster-core/noxious-needler.json","li":"ORC"},{"n":"Ntavi","s":"kingmaker-bestiary","lv":6,"ac":23,"hp":105,"pc":13,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/ntavi.json","li":"OGL"},{"n":"Nualia","s":"seven-dooms-for-sandpoint-bestiary","lv":10,"ac":27,"hp":135,"pc":17,"sz":"medium","tp":"spirit","f":"seven-dooms-for-sandpoint-bestiary/nualia.json","li":"OGL"},{"n":"Nuckelavee","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":190,"pc":16,"sz":"large","tp":"fey","f":"pathfinder-monster-core/nuckelavee.json","li":"ORC"},{"n":"Nucol","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":75,"pc":11,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/nucol.json","li":"ORC"},{"n":"Nue","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":200,"pc":21,"sz":"large","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/nue.json","li":"ORC"},{"n":"Nugrah","s":"kingmaker-bestiary","lv":5,"ac":17,"hp":75,"pc":14,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/nugrah.json","li":"OGL"},{"n":"Numerian Adamantine Golem","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":255,"pc":26,"sz":"huge","tp":"construct","f":"kingmaker-bestiary/numerian-adamantine-golem.json","li":"OGL"},{"n":"Numerian Guthallah","s":"kingmaker-bestiary","lv":19,"ac":43,"hp":325,"pc":30,"sz":"gargantuan","tp":"construct","f":"kingmaker-bestiary/numerian-guthallah.json","li":"OGL"},{"n":"Numerian Radiant Warden","s":"kingmaker-bestiary","lv":17,"ac":40,"hp":300,"pc":30,"sz":"gargantuan","tp":"construct","f":"kingmaker-bestiary/numerian-radiant-warden.json","li":"OGL"},{"n":"Nursery Crawler","s":"rage-of-elements-bestiary","lv":3,"ac":18,"hp":48,"pc":9,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/nursery-crawler.json","li":"OGL"},{"n":"Nwanyian Archer","s":"blood-lords-bestiary","lv":7,"ac":25,"hp":115,"pc":17,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/nwanyian-archer.json","li":"OGL"},{"n":"Nwanyian Defender","s":"blood-lords-bestiary","lv":5,"ac":22,"hp":80,"pc":12,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/nwanyian-defender.json","li":"OGL"},{"n":"Nyamat Mshwe","s":"the-slithering-bestiary","lv":6,"ac":23,"hp":90,"pc":16,"sz":"medium","tp":"humanoid","f":"the-slithering-bestiary/nyamat-mshwe.json","li":"OGL"},{"n":"Nyctessa","s":"npc-gallery","lv":5,"ac":19,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"npc-gallery/nyctessa.json","li":"OGL"},{"n":"Nydazuul","s":"blood-lords-bestiary","lv":11,"ac":31,"hp":180,"pc":20,"sz":"huge","tp":"fiend","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/nydazuul.json","li":"OGL"},{"n":"Nymolus","s":"pathfinder-monster-core-2","lv":10,"ac":28,"hp":190,"pc":22,"sz":"large","tp":"aberration","f":"pathfinder-monster-core-2/nymolus.json","li":"ORC"},{"n":"Nyrissa","s":"kingmaker-bestiary","lv":23,"ac":49,"hp":495,"pc":41,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/nyrissa.json","li":"OGL"},{"n":"Nyzuros","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/nyzuros.json","li":"OGL"},{"n":"Oaksteward Enforcer","s":"gatewalkers-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-1-the-seventh-arch/oaksteward-enforcer.json","li":"ORC"},{"n":"Oaksteward Enforcer (Gatehouse)","s":"gatewalkers-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-1-the-seventh-arch/oaksteward-enforcer-gatehouse.json","li":"ORC"},{"n":"Oath Archdragon","s":"lost-omens-bestiary","lv":22,"ac":50,"hp":400,"pc":43,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-archdragon.json","li":"ORC"},{"n":"Oath Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":50,"hp":400,"pc":43,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-archdragon-spellcaster.json","li":"ORC"},{"n":"Oath Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":255,"pc":28,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Oath Dragon (Adult)","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":255,"pc":28,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-adult.json","li":"ORC"},{"n":"Oath Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":375,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Oath Dragon (Ancient)","s":"lost-omens-bestiary","lv":19,"ac":43,"hp":375,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-ancient.json","li":"ORC"},{"n":"Oath Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":175,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-young-spellcaster.json","li":"ORC"},{"n":"Oath Dragon (Young)","s":"lost-omens-bestiary","lv":10,"ac":30,"hp":175,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/oath/oath-dragon-young.json","li":"ORC"},{"n":"Obcisidaemon","s":"pathfinder-monster-core-2","lv":19,"ac":43,"hp":425,"pc":35,"sz":"gargantuan","tp":"fiend","f":"pathfinder-monster-core-2/obcisidaemon.json","li":"ORC"},{"n":"Obrousian","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":250,"pc":26,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/obrousian.json","li":"OGL"},{"n":"Obrousian","s":"book-of-the-dead-bestiary","lv":14,"ac":36,"hp":250,"pc":26,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/obrousian.json","li":"OGL"},{"n":"Observation Deck Seugathi Researcher","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":75,"pc":14,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/observation-deck-seugathi-researcher.json","li":"OGL"},{"n":"Obsessive Researcher","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":7,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/obsessive-researcher.json","li":"ORC"},{"n":"Obsidian Golem","s":"extinction-curse-bestiary","lv":16,"ac":40,"hp":230,"pc":28,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/obsidian-golem.json","li":"OGL"},{"n":"Ocean Nomad","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":100,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/ocean-nomad.json","li":"ORC"},{"n":"Oceanius and Glory Arcely","s":"claws-of-the-tyrant-bestiary","lv":18,"ac":42,"hp":360,"pc":32,"sz":"large","tp":"celestial","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/oceanius-and-glory-arcely.json","li":"ORC"},{"n":"Ockomlire","s":"curtain-call-bestiary","lv":13,"ac":33,"hp":235,"pc":23,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-1-stage-fright/ockomlire.json","li":"ORC"},{"n":"Ocluai","s":"gatewalkers-bestiary","lv":3,"ac":18,"hp":55,"pc":12,"sz":"medium","tp":"fey","f":"gatewalkers-bestiary/book-1-the-seventh-arch/ocluai.json","li":"ORC"},{"n":"Odvolos","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/odvolos.json","li":"ORC"},{"n":"Ofalth","s":"pathfinder-monster-core","lv":10,"ac":31,"hp":170,"pc":18,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/ofalth.json","li":"ORC"},{"n":"Ofalth Stampede","s":"battlecry-bestiary","lv":15,"ac":36,"hp":270,"pc":26,"sz":"gargantuan","tp":"aberration","f":"battlecry-bestiary/ofalth-stampede.json","li":"ORC"},{"n":"Ofalth Zombie","s":"agents-of-edgewatch-bestiary","lv":7,"ac":22,"hp":190,"pc":15,"sz":"large","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/ofalth-zombie.json","li":"OGL"},{"n":"Ogenni","s":"shades-of-blood-bestiary","lv":7,"ac":25,"hp":130,"pc":12,"sz":"large","tp":"giant","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/ogenni.json","li":"ORC"},{"n":"Ogmunzorius","s":"gatewalkers-bestiary","lv":11,"ac":28,"hp":145,"pc":21,"sz":"large","tp":"dream","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/ogmunzorius.json","li":"ORC"},{"n":"Ogre Boss","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":130,"pc":12,"sz":"large","tp":"giant","f":"pathfinder-monster-core/ogre-boss.json","li":"ORC"},{"n":"Ogre Bully","s":"wardens-of-wildwood-bestiary","lv":7,"ac":24,"hp":140,"pc":12,"sz":"large","tp":"giant","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/ogre-bully.json","li":"ORC"},{"n":"Ogre Glutton","s":"pathfinder-monster-core","lv":4,"ac":18,"hp":70,"pc":6,"sz":"large","tp":"giant","f":"pathfinder-monster-core/ogre-glutton.json","li":"ORC"},{"n":"Ogre Hurler","s":"blog-bestiary","lv":4,"ac":19,"hp":65,"pc":10,"sz":"large","tp":"giant","f":"blog-bestiary/ogre-hurler.json","li":"OGL"},{"n":"Ogre Slug","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":18,"hp":70,"pc":6,"sz":"large","tp":"giant","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/ogre-slug.json","li":"OGL"},{"n":"Ogre Spider","s":"pathfinder-monster-core-2","lv":5,"ac":22,"hp":70,"pc":13,"sz":"huge","tp":"animal","f":"pathfinder-monster-core-2/ogre-spider.json","li":"ORC"},{"n":"Ogre Warrior","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":50,"pc":5,"sz":"large","tp":"giant","f":"pathfinder-monster-core/ogre-warrior.json","li":"ORC"},{"n":"Ogre Warrior (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":17,"hp":50,"pc":5,"sz":"large","tp":"giant","f":"menace-under-otari-bestiary/ogre-warrior-bb.json","li":"ORC"},{"n":"Ohancanu","s":"wardens-of-wildwood-bestiary","lv":5,"ac":21,"hp":80,"pc":12,"sz":"large","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/ohancanu.json","li":"ORC"},{"n":"Okenevem","s":"pathfinder-monster-core-2","lv":15,"ac":35,"hp":250,"pc":29,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/okenevem.json","li":"ORC"},{"n":"Okoa","s":"shades-of-blood-bestiary","lv":9,"ac":28,"hp":120,"pc":16,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/okoa.json","li":"ORC"},{"n":"Olansa Terimor","s":"agents-of-edgewatch-bestiary","lv":23,"ac":48,"hp":500,"pc":43,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/olansa-terimor.json","li":"OGL"},{"n":"Old Crackjaw","s":"kingmaker-bestiary","lv":5,"ac":23,"hp":78,"pc":11,"sz":"medium","tp":"animal","f":"kingmaker-bestiary/old-crackjaw.json","li":"OGL"},{"n":"Old Herok","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":30,"hp":170,"pc":21,"sz":"huge","tp":"beast","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/old-herok.json","li":"ORC"},{"n":"Old Man Statue","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":160,"pc":24,"sz":"huge","tp":"construct","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/old-man-statue.json","li":"OGL"},{"n":"Old Marrow","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":27,"hp":175,"pc":21,"sz":"large","tp":"beast","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/old-marrow.json","li":"ORC"},{"n":"Old Thornbarker","s":"wardens-of-wildwood-bestiary","lv":12,"ac":33,"hp":230,"pc":25,"sz":"huge","tp":"plant","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/old-thornbarker.json","li":"ORC"},{"n":"Old Thrasher","s":"strength-of-thousands-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"large","tp":"animal","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/old-thrasher.json","li":"OGL"},{"n":"Oleg","s":"kingmaker-bestiary","lv":1,"ac":12,"hp":26,"pc":6,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/oleg.json","li":"OGL"},{"n":"Oliphaunt of Jandelay","s":"war-of-immortals-bestiary","lv":25,"ac":48,"hp":680,"pc":39,"sz":"gargantuan","tp":"monitor","f":"war-of-immortals-bestiary/oliphaunt-of-jandelay.json","li":"ORC"},{"n":"Olobigonde","s":"rage-of-elements-bestiary","lv":2,"ac":17,"hp":38,"pc":7,"sz":"large","tp":"animal","f":"rage-of-elements-bestiary/olobigonde.json","li":"OGL"},{"n":"Omblin Leadbuster","s":"troubles-in-otari-bestiary","lv":2,"ac":18,"hp":30,"pc":12,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/omblin-leadbuster.json","li":"OGL"},{"n":"Omelia","s":"claws-of-the-tyrant-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/1-gravelands-survivors/omelia.json","li":"ORC"},{"n":"Omen Archdragon","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":360,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/omen/omen-archdragon.json","li":"ORC"},{"n":"Omen Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":360,"pc":35,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/omen/omen-archdragon-spellcaster.json","li":"ORC"},{"n":"Omen Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":185,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Omen Dragon (Adult)","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":185,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-adult.json","li":"ORC"},{"n":"Omen Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core","lv":16,"ac":38,"hp":280,"pc":29,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Omen Dragon (Ancient)","s":"pathfinder-monster-core","lv":16,"ac":38,"hp":280,"pc":29,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-ancient.json","li":"ORC"},{"n":"Omen Dragon (Young, Spellcaster)","s":"pathfinder-monster-core","lv":7,"ac":24,"hp":100,"pc":15,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-young-spellcaster.json","li":"ORC"},{"n":"Omen Dragon (Young)","s":"pathfinder-monster-core","lv":7,"ac":24,"hp":100,"pc":15,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/omen-dragon-young.json","li":"ORC"},{"n":"Omorphos","s":"myth-speaker-bestiary","lv":8,"ac":27,"hp":140,"pc":21,"sz":"huge","tp":"beast","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/omorphos.json","li":"ORC"},{"n":"Omox","s":"pathfinder-monster-core","lv":12,"ac":25,"hp":395,"pc":22,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/omox.json","li":"ORC"},{"n":"Omox Slime Pool","s":"battlecry-bestiary","lv":17,"ac":39,"hp":315,"pc":29,"sz":"gargantuan","tp":"fiend","f":"battlecry-bestiary/omox-slime-pool.json","li":"ORC"},{"n":"Onak","s":"shades-of-blood-bestiary","lv":3,"ac":19,"hp":45,"pc":6,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/onak.json","li":"ORC"},{"n":"One Eye Phantom","s":"triumph-of-the-tusk-bestiary","lv":6,"ac":24,"hp":70,"pc":13,"sz":"medium","tp":"ethereal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/one-eye-phantom.json","li":"ORC"},{"n":"Onryo","s":"book-of-the-dead-bestiary","lv":12,"ac":32,"hp":180,"pc":21,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/onryo.json","li":"OGL"},{"n":"Onturat","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":44,"hp":335,"pc":34,"sz":"huge","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/onturat.json","li":"ORC"},{"n":"Onyiji","s":"strength-of-thousands-bestiary","lv":8,"ac":26,"hp":140,"pc":15,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/onyiji.json","li":"OGL"},{"n":"Operatic Emissary","s":"curtain-call-bestiary","lv":14,"ac":36,"hp":285,"pc":26,"sz":"medium","tp":"celestial","f":"curtain-call-bestiary/book-3-bring-the-house-down/operatic-emissary.json","li":"ORC"},{"n":"Operatic Stone Bulwark","s":"curtain-call-bestiary","lv":11,"ac":30,"hp":175,"pc":17,"sz":"medium","tp":"construct","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/operatic-stone-bulwark.json","li":"ORC"},{"n":"Opkherab","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":50,"pc":10,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/opkherab.json","li":"OGL"},{"n":"Oppali","s":"stolen-fate-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"plant","f":"stolen-fate-bestiary/book-1-the-choosing/oppali.json","li":"OGL"},{"n":"Oprak Firestorm Battalion","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/oprak-firestorm-battalion.json","li":"ORC"},{"n":"Oracle of Zagresh","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":28,"hp":172,"pc":19,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/oracle-of-zagresh.json","li":"ORC"},{"n":"Orc Agriculturist","s":"pathfinder-npc-core","lv":1,"ac":14,"hp":25,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/orc/orc-agriculturist.json","li":"ORC"},{"n":"Orc Alchemist","s":"fall-of-plaguestone","lv":2,"ac":17,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/orc-alchemist.json","li":"OGL"},{"n":"Orc Child","s":"triumph-of-the-tusk-bestiary","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"small","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/orc-child.json","li":"ORC"},{"n":"Orc Commander","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":32,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/orc-commander.json","li":"ORC"},{"n":"Orc Commander","s":"troubles-in-otari-bestiary","lv":2,"ac":19,"hp":32,"pc":11,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/orc-commander.json","li":"OGL"},{"n":"Orc Commander (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":19,"hp":32,"pc":8,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/orc-commander-bb.json","li":"ORC"},{"n":"Orc Doomsayer","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":21,"hp":78,"pc":14,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/orc-doomsayer.json","li":"ORC"},{"n":"Orc Gamekeeper","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":65,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/orc/orc-gamekeeper.json","li":"ORC"},{"n":"Orc Hunter","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":29,"hp":155,"pc":19,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/orc-hunter.json","li":"ORC"},{"n":"Orc Raider","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":26,"hp":165,"pc":14,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/orc-raider.json","li":"ORC"},{"n":"Orc Raiding Party","s":"battlecry-bestiary","lv":5,"ac":21,"hp":75,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/orc-raiding-party.json","li":"ORC"},{"n":"Orc Rampager","s":"triumph-of-the-tusk-bestiary","lv":4,"ac":19,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/orc-rampager.json","li":"ORC"},{"n":"Orc Scrapper","s":"pathfinder-monster-core","lv":0,"ac":14,"hp":18,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/orc-scrapper.json","li":"ORC"},{"n":"Orc Scrapper","s":"troubles-in-otari-bestiary","lv":1,"ac":18,"hp":23,"pc":6,"sz":"medium","tp":"humanoid","f":"troubles-in-otari-bestiary/orc-scrapper.json","li":"OGL"},{"n":"Orc Scrapper (BB)","s":"menace-under-otari-bestiary","lv":0,"ac":14,"hp":18,"pc":5,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/orc-scrapper-bb.json","li":"ORC"},{"n":"Orc Skullcrushers","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/orc/orc-skullcrushers.json","li":"ORC"},{"n":"Orc Spinecracker","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":23,"hp":130,"pc":12,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/orc-spinecracker.json","li":"ORC"},{"n":"Orc Vagabond","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":18,"hp":48,"pc":9,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/orc-vagabond.json","li":"ORC"},{"n":"Orc Veteran","s":"pathfinder-monster-core","lv":1,"ac":18,"hp":23,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/orc-veteran.json","li":"ORC"},{"n":"Orc Veteran (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":18,"hp":23,"pc":6,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/orc-veteran-bb.json","li":"ORC"},{"n":"Orc Veteran Master","s":"pathfinder-npc-core","lv":10,"ac":30,"hp":175,"pc":20,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/orc/orc-veteran-master.json","li":"ORC"},{"n":"Orca","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":75,"pc":12,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/orca.json","li":"ORC"},{"n":"Orchid Mantis Swarm","s":"lost-omens-bestiary","lv":6,"ac":24,"hp":100,"pc":12,"sz":"large","tp":"animal","f":"lost-omens-bestiary/tian-xia-world-guide/orchid-mantis-swarm.json","li":"ORC"},{"n":"Ordulf Bladecaller","s":"prey-for-death-bestiary","lv":16,"ac":38,"hp":300,"pc":28,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/ordulf-bladecaller.json","li":"ORC"},{"n":"Ordwi","s":"rusthenge-bestiary","lv":2,"ac":12,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/ordwi.json","li":"OGL"},{"n":"Ore Louse","s":"rage-of-elements-bestiary","lv":5,"ac":22,"hp":60,"pc":14,"sz":"medium","tp":"beast","f":"rage-of-elements-bestiary/ore-louse.json","li":"OGL"},{"n":"Oread Guard","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":16,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/oread-guard.json","li":"ORC"},{"n":"Oregorger","s":"rage-of-elements-bestiary","lv":11,"ac":30,"hp":245,"pc":18,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/oregorger.json","li":"OGL"},{"n":"Oriole","s":"curtain-call-bestiary","lv":14,"ac":35,"hp":255,"pc":21,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/oriole.json","li":"ORC"},{"n":"Orochi","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":400,"pc":33,"sz":"gargantuan","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/orochi.json","li":"OGL"},{"n":"Ort","s":"pathfinder-monster-core","lv":0,"ac":13,"hp":20,"pc":0,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/ort.json","li":"ORC"},{"n":"Ort Mob","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":75,"pc":9,"sz":"gargantuan","tp":"fiend","f":"lost-omens-bestiary/hellfire-dispatches/ort-mob.json","li":"ORC"},{"n":"Ossuary Warden","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":42,"hp":265,"pc":32,"sz":"huge","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/ossuary-warden.json","li":"ORC"},{"n":"Ostiarius","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":65,"pc":15,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/ostiarius.json","li":"ORC"},{"n":"Ostovite","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":30,"pc":4,"sz":"tiny","tp":"fiend","f":"pathfinder-monster-core-2/ostovite.json","li":"ORC"},{"n":"Otari Ilvashti","s":"abomination-vaults-bestiary","lv":9,"ac":25,"hp":120,"pc":18,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/otari-ilvashti.json","li":"OGL"},{"n":"Otehika Cinder Eater","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":27,"hp":150,"pc":16,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/otehika-cinder-eater.json","li":"ORC"},{"n":"Otis","s":"wardens-of-wildwood-bestiary","lv":5,"ac":20,"hp":125,"pc":11,"sz":"large","tp":"giant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/otis.json","li":"ORC"},{"n":"Overdrive Imentesh","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"monitor","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/overdrive-imentesh.json","li":"OGL"},{"n":"Overgrown Viper Vine","s":"kingmaker-bestiary","lv":14,"ac":35,"hp":290,"pc":24,"sz":"large","tp":"plant","f":"kingmaker-bestiary/overgrown-viper-vine.json","li":"OGL"},{"n":"Oversized Chimera","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":220,"pc":23,"sz":"large","tp":"beast","f":"kingmaker-bestiary/oversized-chimera.json","li":"OGL"},{"n":"Ovinnik","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":60,"pc":14,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core-2/ovinnik.json","li":"ORC"},{"n":"Owb","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":13,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/owb.json","li":"ORC"},{"n":"Owb Prophet","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":225,"pc":24,"sz":"large","tp":"","f":"pathfinder-monster-core-2/owb-prophet.json","li":"ORC"},{"n":"Owlbear (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":21,"hp":70,"pc":13,"sz":"large","tp":"animal","f":"menace-under-otari-bestiary/owlbear-bb.json","li":"OGL"},{"n":"Ozthoom","s":"pathfinder-monster-core-2","lv":14,"ac":35,"hp":280,"pc":25,"sz":"large","tp":"fey","f":"pathfinder-monster-core-2/ozthoom.json","li":"ORC"},{"n":"Ozthoom Shadow Double","s":"pathfinder-monster-core-2","lv":14,"ac":35,"hp":85,"pc":25,"sz":"large","tp":"fey","f":"pathfinder-monster-core-2/ozthoom-shadow-double.json","li":"ORC"},{"n":"Pachycephalosaurus","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":65,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/pachycephalosaurus.json","li":"ORC"},{"n":"Pack Leader","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":55,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/pack-leader.json","li":"ORC"},{"n":"Padli","s":"abomination-vaults-bestiary","lv":9,"ac":26,"hp":160,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/padli.json","li":"OGL"},{"n":"Paga Nikohian","s":"the-slithering-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"small","tp":"humanoid","f":"the-slithering-bestiary/paga-nikohian.json","li":"OGL"},{"n":"Pageant Troupe","s":"night-of-the-gray-death-bestiary","lv":14,"ac":29,"hp":260,"pc":24,"sz":"gargantuan","tp":"construct","f":"night-of-the-gray-death-bestiary/pageant-troupe.json","li":"OGL"},{"n":"Pagulin","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":120,"pc":14,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/highhelm/pagulin.json","li":"OGL"},{"n":"Painted Griffon","s":"myth-speaker-bestiary","lv":5,"ac":23,"hp":60,"pc":14,"sz":"large","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-griffon.json","li":"ORC"},{"n":"Painted Landscape","s":"myth-speaker-bestiary","lv":10,"ac":30,"hp":155,"pc":19,"sz":"gargantuan","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-landscape.json","li":"ORC"},{"n":"Painted Pontifex","s":"myth-speaker-bestiary","lv":9,"ac":28,"hp":138,"pc":18,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-pontifex.json","li":"ORC"},{"n":"Painted Ram","s":"myth-speaker-bestiary","lv":8,"ac":27,"hp":120,"pc":17,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-ram.json","li":"ORC"},{"n":"Painted Soldier","s":"myth-speaker-bestiary","lv":7,"ac":25,"hp":95,"pc":13,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-soldier.json","li":"ORC"},{"n":"Painted Soldier (Ominous Graffiti)","s":"myth-speaker-bestiary","lv":7,"ac":25,"hp":95,"pc":13,"sz":"medium","tp":"construct","f":"myth-speaker-bestiary/book-3-titanbane/painted-soldier-ominous-graffiti.json","li":"ORC"},{"n":"Painted Stag","s":"rage-of-elements-bestiary","lv":9,"ac":27,"hp":175,"pc":21,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/painted-stag.json","li":"OGL"},{"n":"Pairaka","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":105,"pc":15,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/pairaka.json","li":"ORC"},{"n":"Pairaka (One-Shot #4)","s":"one-shot-bestiary","lv":7,"ac":24,"hp":105,"pc":15,"sz":"medium","tp":"fiend","f":"one-shot-bestiary/mark-of-the-mantis/pairaka-one-shot-4.json","li":"OGL"},{"n":"Pakalchi","s":"pathfinder-monster-core-2","lv":9,"ac":26,"hp":150,"pc":18,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/pakalchi.json","li":"ORC"},{"n":"Pakano","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":20,"hp":70,"pc":11,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/pakano.json","li":"OGL"},{"n":"Pakano (Level 12)","s":"quest-for-the-frozen-flame-bestiary","lv":12,"ac":33,"hp":225,"pc":22,"sz":"huge","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/pakano-level-12.json","li":"OGL"},{"n":"Palace Guard","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/palace-guard.json","li":"ORC"},{"n":"Pale Horse","s":"howl-of-the-wild-bestiary","lv":11,"ac":30,"hp":180,"pc":21,"sz":"large","tp":"undead","f":"howl-of-the-wild-bestiary/pale-horse.json","li":"ORC"},{"n":"Pale Sovereign","s":"book-of-the-dead-bestiary","lv":16,"ac":36,"hp":298,"pc":28,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/pale-sovereign.json","li":"OGL"},{"n":"Pale Stranger","s":"book-of-the-dead-bestiary","lv":10,"ac":29,"hp":155,"pc":19,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/pale-stranger.json","li":"OGL"},{"n":"Paleohemoth","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":195,"pc":20,"sz":"huge","tp":"construct","f":"pathfinder-monster-core/paleohemoth.json","li":"ORC"},{"n":"Palpares","s":"triumph-of-the-tusk-bestiary","lv":11,"ac":31,"hp":195,"pc":19,"sz":"gargantuan","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/palpares.json","li":"ORC"},{"n":"Palzu","s":"outlaws-of-alkenstar-bestiary","lv":8,"ac":25,"hp":135,"pc":17,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/palzu.json","li":"OGL"},{"n":"Parsus","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":29,"hp":160,"pc":20,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/parsus.json","li":"OGL"},{"n":"Paskis Nine-Knives","s":"triumph-of-the-tusk-bestiary","lv":11,"ac":31,"hp":195,"pc":23,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/paskis-nine-knives.json","li":"ORC"},{"n":"Path Maiden","s":"season-of-ghosts-bestiary","lv":12,"ac":31,"hp":160,"pc":22,"sz":"medium","tp":"spirit","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/path-maiden.json","li":"ORC"},{"n":"Path Maiden (Spring's Path)","s":"season-of-ghosts-bestiary","lv":12,"ac":31,"hp":160,"pc":22,"sz":"medium","tp":"spirit","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/path-maiden-springs-path.json","li":"ORC"},{"n":"Pathfinder Field Agent","s":"lost-omens-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/pathfinder-field-agent.json","li":"OGL"},{"n":"Pathfinder Venture-Captain","s":"lost-omens-bestiary","lv":11,"ac":32,"hp":195,"pc":20,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/pathfinder-venture-captain.json","li":"OGL"},{"n":"Pavetta Stroon-Drelev","s":"kingmaker-bestiary","lv":9,"ac":25,"hp":150,"pc":19,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/pavetta-stroon-drelev.json","li":"OGL"},{"n":"Peacock Phoenix","s":"revenge-of-the-runelords-bestiary","lv":17,"ac":39,"hp":240,"pc":31,"sz":"gargantuan","tp":"spirit","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/peacock-phoenix.json","li":"ORC"},{"n":"Pearl Dragonet","s":"lost-omens-bestiary","lv":1,"ac":16,"hp":17,"pc":9,"sz":"tiny","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/dragonet/pearl-dragonet.json","li":"ORC"},{"n":"Peerless Duelist","s":"pathfinder-npc-core","lv":12,"ac":33,"hp":200,"pc":24,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/peerless-duelist.json","li":"ORC"},{"n":"Peerless Healer","s":"pathfinder-npc-core","lv":15,"ac":35,"hp":200,"pc":25,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/peerless-healer.json","li":"ORC"},{"n":"Pegasus","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":55,"pc":12,"sz":"large","tp":"beast","f":"pathfinder-monster-core/pegasus.json","li":"ORC"},{"n":"Pelegox Cube","s":"rage-of-elements-bestiary","lv":11,"ac":31,"hp":210,"pc":22,"sz":"gargantuan","tp":"elemental","f":"rage-of-elements-bestiary/pelegox-cube.json","li":"OGL"},{"n":"Pelmo","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":16,"hp":6,"pc":2,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/pelmo.json","li":"OGL"},{"n":"Penanggalan","s":"pathfinder-monster-core-2","lv":5,"ac":22,"hp":85,"pc":11,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/penanggalan.json","li":"ORC"},{"n":"Pendidia","s":"myth-speaker-bestiary","lv":10,"ac":30,"hp":175,"pc":20,"sz":"medium","tp":"fey","f":"myth-speaker-bestiary/book-3-titanbane/pendidia.json","li":"ORC"},{"n":"Peng","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":200,"pc":25,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/peng.json","li":"ORC"},{"n":"Penitent of Calistria","s":"pathfinder-npc-core","lv":0,"ac":15,"hp":18,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/penitent-of-calistria.json","li":"ORC"},{"n":"Penqual","s":"agents-of-edgewatch-bestiary","lv":15,"ac":37,"hp":205,"pc":27,"sz":"huge","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/penqual.json","li":"OGL"},{"n":"Pesgahi the Poisoner","s":"blood-lords-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/pesgahi-the-poisoner.json","li":"OGL"},{"n":"Pest Drake Swarm","s":"lost-omens-bestiary","lv":9,"ac":27,"hp":120,"pc":19,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/dragonet/pest-drake-swarm.json","li":"ORC"},{"n":"Phade","s":"pathfinder-monster-core","lv":7,"ac":26,"hp":70,"pc":16,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core/phade.json","li":"ORC"},{"n":"Phalanx Formation","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":99,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/military/phalanx-formation.json","li":"ORC"},{"n":"Phalanx of Phalanges","s":"blood-lords-bestiary","lv":1,"ac":15,"hp":16,"pc":5,"sz":"large","tp":"construct","f":"blood-lords-bestiary/book-1-zombie-feast/phalanx-of-phalanges.json","li":"OGL"},{"n":"Phantasmal Protagonist","s":"kingmaker-bestiary","lv":4,"ac":10,"hp":0,"pc":0,"sz":"medium","tp":"","f":"kingmaker-bestiary/phantasmal-protagonist.json","li":"OGL"},{"n":"Phantom Beast","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":120,"pc":18,"sz":"medium","tp":"ethereal","f":"pathfinder-monster-core/phantom-beast.json","li":"ORC"},{"n":"Phantom Boar","s":"season-of-ghosts-bestiary","lv":2,"ac":18,"hp":22,"pc":8,"sz":"medium","tp":"ethereal","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/phantom-boar.json","li":"ORC"},{"n":"Phantom Gecko","s":"season-of-ghosts-bestiary","lv":1,"ac":15,"hp":15,"pc":5,"sz":"medium","tp":"ethereal","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/phantom-gecko.json","li":"ORC"},{"n":"Phantom Knight","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":45,"pc":13,"sz":"medium","tp":"ethereal","f":"pathfinder-monster-core/phantom-knight.json","li":"ORC"},{"n":"Phantom of Desire","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":335,"pc":32,"sz":"medium","tp":"","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/phantom-of-desire.json","li":"ORC"},{"n":"Phantom Raven","s":"season-of-ghosts-bestiary","lv":-1,"ac":15,"hp":6,"pc":5,"sz":"tiny","tp":"ethereal","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/phantom-raven.json","li":"ORC"},{"n":"Phantom Wolf","s":"season-of-ghosts-bestiary","lv":1,"ac":15,"hp":14,"pc":7,"sz":"medium","tp":"ethereal","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/phantom-wolf.json","li":"ORC"},{"n":"Phase Archdragon","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":300,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/phase/phase-archdragon.json","li":"ORC"},{"n":"Phase Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":47,"hp":300,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/phase/phase-archdragon-spellcaster.json","li":"ORC"},{"n":"Phase Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":180,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Phase Dragon (Adult)","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":180,"pc":25,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-adult.json","li":"ORC"},{"n":"Phase Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":18,"ac":41,"hp":250,"pc":32,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Phase Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":18,"ac":41,"hp":250,"pc":32,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-ancient.json","li":"ORC"},{"n":"Phase Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":120,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-young-spellcaster.json","li":"ORC"},{"n":"Phase Dragon (Young)","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":120,"pc":20,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/phase-dragon-young.json","li":"ORC"},{"n":"Phasmadaemon","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":340,"pc":29,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/phasmadaemon.json","li":"ORC"},{"n":"Phermeina","s":"myth-speaker-bestiary","lv":1,"ac":16,"hp":19,"pc":4,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/phermeina.json","li":"ORC"},{"n":"Phistophilus","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":150,"pc":21,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/phistophilus.json","li":"ORC"},{"n":"Phoebe Demetrias","s":"hellbreakers-bestiary","lv":7,"ac":25,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/phoebe-demetrias.json","li":"ORC"},{"n":"Phoenix","s":"pathfinder-monster-core","lv":15,"ac":36,"hp":300,"pc":27,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core/phoenix.json","li":"ORC"},{"n":"Pholebis","s":"gatewalkers-bestiary","lv":7,"ac":26,"hp":100,"pc":18,"sz":"medium","tp":"fey","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/pholebis.json","li":"ORC"},{"n":"Phomandala","s":"kingmaker-bestiary","lv":19,"ac":45,"hp":300,"pc":32,"sz":"medium","tp":"dragon","f":"kingmaker-bestiary/phomandala.json","li":"OGL"},{"n":"Physician","s":"pathfinder-npc-core","lv":-1,"ac":13,"hp":8,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/physician.json","li":"ORC"},{"n":"Phytohydra","s":"wardens-of-wildwood-bestiary","lv":12,"ac":32,"hp":180,"pc":25,"sz":"huge","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/phytohydra.json","li":"ORC"},{"n":"Phytomancer Ghost","s":"wardens-of-wildwood-bestiary","lv":13,"ac":33,"hp":180,"pc":23,"sz":"medium","tp":"spirit","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/phytomancer-ghost.json","li":"ORC"},{"n":"Pickled Punk","s":"agents-of-edgewatch-bestiary","lv":1,"ac":16,"hp":20,"pc":8,"sz":"tiny","tp":"undead","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/pickled-punk.json","li":"OGL"},{"n":"Picture-in-Clouds","s":"rage-of-elements-bestiary","lv":13,"ac":35,"hp":175,"pc":20,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/picture-in-clouds.json","li":"OGL"},{"n":"Pilgrim of Irori","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":9,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/pilgrim-of-irori.json","li":"ORC"},{"n":"Pin Tingwheely","s":"extinction-curse-bestiary","lv":8,"ac":29,"hp":95,"pc":19,"sz":"small","tp":"fey","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/pin-tingwheely.json","li":"OGL"},{"n":"Pinacosaurus","s":"extinction-curse-bestiary","lv":4,"ac":21,"hp":70,"pc":10,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/pinacosaurus.json","li":"OGL"},{"n":"Pine Pangolin","s":"rage-of-elements-bestiary","lv":7,"ac":25,"hp":140,"pc":15,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/pine-pangolin.json","li":"OGL"},{"n":"Pipefox","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":30,"pc":11,"sz":"tiny","tp":"beast","f":"pathfinder-monster-core/pipefox.json","li":"ORC"},{"n":"Pirate","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":32,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/pirate.json","li":"ORC"},{"n":"Pitax Warden","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":215,"pc":22,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/pitax-warden.json","li":"OGL"},{"n":"Pitborn Adept","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":29,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/pitborn-adept.json","li":"ORC"},{"n":"Pixie","s":"pathfinder-monster-core","lv":4,"ac":23,"hp":40,"pc":12,"sz":"small","tp":"fey","f":"pathfinder-monster-core/pixie.json","li":"ORC"},{"n":"Pixiu","s":"lost-omens-bestiary","lv":8,"ac":26,"hp":165,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/tian-xia-world-guide/pixiu.json","li":"ORC"},{"n":"Plague Doctor","s":"pathfinder-npc-core","lv":5,"ac":20,"hp":70,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/plague-doctor.json","li":"ORC"},{"n":"Plague Zombie","s":"pathfinder-monster-core","lv":1,"ac":13,"hp":50,"pc":3,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/plague-zombie.json","li":"ORC"},{"n":"Plague Zombie","s":"sky-kings-tomb-bestiary","lv":1,"ac":13,"hp":50,"pc":3,"sz":"medium","tp":"fungus","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/plague-zombie.json","li":"OGL"},{"n":"Planar Terra-cotta Soldier","s":"fists-of-the-ruby-phoenix-bestiary","lv":11,"ac":30,"hp":250,"pc":21,"sz":"medium","tp":"construct","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/planar-terra-cotta-soldier.json","li":"OGL"},{"n":"Planar Terra-cotta Squadron","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":37,"hp":300,"pc":24,"sz":"medium","tp":"construct","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/planar-terra-cotta-squadron.json","li":"OGL"},{"n":"Platecarpus","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":46,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/platecarpus.json","li":"ORC"},{"n":"Plated Python","s":"howl-of-the-wild-bestiary","lv":12,"ac":33,"hp":215,"pc":24,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/plated-python.json","li":"ORC"},{"n":"Pleroma","s":"pathfinder-monster-core","lv":20,"ac":45,"hp":335,"pc":37,"sz":"large","tp":"monitor","f":"pathfinder-monster-core/pleroma.json","li":"ORC"},{"n":"Poacher","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/poacher.json","li":"ORC"},{"n":"Poison Eater","s":"agents-of-edgewatch-bestiary","lv":8,"ac":25,"hp":150,"pc":15,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/poison-eater.json","li":"OGL"},{"n":"Poisoning Room Specter","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":95,"pc":15,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/poisoning-room-specter.json","li":"OGL"},{"n":"Pokmit Bloody-Pike","s":"blood-lords-bestiary","lv":18,"ac":42,"hp":335,"pc":31,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/pokmit-bloody-pike.json","li":"OGL"},{"n":"Political Upstart","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":15,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/political-upstart.json","li":"ORC"},{"n":"Polong","s":"book-of-the-dead-bestiary","lv":8,"ac":24,"hp":100,"pc":17,"sz":"medium","tp":"spirit","f":"book-of-the-dead-bestiary/polong.json","li":"OGL"},{"n":"Poltergeist","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":55,"pc":11,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/poltergeist.json","li":"ORC"},{"n":"Poppet Attendant","s":"pathfinder-monster-core-2","lv":0,"ac":15,"hp":17,"pc":5,"sz":"small","tp":"construct","f":"pathfinder-monster-core-2/poppet-attendant.json","li":"ORC"},{"n":"Poppet Mage","s":"pathfinder-monster-core-2","lv":2,"ac":15,"hp":30,"pc":7,"sz":"small","tp":"construct","f":"pathfinder-monster-core-2/poppet-mage.json","li":"ORC"},{"n":"Poracha","s":"pathfinder-monster-core","lv":4,"ac":23,"hp":50,"pc":10,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/poracha.json","li":"ORC"},{"n":"Porphyry Guard","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":22,"hp":82,"pc":14,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/porphyry-guard.json","li":"ORC"},{"n":"Porphyry Shield Bearer","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":23,"hp":85,"pc":15,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/porphyry-shield-bearer.json","li":"ORC"},{"n":"Portal Eater","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":37,"hp":420,"pc":30,"sz":"gargantuan","tp":"astral","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/portal-eater.json","li":"OGL"},{"n":"Powderkeg Punk Bombardier","s":"outlaws-of-alkenstar-bestiary","lv":1,"ac":17,"hp":16,"pc":5,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/powderkeg-punk-bombardier.json","li":"OGL"},{"n":"Powderkeg Punk Gunner","s":"outlaws-of-alkenstar-bestiary","lv":0,"ac":16,"hp":13,"pc":4,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/powderkeg-punk-gunner.json","li":"OGL"},{"n":"Pr'rall","s":"blog-bestiary","lv":9,"ac":28,"hp":138,"pc":18,"sz":"medium","tp":"humanoid","f":"blog-bestiary/prrall.json","li":"OGL"},{"n":"Prachalla","s":"blood-lords-bestiary","lv":10,"ac":30,"hp":205,"pc":19,"sz":"small","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/prachalla.json","li":"OGL"},{"n":"Prairie Drake","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":18,"hp":36,"pc":6,"sz":"small","tp":"dragon","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/prairie-drake.json","li":"OGL"},{"n":"Prank Workshop Mitflit","s":"kingmaker-bestiary","lv":1,"ac":16,"hp":25,"pc":5,"sz":"small","tp":"fey","f":"kingmaker-bestiary/prank-workshop-mitflit.json","li":"OGL"},{"n":"Praskith","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":120,"pc":15,"sz":"huge","tp":"fungus","f":"pathfinder-monster-core-2/praskith.json","li":"ORC"},{"n":"Prazil","s":"kingmaker-bestiary","lv":5,"ac":21,"hp":85,"pc":12,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/prazil.json","li":"OGL"},{"n":"Precentor","s":"age-of-ashes-bestiary","lv":16,"ac":39,"hp":295,"pc":32,"sz":"medium","tp":"fiend","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/precentor.json","li":"OGL"},{"n":"Predatory Rabbit","s":"book-of-the-dead-bestiary","lv":-1,"ac":16,"hp":6,"pc":5,"sz":"tiny","tp":"undead","f":"book-of-the-dead-bestiary/predatory-rabbit.json","li":"OGL"},{"n":"Pridespawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/pridespawn.json","li":"ORC"},{"n":"Pridespawn Sentinel","s":"revenge-of-the-runelords-bestiary","lv":12,"ac":32,"hp":215,"pc":23,"sz":"medium","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/pridespawn-sentinel.json","li":"ORC"},{"n":"Priest of Blackfingers","s":"agents-of-edgewatch-bestiary","lv":12,"ac":33,"hp":215,"pc":25,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/priest-of-blackfingers.json","li":"OGL"},{"n":"Priest of Iomedae","s":"claws-of-the-tyrant-bestiary","lv":7,"ac":24,"hp":110,"pc":15,"sz":"medium","tp":"humanoid","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/priest-of-iomedae.json","li":"ORC"},{"n":"Priest Of Kabriri","s":"book-of-the-dead-bestiary","lv":5,"ac":19,"hp":63,"pc":13,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/priest-of-kabriri.json","li":"OGL"},{"n":"Priest of Pharasma","s":"npc-gallery","lv":6,"ac":21,"hp":80,"pc":14,"sz":"medium","tp":"humanoid","f":"npc-gallery/priest-of-pharasma.json","li":"OGL"},{"n":"Priest of Sarenrae","s":"pathfinder-npc-core","lv":6,"ac":21,"hp":80,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/priest-of-sarenrae.json","li":"ORC"},{"n":"Primal Bandersnatch","s":"kingmaker-bestiary","lv":19,"ac":44,"hp":395,"pc":33,"sz":"gargantuan","tp":"beast","f":"kingmaker-bestiary/primal-bandersnatch.json","li":"OGL"},{"n":"Primal Mantis","s":"wardens-of-wildwood-bestiary","lv":11,"ac":31,"hp":220,"pc":20,"sz":"gargantuan","tp":"animal","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/primal-mantis.json","li":"ORC"},{"n":"Primal Warden of Zibik","s":"wardens-of-wildwood-bestiary","lv":12,"ac":33,"hp":195,"pc":20,"sz":"medium","tp":"construct","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/primal-warden-of-zibik.json","li":"ORC"},{"n":"Prime Minister","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":15,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/prime-minister.json","li":"ORC"},{"n":"Primordial Envy","s":"rusthenge-bestiary","lv":3,"ac":12,"hp":60,"pc":6,"sz":"large","tp":"ooze","f":"rusthenge-bestiary/primordial-envy.json","li":"OGL"},{"n":"Prince Doriel","s":"blood-lords-bestiary","lv":10,"ac":30,"hp":205,"pc":19,"sz":"small","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/prince-doriel.json","li":"OGL"},{"n":"Prince of Propaganda","s":"curtain-call-bestiary","lv":20,"ac":47,"hp":400,"pc":37,"sz":"medium","tp":"fey","f":"curtain-call-bestiary/book-3-bring-the-house-down/prince-of-propaganda.json","li":"ORC"},{"n":"Princess Kerinza","s":"blood-lords-bestiary","lv":10,"ac":30,"hp":205,"pc":19,"sz":"small","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/princess-kerinza.json","li":"OGL"},{"n":"Princess Sunset","s":"one-shot-bestiary","lv":2,"ac":17,"hp":20,"pc":6,"sz":"medium","tp":"construct","f":"one-shot-bestiary/little-trouble-in-big-absalom/princess-sunset.json","li":"OGL"},{"n":"Princess Sweetie","s":"curtain-call-bestiary","lv":6,"ac":24,"hp":75,"pc":17,"sz":"small","tp":"beast","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/princess-sweetie.json","li":"ORC"},{"n":"Prismhydra","s":"howl-of-the-wild-bestiary","lv":16,"ac":30,"hp":290,"pc":28,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/prismhydra.json","li":"ORC"},{"n":"Prisoner","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":17,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/downtrodden/prisoner.json","li":"ORC"},{"n":"Privateer Captain","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":175,"pc":21,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/privateer-captain.json","li":"OGL"},{"n":"Procyal","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":170,"pc":18,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/procyal.json","li":"ORC"},{"n":"Profane Ghoul","s":"shadows-at-sundown-bestiary","lv":10,"ac":30,"hp":180,"pc":19,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/profane-ghoul.json","li":"OGL"},{"n":"Promise Guard","s":"age-of-ashes-bestiary","lv":17,"ac":43,"hp":330,"pc":29,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/promise-guard.json","li":"OGL"},{"n":"Propagandist","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":40,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/propagandist.json","li":"ORC"},{"n":"Prophet","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":25,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/prophet.json","li":"ORC"},{"n":"Prospecti Statue","s":"agents-of-edgewatch-bestiary","lv":7,"ac":26,"hp":100,"pc":13,"sz":"huge","tp":"construct","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/prospecti-statue.json","li":"OGL"},{"n":"Protean Tumult","s":"battlecry-bestiary","lv":12,"ac":32,"hp":210,"pc":21,"sz":"gargantuan","tp":"monitor","f":"battlecry-bestiary/protean-tumult.json","li":"ORC"},{"n":"Protoceratops","s":"howl-of-the-wild-bestiary","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/protoceratops.json","li":"ORC"},{"n":"Protosoul","s":"gatewalkers-bestiary","lv":11,"ac":28,"hp":245,"pc":19,"sz":"large","tp":"undead","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/protosoul.json","li":"ORC"},{"n":"Provincial Jiang-shi","s":"book-of-the-dead-bestiary","lv":11,"ac":31,"hp":130,"pc":22,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/provincial-jiang-shi.json","li":"OGL"},{"n":"Prowler Wight","s":"book-of-the-dead-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/prowler-wight.json","li":"OGL"},{"n":"Pruana Two-punch","s":"extinction-curse-bestiary","lv":3,"ac":20,"hp":46,"pc":7,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/pruana-two-punch.json","li":"OGL"},{"n":"Psstpsstmitl","s":"blog-bestiary","lv":21,"ac":46,"hp":400,"pc":38,"sz":"gargantuan","tp":"animal","f":"blog-bestiary/psstpsstmitl.json","li":"OGL"},{"n":"Pteios","s":"myth-speaker-bestiary","lv":11,"ac":30,"hp":220,"pc":23,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/pteios.json","li":"ORC"},{"n":"Pteranodon","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":25,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core/pteranodon.json","li":"ORC"},{"n":"Pthuminin","s":"seven-dooms-for-sandpoint-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"medium","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/pthuminin.json","li":"OGL"},{"n":"Pugwampi","s":"pathfinder-monster-core","lv":0,"ac":14,"hp":17,"pc":6,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/pugwampi.json","li":"ORC"},{"n":"Pugwampi (BB)","s":"menace-under-otari-bestiary","lv":0,"ac":14,"hp":17,"pc":6,"sz":"tiny","tp":"fey","f":"menace-under-otari-bestiary/pugwampi-bb.json","li":"ORC"},{"n":"Pugwampi (SoT)","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":17,"pc":6,"sz":"tiny","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/pugwampi-sot.json","li":"OGL"},{"n":"Pukwudgie","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":100,"pc":17,"sz":"small","tp":"fey","f":"pathfinder-monster-core/pukwudgie.json","li":"ORC"},{"n":"Pukwudgie Scribe","s":"spore-war-bestiary","lv":15,"ac":37,"hp":274,"pc":27,"sz":"small","tp":"fey","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/pukwudgie-scribe.json","li":"ORC"},{"n":"Pulping Golem","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":230,"pc":23,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/pulping-golem.json","li":"OGL"},{"n":"Puppet","s":"pathfinder-npc-core","lv":0,"ac":23,"hp":20,"pc":0,"sz":"tiny","tp":"","f":"pathfinder-npc-core/performer/puppet.json","li":"ORC"},{"n":"Puppeteer","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":95,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/puppeteer.json","li":"ORC"},{"n":"Pure Legion Regiment","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":180,"pc":19,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/pure-legion-regiment.json","li":"ORC"},{"n":"Pusk","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":36,"pc":6,"sz":"small","tp":"fiend","f":"pathfinder-monster-core/pusk.json","li":"ORC"},{"n":"Putrifer","s":"wardens-of-wildwood-bestiary","lv":9,"ac":28,"hp":160,"pc":18,"sz":"medium","tp":"plant","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/putrifer.json","li":"ORC"},{"n":"Pygmy Kaava","s":"lost-omens-bestiary","lv":0,"ac":15,"hp":15,"pc":6,"sz":"small","tp":"humanoid","f":"lost-omens-bestiary/mwangi-expanse/pygmy-kaava.json","li":"OGL"},{"n":"Pyrefowl","s":"myth-speaker-bestiary","lv":1,"ac":15,"hp":24,"pc":7,"sz":"small","tp":"beast","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/pyrefowl.json","li":"ORC"},{"n":"Pyrkaion","s":"myth-speaker-bestiary","lv":8,"ac":27,"hp":132,"pc":18,"sz":"medium","tp":"spirit","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/pyrkaion.json","li":"ORC"},{"n":"Pyroclastic Mukradi","s":"revenge-of-the-runelords-bestiary","lv":15,"ac":37,"hp":300,"pc":27,"sz":"gargantuan","tp":"beast","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/pyroclastic-mukradi.json","li":"ORC"},{"n":"Pyrogeist","s":"blood-lords-bestiary","lv":10,"ac":29,"hp":130,"pc":20,"sz":"large","tp":"spirit","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/pyrogeist.json","li":"OGL"},{"n":"Pyronite Ooze","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":19,"hp":350,"pc":14,"sz":"large","tp":"ooze","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/pyronite-ooze.json","li":"OGL"},{"n":"Python","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":20,"pc":6,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/python.json","li":"ORC"},{"n":"Qadiran Camel Corps","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/qadiran-camel-corps.json","li":"ORC"},{"n":"Qarna","s":"pathfinder-monster-core","lv":4,"ac":22,"hp":65,"pc":11,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core/qarna.json","li":"ORC"},{"n":"Qormintur","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":295,"pc":29,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/qormintur.json","li":"OGL"},{"n":"Quai Dau To","s":"pathfinder-monster-core","lv":13,"ac":32,"hp":300,"pc":25,"sz":"huge","tp":"beast","f":"pathfinder-monster-core/quai-dau-to.json","li":"ORC"},{"n":"Quantium Golem","s":"lost-omens-bestiary","lv":20,"ac":47,"hp":325,"pc":36,"sz":"gargantuan","tp":"construct","f":"lost-omens-bestiary/impossible-lands/quantium-golem.json","li":"OGL"},{"n":"Quara Orshendiel","s":"abomination-vaults-bestiary","lv":11,"ac":30,"hp":190,"pc":21,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/quara-orshendiel.json","li":"OGL"},{"n":"Quarry Construct","s":"gatewalkers-bestiary","lv":2,"ac":18,"hp":23,"pc":8,"sz":"large","tp":"construct","f":"gatewalkers-bestiary/book-1-the-seventh-arch/quarry-construct.json","li":"ORC"},{"n":"Quartz-Spawned Shadow","s":"pathfinder-dark-archive","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"pathfinder-dark-archive/npcs/quartz-spawned-shadow.json","li":"ORC"},{"n":"Quatoid","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":120,"pc":18,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/quatoid.json","li":"ORC"},{"n":"Queen Kawlinawk","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":240,"pc":23,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/queen-kawlinawk.json","li":"OGL"},{"n":"Queen Sluagh","s":"book-of-the-dead-bestiary","lv":18,"ac":41,"hp":417,"pc":31,"sz":"huge","tp":"fey","f":"book-of-the-dead-bestiary/queen-sluagh.json","li":"OGL"},{"n":"Queen Telandia Edasseril","s":"spore-war-bestiary","lv":17,"ac":39,"hp":300,"pc":29,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/queen-telandia-edasseril.json","li":"ORC"},{"n":"Quelaunt","s":"pathfinder-monster-core","lv":15,"ac":36,"hp":305,"pc":29,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/quelaunt.json","li":"ORC"},{"n":"Quetz Coatl","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":175,"pc":21,"sz":"large","tp":"beast","f":"pathfinder-monster-core/quetz-coatl.json","li":"ORC"},{"n":"Quetzalcoatlus","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":110,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/quetzalcoatlus.json","li":"ORC"},{"n":"Quickiron Plasm","s":"rage-of-elements-bestiary","lv":4,"ac":20,"hp":65,"pc":8,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/quickiron-plasm.json","li":"OGL"},{"n":"Quintessa Maray","s":"kingmaker-bestiary","lv":11,"ac":32,"hp":145,"pc":20,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/quintessa-maray.json","li":"OGL"},{"n":"Quoppopak Mummy","s":"stolen-fate-bestiary","lv":13,"ac":32,"hp":260,"pc":24,"sz":"large","tp":"undead","f":"stolen-fate-bestiary/book-2-the-destiny-war/quoppopak-mummy.json","li":"OGL"},{"n":"Quoroc","s":"revenge-of-the-runelords-bestiary","lv":15,"ac":37,"hp":270,"pc":27,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/quoroc.json","li":"ORC"},{"n":"Qurashith","s":"extinction-curse-bestiary","lv":17,"ac":40,"hp":340,"pc":33,"sz":"huge","tp":"aberration","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/qurashith.json","li":"OGL"},{"n":"Racharak","s":"age-of-ashes-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"small","tp":"dragon","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/racharak.json","li":"OGL"},{"n":"Radiant Veranallia","s":"claws-of-the-tyrant-bestiary","lv":20,"ac":45,"hp":475,"pc":38,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/radiant-veranallia.json","li":"ORC"},{"n":"Radiant Warden","s":"pathfinder-monster-core-2","lv":17,"ac":40,"hp":300,"pc":30,"sz":"gargantuan","tp":"construct","f":"pathfinder-monster-core-2/radiant-warden.json","li":"ORC"},{"n":"Raelis","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":200,"pc":21,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/raelis.json","li":"ORC"},{"n":"Rage Rider","s":"prey-for-death-bestiary","lv":10,"ac":29,"hp":175,"pc":19,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/rage-rider.json","li":"ORC"},{"n":"Rai Sho Disciple","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":40,"hp":300,"pc":30,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/rai-sho-disciple.json","li":"OGL"},{"n":"Rai Sho Postulant","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":39,"hp":360,"pc":30,"sz":"large","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/rai-sho-postulant.json","li":"OGL"},{"n":"Rain-Scribe","s":"lost-omens-bestiary","lv":4,"ac":21,"hp":54,"pc":13,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/rain-scribe.json","li":"OGL"},{"n":"Raised Cavalry","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":42,"hp":360,"pc":32,"sz":"gargantuan","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/raised-cavalry.json","li":"ORC"},{"n":"Raja-Krodha","s":"pathfinder-monster-core","lv":10,"ac":30,"hp":180,"pc":18,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core/raja-krodha.json","li":"ORC"},{"n":"Rakkatak","s":"rage-of-elements-bestiary","lv":5,"ac":21,"hp":90,"pc":9,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/rakkatak.json","li":"OGL"},{"n":"Raktavarna","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"tiny","tp":"spirit","f":"pathfinder-monster-core/raktavarna.json","li":"ORC"},{"n":"Ralso","s":"agents-of-edgewatch-bestiary","lv":4,"ac":22,"hp":55,"pc":14,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/ralso.json","li":"OGL"},{"n":"Ran-to (Level 14)","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":35,"hp":330,"pc":20,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/ran-to-level-14.json","li":"OGL"},{"n":"Ran-to (Level 16)","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":38,"hp":380,"pc":23,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/ran-to-level-16.json","li":"OGL"},{"n":"Ran-to (Level 20)","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":44,"hp":460,"pc":33,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/ran-to-level-20.json","li":"OGL"},{"n":"Rancorous Druids","s":"wardens-of-wildwood-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"gargantuan","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/rancorous-druids.json","li":"ORC"},{"n":"Rancorous Priesthood","s":"pathfinder-npc-core","lv":11,"ac":31,"hp":195,"pc":21,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/devotee/rancorous-priesthood.json","li":"ORC"},{"n":"Rancorous Priesthood","s":"spore-war-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"gargantuan","tp":"humanoid","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/rancorous-priesthood.json","li":"ORC"},{"n":"Raptor Guard Wight","s":"extinction-curse-bestiary","lv":13,"ac":34,"hp":240,"pc":22,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/raptor-guard-wight.json","li":"OGL"},{"n":"Raskus","s":"stolen-fate-bestiary","lv":10,"ac":29,"hp":175,"pc":18,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/raskus.json","li":"OGL"},{"n":"Rat Snake Swarm","s":"pathfinder-monster-core-2","lv":2,"ac":16,"hp":25,"pc":8,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/rat-snake-swarm.json","li":"ORC"},{"n":"Rat Swarm","s":"pathfinder-monster-core","lv":1,"ac":14,"hp":14,"pc":5,"sz":"large","tp":"animal","f":"pathfinder-monster-core/rat-swarm.json","li":"ORC"},{"n":"Ratajin Mastermind","s":"lost-omens-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/impossible-lands/ratajin-mastermind.json","li":"OGL"},{"n":"Ratfolk Grenadier","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/ratfolk-grenadier.json","li":"ORC"},{"n":"Ratfolk Shank Squad","s":"battlecry-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/ratfolk-shank-squad.json","li":"ORC"},{"n":"Ravager Of Tindalos","s":"strength-of-thousands-bestiary","lv":18,"ac":43,"hp":250,"pc":31,"sz":"large","tp":"aberration","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/ravager-of-tindalos.json","li":"OGL"},{"n":"Raven Nicoletta","s":"stolen-fate-bestiary","lv":20,"ac":44,"hp":370,"pc":33,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/raven-nicoletta.json","li":"OGL"},{"n":"Raven Swarm","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":30,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/raven-swarm.json","li":"ORC"},{"n":"Ravener","s":"pathfinder-monster-core-2","lv":21,"ac":47,"hp":500,"pc":37,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/ravener.json","li":"ORC"},{"n":"Ravener Husk","s":"pathfinder-monster-core-2","lv":14,"ac":35,"hp":325,"pc":26,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/ravener-husk.json","li":"ORC"},{"n":"Ravenile Rager","s":"agents-of-edgewatch-bestiary","lv":14,"ac":24,"hp":306,"pc":25,"sz":"large","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/ravenile-rager.json","li":"OGL"},{"n":"Ravenous Crypt","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":36,"hp":200,"pc":23,"sz":"huge","tp":"construct","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/ravenous-crypt.json","li":"ORC"},{"n":"Raw Nerve","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":150,"pc":17,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/raw-nerve.json","li":"OGL"},{"n":"Razmiri Blade Assassin","s":"spore-war-bestiary","lv":7,"ac":25,"hp":112,"pc":12,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/razmiri-blade-assassin.json","li":"ORC"},{"n":"Razorbones","s":"curtain-call-bestiary","lv":20,"ac":45,"hp":430,"pc":34,"sz":"large","tp":"undead","f":"curtain-call-bestiary/book-3-bring-the-house-down/razorbones.json","li":"ORC"},{"n":"Razu","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":40,"hp":250,"pc":30,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/razu.json","li":"OGL"},{"n":"Razzle Dazzler","s":"pathfinder-npc-core","lv":5,"ac":20,"hp":78,"pc":12,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/gnome/razzle-dazzler.json","li":"ORC"},{"n":"Reaper of Reputation","s":"curtain-call-bestiary","lv":20,"ac":45,"hp":375,"pc":37,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-3-bring-the-house-down/reaper-of-reputation.json","li":"ORC"},{"n":"Reaper Skull Puffball","s":"abomination-vaults-bestiary","lv":9,"ac":25,"hp":195,"pc":15,"sz":"large","tp":"fungus","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/reaper-skull-puffball.json","li":"OGL"},{"n":"Reborn Devotee","s":"wardens-of-wildwood-bestiary","lv":11,"ac":31,"hp":120,"pc":19,"sz":"huge","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/reborn-devotee.json","li":"ORC"},{"n":"Reborn Sun Hunter","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":195,"pc":24,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/reborn-sun-hunter.json","li":"OGL"},{"n":"Reborn Sun Mage","s":"strength-of-thousands-bestiary","lv":11,"ac":28,"hp":195,"pc":24,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/reborn-sun-mage.json","li":"OGL"},{"n":"Reborn Sun Warrior","s":"strength-of-thousands-bestiary","lv":11,"ac":31,"hp":245,"pc":21,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/reborn-sun-warrior.json","li":"OGL"},{"n":"Reckless Scientist","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":95,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/reckless-scientist.json","li":"ORC"},{"n":"Red Bishop","s":"seven-dooms-for-sandpoint-bestiary","lv":14,"ac":36,"hp":260,"pc":26,"sz":"medium","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/red-bishop.json","li":"OGL"},{"n":"Red Commander Ant","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":315,"pc":30,"sz":"huge","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/red-commander-ant.json","li":"OGL"},{"n":"Red Guard Ant","s":"strength-of-thousands-bestiary","lv":15,"ac":37,"hp":275,"pc":27,"sz":"large","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/red-guard-ant.json","li":"OGL"},{"n":"Red Mantis Assassin","s":"prey-for-death-bestiary","lv":11,"ac":31,"hp":193,"pc":21,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/red-mantis-assassin.json","li":"ORC"},{"n":"Red Mantis Conspirator","s":"prey-for-death-bestiary","lv":14,"ac":35,"hp":255,"pc":23,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/red-mantis-conspirator.json","li":"ORC"},{"n":"Red Queen","s":"strength-of-thousands-bestiary","lv":18,"ac":42,"hp":335,"pc":30,"sz":"huge","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/red-queen.json","li":"OGL"},{"n":"Red-Hooded Thatchling","s":"season-of-ghosts-bestiary","lv":2,"ac":17,"hp":32,"pc":8,"sz":"small","tp":"undead","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/red-hooded-thatchling.json","li":"ORC"},{"n":"Redcap","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":60,"pc":12,"sz":"small","tp":"fey","f":"hellbreakers-bestiary/redcap.json","li":"ORC"},{"n":"Redcap","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":60,"pc":12,"sz":"small","tp":"fey","f":"pathfinder-monster-core/redcap.json","li":"ORC"},{"n":"Redcap Brigade","s":"battlecry-bestiary","lv":10,"ac":29,"hp":165,"pc":19,"sz":"gargantuan","tp":"fey","f":"battlecry-bestiary/redcap-brigade.json","li":"ORC"},{"n":"Redcap Cavalry","s":"sky-kings-tomb-bestiary","lv":6,"ac":23,"hp":75,"pc":14,"sz":"small","tp":"fey","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/redcap-cavalry.json","li":"OGL"},{"n":"Redwood Leshy","s":"wardens-of-wildwood-bestiary","lv":10,"ac":29,"hp":205,"pc":22,"sz":"small","tp":"plant","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/redwood-leshy.json","li":"ORC"},{"n":"Reefclaw","s":"pathfinder-monster-core","lv":1,"ac":20,"hp":17,"pc":8,"sz":"small","tp":"aberration","f":"pathfinder-monster-core/reefclaw.json","li":"ORC"},{"n":"Reefclaw (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":20,"hp":17,"pc":8,"sz":"small","tp":"aberration","f":"menace-under-otari-bestiary/reefclaw-bb.json","li":"ORC"},{"n":"Reflection","s":"pathfinder-dark-archive","lv":6,"ac":24,"hp":30,"pc":0,"sz":"medium","tp":"","f":"pathfinder-dark-archive/npcs/reflection.json","li":"ORC"},{"n":"Reginald Vancaskerkin","s":"agents-of-edgewatch-bestiary","lv":18,"ac":42,"hp":350,"pc":33,"sz":"medium","tp":"aberration","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/reginald-vancaskerkin.json","li":"OGL"},{"n":"Rekhep","s":"pathfinder-monster-core","lv":10,"ac":31,"hp":150,"pc":19,"sz":"large","tp":"celestial","f":"pathfinder-monster-core/rekhep.json","li":"ORC"},{"n":"Relictner Eroder","s":"book-of-the-dead-bestiary","lv":12,"ac":32,"hp":265,"pc":23,"sz":"medium","tp":"humanoid","f":"book-of-the-dead-bestiary/relictner-eroder.json","li":"OGL"},{"n":"Remnant of Barzillai","s":"age-of-ashes-bestiary","lv":10,"ac":29,"hp":135,"pc":22,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/remnant-of-barzillai.json","li":"OGL"},{"n":"Ren Mei Li","s":"season-of-ghosts-bestiary","lv":16,"ac":39,"hp":295,"pc":29,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/ren-mei-li.json","li":"ORC"},{"n":"Renali","s":"age-of-ashes-bestiary","lv":4,"ac":18,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/renali.json","li":"OGL"},{"n":"Requiem Archdragon","s":"lost-omens-bestiary","lv":24,"ac":50,"hp":500,"pc":42,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/requiem/requiem-archdragon.json","li":"ORC"},{"n":"Requiem Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":24,"ac":50,"hp":500,"pc":42,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/requiem/requiem-archdragon-spellcaster.json","li":"ORC"},{"n":"Requiem Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":15,"ac":36,"hp":270,"pc":29,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Requiem Dragon (Adult)","s":"pathfinder-monster-core-2","lv":15,"ac":36,"hp":270,"pc":29,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-adult.json","li":"ORC"},{"n":"Requiem Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":20,"ac":44,"hp":370,"pc":36,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Requiem Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":20,"ac":44,"hp":370,"pc":36,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-ancient.json","li":"ORC"},{"n":"Requiem Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":190,"pc":24,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-young-spellcaster.json","li":"ORC"},{"n":"Requiem Dragon (Young)","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":190,"pc":24,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/requiem-dragon-young.json","li":"ORC"},{"n":"Resin-seep Xulgath","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":195,"pc":19,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/resin-seep-xulgath.json","li":"OGL"},{"n":"Restored Doll","s":"blood-lords-bestiary","lv":10,"ac":30,"hp":205,"pc":19,"sz":"small","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/restored-doll.json","li":"OGL"},{"n":"Resurrection Archdragon","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":470,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/resurection/resurrection-archdragon.json","li":"ORC"},{"n":"Resurrection Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":470,"pc":40,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/resurection/resurrection-archdragon-spellcaster.json","li":"ORC"},{"n":"Resurrection Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":230,"pc":25,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Resurrection Dragon (Adult)","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":230,"pc":25,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-adult.json","li":"ORC"},{"n":"Resurrection Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":320,"pc":32,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Resurrection Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":320,"pc":32,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-ancient.json","li":"ORC"},{"n":"Resurrection Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":140,"pc":19,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-young-spellcaster.json","li":"ORC"},{"n":"Resurrection Dragon (Young)","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":140,"pc":19,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/resurrection-dragon-young.json","li":"ORC"},{"n":"Reth","s":"strength-of-thousands-bestiary","lv":7,"ac":25,"hp":115,"pc":13,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/reth.json","li":"OGL"},{"n":"Revenant","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":115,"pc":14,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/revenant.json","li":"ORC"},{"n":"Rezatha","s":"kingmaker-bestiary","lv":17,"ac":39,"hp":330,"pc":28,"sz":"huge","tp":"beast","f":"kingmaker-bestiary/rezatha.json","li":"OGL"},{"n":"Rezzelki","s":"curtain-call-bestiary","lv":10,"ac":29,"hp":175,"pc":21,"sz":"medium","tp":"beast","f":"curtain-call-bestiary/book-1-stage-fright/rezzelki.json","li":"ORC"},{"n":"Rhevanna","s":"agents-of-edgewatch-bestiary","lv":22,"ac":48,"hp":400,"pc":42,"sz":"large","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/rhevanna.json","li":"OGL"},{"n":"Rhino Warriors","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":20,"hp":70,"pc":11,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/rhino-warriors.json","li":"OGL"},{"n":"Rhinoceros","s":"pathfinder-monster-core","lv":4,"ac":22,"hp":70,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core/rhinoceros.json","li":"ORC"},{"n":"Rhu-Chalik","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":95,"pc":17,"sz":"small","tp":"aberration","f":"pathfinder-monster-core/rhu-chalik.json","li":"ORC"},{"n":"Rhysaphine","s":"prey-for-death-bestiary","lv":18,"ac":42,"hp":338,"pc":31,"sz":"medium","tp":"celestial","f":"prey-for-death-bestiary/rhysaphine.json","li":"ORC"},{"n":"Riding Dog","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/riding-dog.json","li":"ORC"},{"n":"Riding Frog","s":"strength-of-thousands-bestiary","lv":2,"ac":17,"hp":40,"pc":7,"sz":"large","tp":"animal","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/riding-frog.json","li":"OGL"},{"n":"Riding Horse","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":22,"pc":5,"sz":"large","tp":"animal","f":"pathfinder-monster-core/riding-horse.json","li":"ORC"},{"n":"Riding Pony","s":"pathfinder-monster-core","lv":0,"ac":14,"hp":16,"pc":4,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/riding-pony.json","li":"ORC"},{"n":"Riekanoy","s":"night-of-the-gray-death-bestiary","lv":19,"ac":45,"hp":410,"pc":31,"sz":"medium","tp":"fey","f":"night-of-the-gray-death-bestiary/riekanoy.json","li":"OGL"},{"n":"Rift Chameleon","s":"howl-of-the-wild-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"small","tp":"beast","f":"howl-of-the-wild-bestiary/rift-chameleon.json","li":"ORC"},{"n":"Rift Pulper","s":"spore-war-bestiary","lv":17,"ac":40,"hp":390,"pc":29,"sz":"medium","tp":"elemental","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/rift-pulper.json","li":"ORC"},{"n":"Riftweasel","s":"spore-war-bestiary","lv":19,"ac":44,"hp":355,"pc":34,"sz":"medium","tp":"beast","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/riftweasel.json","li":"ORC"},{"n":"Rigg Gargadilly","s":"kingmaker-bestiary","lv":7,"ac":27,"hp":70,"pc":15,"sz":"small","tp":"fey","f":"kingmaker-bestiary/rigg-gargadilly.json","li":"OGL"},{"n":"Rigger","s":"pathfinder-npc-core","lv":1,"ac":15,"hp":20,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/rigger.json","li":"ORC"},{"n":"Rime Archdragon","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":375,"pc":34,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-archdragon.json","li":"ORC"},{"n":"Rime Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":375,"pc":34,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-archdragon-spellcaster.json","li":"ORC"},{"n":"Rime Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":175,"pc":20,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Rime Dragon (Adult)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":175,"pc":20,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-adult.json","li":"ORC"},{"n":"Rime Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Rime Dragon (Ancient)","s":"lost-omens-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-ancient.json","li":"ORC"},{"n":"Rime Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":98,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-young-spellcaster.json","li":"ORC"},{"n":"Rime Dragon (Young)","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":98,"pc":16,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rime/rime-dragon-young.json","li":"ORC"},{"n":"Rime Sludge","s":"quest-for-the-frozen-flame-bestiary","lv":1,"ac":8,"hp":38,"pc":4,"sz":"medium","tp":"ooze","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/rime-sludge.json","li":"OGL"},{"n":"Rin","s":"season-of-ghosts-bestiary","lv":8,"ac":26,"hp":100,"pc":15,"sz":"small","tp":"spirit","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/rin.json","li":"ORC"},{"n":"Rinnarv Bontimar","s":"age-of-ashes-bestiary","lv":20,"ac":45,"hp":400,"pc":32,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-6-broken-promises/rinnarv-bontimar.json","li":"OGL"},{"n":"Ripnugget","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":23,"hp":110,"pc":12,"sz":"small","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/ripnugget.json","li":"OGL"},{"n":"Riptide Octopus Swarm","s":"myth-speaker-bestiary","lv":0,"ac":16,"hp":14,"pc":6,"sz":"large","tp":"animal","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/riptide-octopus-swarm.json","li":"ORC"},{"n":"Risen Fetch","s":"kingmaker-bestiary","lv":22,"ac":48,"hp":470,"pc":38,"sz":"large","tp":"fey","f":"kingmaker-bestiary/risen-fetch.json","li":"OGL"},{"n":"Risen Nemesis","s":"curtain-call-bestiary","lv":20,"ac":43,"hp":290,"pc":35,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-3-bring-the-house-down/risen-nemesis.json","li":"ORC"},{"n":"Risen Runelord (Envy)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-envy.json","li":"ORC"},{"n":"Risen Runelord (Gluttony)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-gluttony.json","li":"ORC"},{"n":"Risen Runelord (Greed)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-greed.json","li":"ORC"},{"n":"Risen Runelord (Lust)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-lust.json","li":"ORC"},{"n":"Risen Runelord (Pride)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-pride.json","li":"ORC"},{"n":"Risen Runelord (Sloth)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-sloth.json","li":"ORC"},{"n":"Risen Runelord (Wrath)","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/risen-runelord-wrath.json","li":"ORC"},{"n":"Risen Runelord Aethusa II","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":333,"pc":32,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/risen-runelord-aethusa-ii.json","li":"ORC"},{"n":"Risen Runelord Alaznist","s":"revenge-of-the-runelords-bestiary","lv":20,"ac":46,"hp":385,"pc":36,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/risen-runelord-alaznist.json","li":"ORC"},{"n":"Risen Runelord Haphrama","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":195,"pc":30,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/risen-runelord-haphrama.json","li":"ORC"},{"n":"Risen Runelord Jurah","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":333,"pc":32,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/risen-runelord-jurah.json","li":"ORC"},{"n":"Risen Runelord Kaliphesta","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":195,"pc":30,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/risen-runelord-kaliphesta.json","li":"ORC"},{"n":"Risen Runelord Karzoug","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":333,"pc":32,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/risen-runelord-karzoug.json","li":"ORC"},{"n":"Risen Runelord of Envy (Prison)","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":195,"pc":30,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/risen-runelord-of-envy-prison.json","li":"ORC"},{"n":"Risen Runelord Xirie","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":195,"pc":30,"sz":"medium","tp":"dream","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/risen-runelord-xirie.json","li":"ORC"},{"n":"Rival Corpsekiller","s":"blood-lords-bestiary","lv":16,"ac":39,"hp":370,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/rival-corpsekiller.json","li":"OGL"},{"n":"Rival Necromancer","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":215,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/rival-necromancer.json","li":"OGL"},{"n":"River Drake","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":45,"pc":9,"sz":"medium","tp":"dragon","f":"pathfinder-monster-core/river-drake.json","li":"ORC"},{"n":"River Elasmosaurus","s":"kingmaker-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"huge","tp":"animal","f":"kingmaker-bestiary/river-elasmosaurus.json","li":"OGL"},{"n":"Rivka (Cimurlian)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":21,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/rivka-cimurlian.json","li":"OGL"},{"n":"Rivka (Igroon)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":21,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/rivka-igroon.json","li":"OGL"},{"n":"Rivka (Kujiba)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":21,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/rivka-kujiba.json","li":"OGL"},{"n":"Rivka (Mogaru)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":21,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/rivka-mogaru.json","li":"OGL"},{"n":"Rivka (Yorak)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":220,"pc":21,"sz":"medium","tp":"aberration","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/rivka-yorak.json","li":"OGL"},{"n":"Roc","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":180,"pc":18,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/roc.json","li":"ORC"},{"n":"Roc Rider","s":"prey-for-death-bestiary","lv":14,"ac":36,"hp":256,"pc":26,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/roc-rider.json","li":"ORC"},{"n":"Rocketeer","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":85,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/rocketeer.json","li":"ORC"},{"n":"Romi Bracken","s":"shades-of-blood-bestiary","lv":4,"ac":21,"hp":61,"pc":9,"sz":"medium","tp":"beast","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/romi-bracken.json","li":"ORC"},{"n":"Rompo","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":80,"pc":15,"sz":"medium","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/rompo.json","li":"OGL"},{"n":"Rooftop Guardian","s":"curtain-call-bestiary","lv":13,"ac":34,"hp":235,"pc":26,"sz":"huge","tp":"aberration","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/rooftop-guardian.json","li":"ORC"},{"n":"Root Leshy Groundskeeper","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":9,"pc":5,"sz":"small","tp":"plant","f":"pathfinder-npc-core/ancestry-npcs/leshy/root-leshy-groundskeeper.json","li":"ORC"},{"n":"Root Rotter","s":"spore-war-bestiary","lv":9,"ac":26,"hp":195,"pc":18,"sz":"medium","tp":"fungus","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/root-rotter.json","li":"ORC"},{"n":"Rootridden","s":"wardens-of-wildwood-bestiary","lv":8,"ac":26,"hp":120,"pc":16,"sz":"medium","tp":"undead","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/rootridden.json","li":"ORC"},{"n":"Roru","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":25,"hp":120,"pc":16,"sz":"medium","tp":"fiend","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/roru.json","li":"OGL"},{"n":"Rotbomber","s":"blood-lords-bestiary","lv":12,"ac":31,"hp":250,"pc":25,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/rotbomber.json","li":"OGL"},{"n":"Rotting Cultist","s":"spore-war-bestiary","lv":8,"ac":27,"hp":130,"pc":15,"sz":"medium","tp":"fungus","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/rotting-cultist.json","li":"ORC"},{"n":"Roxy","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":18,"hp":36,"pc":6,"sz":"small","tp":"dragon","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/roxy.json","li":"OGL"},{"n":"Royal Basilisk","s":"howl-of-the-wild-bestiary","lv":13,"ac":33,"hp":290,"pc":27,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/royal-basilisk.json","li":"ORC"},{"n":"Rt5rrmn","s":"blog-bestiary","lv":8,"ac":36,"hp":172,"pc":20,"sz":"small","tp":"animal","f":"blog-bestiary/foolish-housekeeping-and-other-articles/rt5rrmn.json","li":"ORC"},{"n":"Ruanna Nyamma","s":"extinction-curse-bestiary","lv":4,"ac":20,"hp":66,"pc":9,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/ruanna-nyamma.json","li":"OGL"},{"n":"Ruby","s":"blood-lords-bestiary","lv":17,"ac":40,"hp":390,"pc":25,"sz":"small","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/ruby.json","li":"OGL"},{"n":"Ruffian","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/criminal/ruffian.json","li":"ORC"},{"n":"Rukh","s":"shades-of-blood-bestiary","lv":9,"ac":25,"hp":110,"pc":21,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/rukh.json","li":"ORC"},{"n":"Rumin Purgo","s":"blood-lords-bestiary","lv":11,"ac":31,"hp":190,"pc":17,"sz":"small","tp":"humanoid","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/rumin-purgo.json","li":"OGL"},{"n":"Rumindrol","s":"howl-of-the-wild-bestiary","lv":15,"ac":37,"hp":295,"pc":28,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/rumindrol.json","li":"ORC"},{"n":"Runaway Blueblood","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/runaway-blueblood.json","li":"ORC"},{"n":"Rune Archdragon","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":460,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rune/rune-archdragon.json","li":"ORC"},{"n":"Rune Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":49,"hp":460,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/rune/rune-archdragon-spellcaster.json","li":"ORC"},{"n":"Rune Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":14,"ac":36,"hp":255,"pc":27,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Rune Dragon (Adult)","s":"pathfinder-monster-core-2","lv":14,"ac":36,"hp":255,"pc":27,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-adult.json","li":"ORC"},{"n":"Rune Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":19,"ac":43,"hp":355,"pc":34,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Rune Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":19,"ac":43,"hp":355,"pc":34,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-ancient.json","li":"ORC"},{"n":"Rune Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-young-spellcaster.json","li":"ORC"},{"n":"Rune Dragon (Young)","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/rune-dragon-young.json","li":"ORC"},{"n":"Rune Giant","s":"pathfinder-monster-core","lv":16,"ac":38,"hp":330,"pc":28,"sz":"gargantuan","tp":"giant","f":"pathfinder-monster-core/rune-giant.json","li":"ORC"},{"n":"Runecarved Lich","s":"book-of-the-dead-bestiary","lv":19,"ac":42,"hp":330,"pc":32,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/runecarved-lich.json","li":"OGL"},{"n":"Runelord Xanderghul","s":"revenge-of-the-runelords-bestiary","lv":25,"ac":52,"hp":560,"pc":41,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/runelord-xanderghul.json","li":"ORC"},{"n":"Runic Warmaw","s":"revenge-of-the-runelords-bestiary","lv":16,"ac":38,"hp":300,"pc":28,"sz":"huge","tp":"","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/runic-warmaw.json","li":"ORC"},{"n":"Runkrunk","s":"extinction-curse-bestiary","lv":10,"ac":29,"hp":175,"pc":16,"sz":"large","tp":"construct","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/runkrunk.json","li":"OGL"},{"n":"Rusalka","s":"curtain-call-bestiary","lv":12,"ac":33,"hp":230,"pc":22,"sz":"medium","tp":"fey","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/rusalka.json","li":"ORC"},{"n":"Rusalka","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":230,"pc":22,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/rusalka.json","li":"ORC"},{"n":"Rust Hag","s":"blood-lords-bestiary","lv":8,"ac":26,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/rust-hag.json","li":"OGL"},{"n":"Rust Ooze","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":11,"hp":80,"pc":6,"sz":"medium","tp":"ooze","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/rust-ooze.json","li":"OGL"},{"n":"Rust Scarab","s":"rage-of-elements-bestiary","lv":5,"ac":21,"hp":65,"pc":9,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/rust-scarab.json","li":"OGL"},{"n":"Rust Zombie","s":"rusthenge-bestiary","lv":1,"ac":13,"hp":50,"pc":3,"sz":"medium","tp":"undead","f":"rusthenge-bestiary/rust-zombie.json","li":"OGL"},{"n":"Rustsworn Initiate","s":"rusthenge-bestiary","lv":-1,"ac":14,"hp":8,"pc":2,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/rustsworn-initiate.json","li":"OGL"},{"n":"Rusty Mae","s":"age-of-ashes-bestiary","lv":10,"ac":30,"hp":155,"pc":22,"sz":"large","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/rusty-mae.json","li":"OGL"},{"n":"Ruzadoya Swiftmane","s":"wardens-of-wildwood-bestiary","lv":14,"ac":38,"hp":255,"pc":26,"sz":"large","tp":"undead","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/ruzadoya-swiftmane.json","li":"ORC"},{"n":"Ruzadoya's Chosen","s":"wardens-of-wildwood-bestiary","lv":7,"ac":22,"hp":115,"pc":18,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/ruzadoyas-chosen.json","li":"ORC"},{"n":"Ryta","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":60,"pc":10,"sz":"small","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/ryta.json","li":"OGL"},{"n":"Sabora Sharkosa","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/sabora-sharkosa.json","li":"OGL"},{"n":"Sabosan","s":"pathfinder-monster-core-2","lv":5,"ac":22,"hp":78,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/sabosan.json","li":"ORC"},{"n":"Saboteur","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":28,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/saboteur.json","li":"ORC"},{"n":"Sacristan","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":175,"pc":19,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/sacristan.json","li":"ORC"},{"n":"Sacristan Scourge","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":270,"pc":26,"sz":"gargantuan","tp":"fiend","f":"lost-omens-bestiary/hellfire-dispatches/sacristan-scourge.json","li":"ORC"},{"n":"Sacuishu","s":"abomination-vaults-bestiary","lv":9,"ac":30,"hp":80,"pc":21,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/sacuishu.json","li":"OGL"},{"n":"Sad Liza","s":"agents-of-edgewatch-bestiary","lv":17,"ac":41,"hp":240,"pc":32,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/sad-liza.json","li":"OGL"},{"n":"Sage","s":"pathfinder-npc-core","lv":6,"ac":22,"hp":86,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/sage.json","li":"ORC"},{"n":"Sage Archdragon","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":390,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-archdragon.json","li":"ORC"},{"n":"Sage Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":390,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-archdragon-spellcaster.json","li":"ORC"},{"n":"Sage Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":230,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Sage Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":230,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-adult.json","li":"ORC"},{"n":"Sage Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":330,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Sage Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":330,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-ancient.json","li":"ORC"},{"n":"Sage Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":150,"pc":21,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-young-spellcaster.json","li":"ORC"},{"n":"Sage Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":150,"pc":21,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sage/sage-dragon-young.json","li":"ORC"},{"n":"Saggorak Poltergeist","s":"age-of-ashes-bestiary","lv":12,"ac":33,"hp":180,"pc":20,"sz":"medium","tp":"spirit","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/saggorak-poltergeist.json","li":"OGL"},{"n":"Sahni Bride-Of-The-Sea","s":"blood-lords-bestiary","lv":7,"ac":24,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/sahni-bride-of-the-sea.json","li":"OGL"},{"n":"Sahreg the Dirge Screamer","s":"blood-lords-bestiary","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-1-zombie-feast/sahreg-the-dirge-screamer.json","li":"OGL"},{"n":"Saint Fang","s":"prey-for-death-bestiary","lv":18,"ac":42,"hp":365,"pc":31,"sz":"huge","tp":"dragon","f":"prey-for-death-bestiary/saint-fang.json","li":"ORC"},{"n":"Sakuachi","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":60,"pc":14,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/sakuachi.json","li":"ORC"},{"n":"Sakugami","s":"pathfinder-monster-core-2","lv":15,"ac":35,"hp":350,"pc":30,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core-2/sakugami.json","li":"ORC"},{"n":"Salaisa Malthulas","s":"abomination-vaults-bestiary","lv":11,"ac":31,"hp":200,"pc":22,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/salaisa-malthulas.json","li":"OGL"},{"n":"Salathiss","s":"strength-of-thousands-bestiary","lv":9,"ac":27,"hp":150,"pc":19,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/salathiss.json","li":"OGL"},{"n":"Sallowdrudge","s":"blood-lords-bestiary","lv":1,"ac":16,"hp":25,"pc":7,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/sallowdrudge.json","li":"OGL"},{"n":"Saltborn Stalkers","s":"rage-of-elements-bestiary","lv":13,"ac":34,"hp":240,"pc":24,"sz":"gargantuan","tp":"elemental","f":"rage-of-elements-bestiary/saltborn-stalkers.json","li":"OGL"},{"n":"Samsaran Anchorite","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":15,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/samsaran-anchorite.json","li":"ORC"},{"n":"Sand Sentry","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/sand-sentry.json","li":"ORC"},{"n":"Sand Wolf","s":"the-enmity-cycle-bestiary","lv":5,"ac":21,"hp":92,"pc":14,"sz":"large","tp":"beast","f":"the-enmity-cycle-bestiary/sand-wolf.json","li":"OGL"},{"n":"Sanzuwu","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":295,"pc":26,"sz":"tiny","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/sanzuwu.json","li":"OGL"},{"n":"Sappil","s":"myth-speaker-bestiary","lv":1,"ac":16,"hp":19,"pc":3,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/sappil.json","li":"ORC"},{"n":"Sarcovalt","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":75,"pc":13,"sz":"tiny","tp":"fiend","f":"hellbreakers-bestiary/sarcovalt.json","li":"ORC"},{"n":"Sarcovalt Swarm","s":"hellbreakers-bestiary","lv":9,"ac":27,"hp":155,"pc":19,"sz":"large","tp":"fiend","f":"hellbreakers-bestiary/sarcovalt-swarm.json","li":"ORC"},{"n":"Sargassum Heap","s":"pathfinder-monster-core","lv":6,"ac":14,"hp":180,"pc":10,"sz":"large","tp":"plant","f":"pathfinder-monster-core/sargassum-heap.json","li":"ORC"},{"n":"Sarglagon","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":120,"pc":18,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/sarglagon.json","li":"ORC"},{"n":"Sarkorian Wolf","s":"lost-omens-bestiary","lv":1,"ac":15,"hp":24,"pc":7,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/travel-guide/sarkorian-wolf.json","li":"OGL"},{"n":"Sarvel Ever-Hunger","s":"extinction-curse-bestiary","lv":22,"ac":48,"hp":430,"pc":39,"sz":"large","tp":"fiend","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/sarvel-ever-hunger.json","li":"OGL"},{"n":"Satinder Morne","s":"kingmaker-bestiary","lv":6,"ac":22,"hp":75,"pc":15,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/satinder-morne.json","li":"OGL"},{"n":"Satyr","s":"pathfinder-monster-core","lv":4,"ac":19,"hp":80,"pc":10,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/satyr.json","li":"ORC"},{"n":"Saurian Warmonger","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":340,"pc":31,"sz":"huge","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/saurian-warmonger.json","li":"OGL"},{"n":"Saurian Worldwatcher","s":"extinction-curse-bestiary","lv":18,"ac":43,"hp":330,"pc":34,"sz":"huge","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/saurian-worldwatcher.json","li":"OGL"},{"n":"Saviya","s":"prey-for-death-bestiary","lv":19,"ac":43,"hp":360,"pc":34,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/saviya.json","li":"ORC"},{"n":"Scalathrax","s":"abomination-vaults-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/scalathrax.json","li":"OGL"},{"n":"Scaleseed Nagaji","s":"stolen-fate-bestiary","lv":7,"ac":23,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/scaleseed-nagaji.json","li":"OGL"},{"n":"Scalliwing","s":"troubles-in-otari-bestiary","lv":3,"ac":19,"hp":45,"pc":12,"sz":"tiny","tp":"beast","f":"troubles-in-otari-bestiary/scalliwing.json","li":"OGL"},{"n":"Scamp Avalanche","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-avalanche.json","li":"ORC"},{"n":"Scamp Flood","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-flood.json","li":"ORC"},{"n":"Scamp Inferno","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-inferno.json","li":"ORC"},{"n":"Scamp Shrapnel","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-shrapnel.json","li":"ORC"},{"n":"Scamp Tangle","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-tangle.json","li":"ORC"},{"n":"Scamp Whirlwind","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":14,"sz":"gargantuan","tp":"elemental","f":"battlecry-bestiary/scamp-whirlwind.json","li":"ORC"},{"n":"Scarecophagus","s":"outlaws-of-alkenstar-bestiary","lv":6,"ac":24,"hp":100,"pc":14,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/scarecophagus.json","li":"OGL"},{"n":"Scarecrow","s":"pathfinder-monster-core","lv":4,"ac":19,"hp":60,"pc":11,"sz":"medium","tp":"construct","f":"pathfinder-monster-core/scarecrow.json","li":"ORC"},{"n":"Scarhorn","s":"seven-dooms-for-sandpoint-bestiary","lv":14,"ac":36,"hp":275,"pc":24,"sz":"large","tp":"dragon","f":"seven-dooms-for-sandpoint-bestiary/scarhorn.json","li":"OGL"},{"n":"Scarlet Triad Agent","s":"age-of-ashes-bestiary","lv":11,"ac":32,"hp":195,"pc":21,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/scarlet-triad-agent.json","li":"OGL"},{"n":"Scarlet Triad Boss","s":"age-of-ashes-bestiary","lv":17,"ac":39,"hp":315,"pc":30,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/scarlet-triad-boss.json","li":"OGL"},{"n":"Scarlet Triad Bruiser","s":"age-of-ashes-bestiary","lv":10,"ac":30,"hp":180,"pc":19,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/scarlet-triad-bruiser.json","li":"OGL"},{"n":"Scarlet Triad Enforcer","s":"age-of-ashes-bestiary","lv":15,"ac":36,"hp":275,"pc":25,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/scarlet-triad-enforcer.json","li":"OGL"},{"n":"Scarlet Triad Mage","s":"age-of-ashes-bestiary","lv":15,"ac":37,"hp":270,"pc":26,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/scarlet-triad-mage.json","li":"OGL"},{"n":"Scarlet Triad Poisoner","s":"age-of-ashes-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/scarlet-triad-poisoner.json","li":"OGL"},{"n":"Scarlet Triad Sneak","s":"age-of-ashes-bestiary","lv":6,"ac":25,"hp":95,"pc":12,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/scarlet-triad-sneak.json","li":"OGL"},{"n":"Scarlet Triad Sniper","s":"age-of-ashes-bestiary","lv":11,"ac":32,"hp":195,"pc":23,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/scarlet-triad-sniper.json","li":"OGL"},{"n":"Scarlet Triad Thug","s":"age-of-ashes-bestiary","lv":7,"ac":25,"hp":120,"pc":13,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/scarlet-triad-thug.json","li":"OGL"},{"n":"Scarlet Walker","s":"shadows-at-sundown-bestiary","lv":12,"ac":33,"hp":225,"pc":23,"sz":"huge","tp":"aberration","f":"shadows-at-sundown-bestiary/scarlet-walker.json","li":"OGL"},{"n":"Scathka","s":"agents-of-edgewatch-bestiary","lv":12,"ac":31,"hp":210,"pc":23,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/scathka.json","li":"OGL"},{"n":"Sceaduinar","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":100,"pc":15,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/sceaduinar.json","li":"ORC"},{"n":"Scented Candle Homunculus","s":"one-shot-bestiary","lv":1,"ac":17,"hp":17,"pc":3,"sz":"tiny","tp":"construct","f":"one-shot-bestiary/a-fistful-of-flowers/scented-candle-homunculus.json","li":"OGL"},{"n":"Scorching Sun Cultist","s":"the-enmity-cycle-bestiary","lv":2,"ac":17,"hp":35,"pc":9,"sz":"medium","tp":"humanoid","f":"the-enmity-cycle-bestiary/scorching-sun-cultist.json","li":"OGL"},{"n":"Scorned Hound","s":"book-of-the-dead-bestiary","lv":1,"ac":15,"hp":22,"pc":7,"sz":"small","tp":"undead","f":"book-of-the-dead-bestiary/scorned-hound.json","li":"OGL"},{"n":"Scorpion Swarm","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":55,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/scorpion-swarm.json","li":"ORC"},{"n":"Scrabbling Ribcage","s":"blood-lords-bestiary","lv":1,"ac":16,"hp":20,"pc":6,"sz":"small","tp":"construct","f":"blood-lords-bestiary/book-1-zombie-feast/scrabbling-ribcage.json","li":"OGL"},{"n":"Scrapborn","s":"the-enmity-cycle-bestiary","lv":5,"ac":22,"hp":81,"pc":10,"sz":"medium","tp":"aberration","f":"the-enmity-cycle-bestiary/scrapborn.json","li":"OGL"},{"n":"Screaming Sulfur","s":"strength-of-thousands-bestiary","lv":10,"ac":27,"hp":125,"pc":22,"sz":"huge","tp":"spirit","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/screaming-sulfur.json","li":"OGL"},{"n":"Scrit","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":18,"pc":6,"sz":"tiny","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/scrit.json","li":"OGL"},{"n":"Scroungefeather","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":76,"pc":13,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/scroungefeather.json","li":"ORC"},{"n":"Sea Archdragon","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-archdragon.json","li":"ORC"},{"n":"Sea Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-archdragon-spellcaster.json","li":"ORC"},{"n":"Sea Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":225,"pc":21,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Sea Dragon (Adult)","s":"lost-omens-bestiary","lv":12,"ac":32,"hp":225,"pc":21,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-adult.json","li":"ORC"},{"n":"Sea Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":17,"ac":41,"hp":350,"pc":30,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Sea Dragon (Ancient)","s":"lost-omens-bestiary","lv":17,"ac":41,"hp":350,"pc":30,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-ancient.json","li":"ORC"},{"n":"Sea Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":8,"ac":27,"hp":140,"pc":15,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-young-spellcaster.json","li":"ORC"},{"n":"Sea Dragon (Young)","s":"lost-omens-bestiary","lv":8,"ac":27,"hp":140,"pc":15,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sea/sea-dragon-young.json","li":"ORC"},{"n":"Sea Hag","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":45,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/sea-hag.json","li":"ORC"},{"n":"Sea Serpent","s":"pathfinder-monster-core","lv":12,"ac":35,"hp":210,"pc":22,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/sea-serpent.json","li":"ORC"},{"n":"Sea Snake","s":"pathfinder-monster-core-2","lv":0,"ac":16,"hp":15,"pc":5,"sz":"small","tp":"animal","f":"pathfinder-monster-core-2/sea-snake.json","li":"ORC"},{"n":"Second Spawn","s":"spore-war-bestiary","lv":21,"ac":45,"hp":500,"pc":36,"sz":"gargantuan","tp":"elemental","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/second-spawn.json","li":"ORC"},{"n":"Secret-Keeper","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":240,"pc":29,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/secret-keeper.json","li":"OGL"},{"n":"Sedacthy Marauder","s":"pathfinder-monster-core","lv":4,"ac":19,"hp":75,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/sedacthy-marauder.json","li":"ORC"},{"n":"Sedacthy Scout","s":"myth-speaker-bestiary","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/sedacthy-scout.json","li":"ORC"},{"n":"Sedacthy Scout","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":30,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/sedacthy-scout.json","li":"ORC"},{"n":"Sedacthy Speaker","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":95,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/sedacthy-speaker.json","li":"ORC"},{"n":"Seddek","s":"the-enmity-cycle-bestiary","lv":8,"ac":23,"hp":115,"pc":15,"sz":"medium","tp":"elemental","f":"the-enmity-cycle-bestiary/seddek.json","li":"OGL"},{"n":"Seetangeist","s":"book-of-the-dead-bestiary","lv":12,"ac":32,"hp":160,"pc":19,"sz":"huge","tp":"undead","f":"book-of-the-dead-bestiary/seetangeist.json","li":"OGL"},{"n":"Seldeg Bhedlis","s":"claws-of-the-tyrant-bestiary","lv":20,"ac":46,"hp":465,"pc":32,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/seldeg-bhedlis.json","li":"ORC"},{"n":"Seldeg Bheldis","s":"blood-lords-bestiary","lv":17,"ac":41,"hp":390,"pc":26,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/seldeg-bheldis.json","li":"OGL"},{"n":"Seldeg's Steed","s":"blood-lords-bestiary","lv":13,"ac":39,"hp":130,"pc":0,"sz":"large","tp":"","f":"blood-lords-bestiary/book-6-ghost-kings-rage/seldegs-steed.json","li":"OGL"},{"n":"Sephone Haugini","s":"hellbreakers-bestiary","lv":9,"ac":26,"hp":117,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/sephone-haugini.json","li":"ORC"},{"n":"Sepid","s":"pathfinder-monster-core-2","lv":14,"ac":34,"hp":350,"pc":24,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/sepid.json","li":"ORC"},{"n":"Sepoko","s":"kingmaker-bestiary","lv":11,"ac":31,"hp":200,"pc":22,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/sepoko.json","li":"OGL"},{"n":"Seraptis","s":"pathfinder-monster-core","lv":15,"ac":37,"hp":340,"pc":25,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/seraptis.json","li":"ORC"},{"n":"Serpentfolk Cultist","s":"seven-dooms-for-sandpoint-bestiary","lv":7,"ac":25,"hp":100,"pc":15,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/serpentfolk-cultist.json","li":"OGL"},{"n":"Serpentfolk Granitescale","s":"strength-of-thousands-bestiary","lv":6,"ac":24,"hp":120,"pc":13,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/serpentfolk-granitescale.json","li":"OGL"},{"n":"Serpentfolk Venom Caller","s":"strength-of-thousands-bestiary","lv":7,"ac":24,"hp":105,"pc":15,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/serpentfolk-venom-caller.json","li":"OGL"},{"n":"Servant","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":7,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/servant.json","li":"ORC"},{"n":"Server","s":"npc-gallery","lv":-1,"ac":16,"hp":7,"pc":3,"sz":"medium","tp":"humanoid","f":"npc-gallery/server.json","li":"OGL"},{"n":"Seugathi Guard","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":75,"pc":14,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/seugathi-guard.json","li":"OGL"},{"n":"Seugathi Reality Warper","s":"abomination-vaults-bestiary","lv":9,"ac":27,"hp":120,"pc":17,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/seugathi-reality-warper.json","li":"OGL"},{"n":"Seugathi Researcher","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":75,"pc":14,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/seugathi-researcher.json","li":"OGL"},{"n":"Seugathi Servant","s":"abomination-vaults-bestiary","lv":6,"ac":23,"hp":75,"pc":14,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/seugathi-servant.json","li":"OGL"},{"n":"Severed Head","s":"pathfinder-monster-core-2","lv":-1,"ac":15,"hp":7,"pc":6,"sz":"tiny","tp":"undead","f":"pathfinder-monster-core-2/severed-head.json","li":"ORC"},{"n":"Severed Head","s":"rusthenge-bestiary","lv":-1,"ac":15,"hp":7,"pc":6,"sz":"tiny","tp":"undead","f":"rusthenge-bestiary/severed-head.json","li":"OGL"},{"n":"Sewer Ooze","s":"pathfinder-monster-core","lv":1,"ac":8,"hp":40,"pc":3,"sz":"medium","tp":"ooze","f":"pathfinder-monster-core/sewer-ooze.json","li":"ORC"},{"n":"Sewer Ooze (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":8,"hp":40,"pc":3,"sz":"medium","tp":"ooze","f":"menace-under-otari-bestiary/sewer-ooze-bb.json","li":"ORC"},{"n":"Shabti Slayer","s":"blood-lords-bestiary","lv":16,"ac":39,"hp":255,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/shabti-slayer.json","li":"OGL"},{"n":"Shabti Votary","s":"blood-lords-bestiary","lv":18,"ac":40,"hp":260,"pc":33,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/shabti-votary.json","li":"OGL"},{"n":"Shackles Pirate Crew","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/shackles-pirate-crew.json","li":"ORC"},{"n":"Shade (Abaddon)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/shade-abaddon.json","li":"ORC"},{"n":"Shade (Astral Plane)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"astral","f":"pathfinder-monster-core-2/shade-astral-plane.json","li":"ORC"},{"n":"Shade (Axis)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/shade-axis.json","li":"ORC"},{"n":"Shade (Boneyard)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/shade-boneyard.json","li":"ORC"},{"n":"Shade (Creation's Forge)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-creations-forge.json","li":"ORC"},{"n":"Shade (Dead Vault)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/shade-dead-vault.json","li":"ORC"},{"n":"Shade (Dreamlands)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"dream","f":"pathfinder-monster-core-2/shade-dreamlands.json","li":"ORC"},{"n":"Shade (Elysium)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/shade-elysium.json","li":"ORC"},{"n":"Shade (Ethereal Plane)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"ethereal","f":"pathfinder-monster-core-2/shade-ethereal-plane.json","li":"ORC"},{"n":"Shade (Heaven)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/shade-heaven.json","li":"ORC"},{"n":"Shade (Hell)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/shade-hell.json","li":"ORC"},{"n":"Shade (Maelstrom)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/shade-maelstrom.json","li":"ORC"},{"n":"Shade (Netherworld)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/shade-netherworld.json","li":"ORC"},{"n":"Shade (Nirvana)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/shade-nirvana.json","li":"ORC"},{"n":"Shade (Outer Rifts)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/shade-outer-rifts.json","li":"ORC"},{"n":"Shade (Plane of Air)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-air.json","li":"ORC"},{"n":"Shade (Plane of Earth)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-earth.json","li":"ORC"},{"n":"Shade (Plane of Fire)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-fire.json","li":"ORC"},{"n":"Shade (Plane of Metal)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-metal.json","li":"ORC"},{"n":"Shade (Plane of Water)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-water.json","li":"ORC"},{"n":"Shade (Plane of Wood)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":30,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-plane-of-wood.json","li":"ORC"},{"n":"Shade (Universe)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":22,"pc":7,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shade-universe.json","li":"ORC"},{"n":"Shadebound Pixie Guard","s":"wardens-of-wildwood-bestiary","lv":6,"ac":25,"hp":95,"pc":14,"sz":"small","tp":"fey","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/shadebound-pixie-guard.json","li":"ORC"},{"n":"Shadefield Spirit","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":20,"hp":70,"pc":13,"sz":"medium","tp":"spirit","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/shadefield-spirit.json","li":"ORC"},{"n":"Shadern Immolator","s":"book-of-the-dead-bestiary","lv":1,"ac":15,"hp":21,"pc":5,"sz":"small","tp":"humanoid","f":"book-of-the-dead-bestiary/shadern-immolator.json","li":"OGL"},{"n":"Shadow","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/shadow.json","li":"ORC"},{"n":"Shadow (BB)","s":"menace-under-otari-bestiary","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"menace-under-otari-bestiary/shadow-bb.json","li":"ORC"},{"n":"Shadow Giant","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":275,"pc":20,"sz":"large","tp":"giant","f":"pathfinder-monster-core/shadow-giant.json","li":"ORC"},{"n":"Shadow Leydroth","s":"blood-lords-bestiary","lv":17,"ac":40,"hp":315,"pc":30,"sz":"large","tp":"beast","f":"blood-lords-bestiary/book-6-ghost-kings-rage/shadow-leydroth.json","li":"OGL"},{"n":"Shadow Sage","s":"wardens-of-wildwood-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/shadow-sage.json","li":"ORC"},{"n":"Shadow Spawn","s":"pathfinder-monster-core","lv":4,"ac":20,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/shadow-spawn.json","li":"ORC"},{"n":"Shadow Worm","s":"blood-lords-bestiary","lv":20,"ac":45,"hp":450,"pc":33,"sz":"gargantuan","tp":"animal","f":"blood-lords-bestiary/book-6-ghost-kings-rage/shadow-worm.json","li":"OGL"},{"n":"Shadow Yai","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":39,"hp":290,"pc":28,"sz":"large","tp":"fiend","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/shadow-yai.json","li":"OGL"},{"n":"Shadow-Tainted Pachycephalosaurus","s":"shades-of-blood-bestiary","lv":3,"ac":17,"hp":65,"pc":10,"sz":"large","tp":"animal","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/shadow-tainted-pachycephalosaurus.json","li":"ORC"},{"n":"Shadowbound Monk Statue","s":"blood-lords-bestiary","lv":7,"ac":26,"hp":100,"pc":13,"sz":"large","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/shadowbound-monk-statue.json","li":"OGL"},{"n":"Shadowforged Guardian","s":"blood-lords-bestiary","lv":10,"ac":29,"hp":170,"pc":18,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-3-field-of-maidens/shadowforged-guardian.json","li":"OGL"},{"n":"Shae","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":45,"pc":10,"sz":"medium","tp":"","f":"pathfinder-monster-core-2/shae.json","li":"ORC"},{"n":"Shaldar Falls-Far","s":"stolen-fate-bestiary","lv":6,"ac":23,"hp":112,"pc":13,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/shaldar-falls-far.json","li":"OGL"},{"n":"Shalelu Andosana","s":"spore-war-bestiary","lv":13,"ac":33,"hp":234,"pc":23,"sz":"medium","tp":"humanoid","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/shalelu-andosana.json","li":"ORC"},{"n":"Shambler","s":"kingmaker-bestiary","lv":6,"ac":22,"hp":120,"pc":12,"sz":"large","tp":"plant","f":"kingmaker-bestiary/shambler.json","li":"OGL"},{"n":"Shambler Troop","s":"pathfinder-monster-core-2","lv":4,"ac":18,"hp":90,"pc":7,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/shambler-troop.json","li":"ORC"},{"n":"Shanchek","s":"extinction-curse-bestiary","lv":15,"ac":36,"hp":280,"pc":30,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/shanchek.json","li":"OGL"},{"n":"Shankfingers","s":"shades-of-blood-bestiary","lv":5,"ac":21,"hp":60,"pc":12,"sz":"small","tp":"fey","f":"shades-of-blood-bestiary/book-2-the-broken-palace/shankfingers.json","li":"ORC"},{"n":"Shanrigol Behemoth","s":"abomination-vaults-bestiary","lv":9,"ac":27,"hp":140,"pc":18,"sz":"gargantuan","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/shanrigol-behemoth.json","li":"OGL"},{"n":"Shanrigol Heap","s":"abomination-vaults-bestiary","lv":4,"ac":20,"hp":55,"pc":9,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/shanrigol-heap.json","li":"OGL"},{"n":"Shanty Chanter","s":"curtain-call-bestiary","lv":10,"ac":30,"hp":175,"pc":20,"sz":"medium","tp":"fey","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/shanty-chanter.json","li":"ORC"},{"n":"Shatterling","s":"agents-of-edgewatch-bestiary","lv":14,"ac":36,"hp":305,"pc":26,"sz":"small","tp":"fey","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/shatterling.json","li":"OGL"},{"n":"Shemhazian","s":"pathfinder-monster-core","lv":16,"ac":39,"hp":350,"pc":30,"sz":"gargantuan","tp":"fiend","f":"pathfinder-monster-core/shemhazian.json","li":"ORC"},{"n":"Shianshi Waymaker","s":"strength-of-thousands-bestiary","lv":18,"ac":42,"hp":330,"pc":32,"sz":"large","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/shianshi-waymaker.json","li":"OGL"},{"n":"Shieldbearer Construct","s":"strength-of-thousands-bestiary","lv":2,"ac":17,"hp":30,"pc":6,"sz":"large","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/shieldbearer-construct.json","li":"OGL"},{"n":"Shikigami","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":18,"pc":9,"sz":"tiny","tp":"spirit","f":"pathfinder-monster-core-2/shikigami.json","li":"ORC"},{"n":"Shikwashim Mercenary","s":"agents-of-edgewatch-bestiary","lv":9,"ac":27,"hp":155,"pc":18,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/shikwashim-mercenary.json","li":"OGL"},{"n":"Shimmernewt","s":"blood-lords-bestiary","lv":6,"ac":22,"hp":120,"pc":14,"sz":"medium","tp":"beast","f":"blood-lords-bestiary/book-3-field-of-maidens/shimmernewt.json","li":"OGL"},{"n":"Shimmerthief","s":"season-of-ghosts-bestiary","lv":7,"ac":25,"hp":119,"pc":15,"sz":"medium","tp":"beast","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/shimmerthief.json","li":"ORC"},{"n":"Shinigami","s":"season-of-ghosts-bestiary","lv":17,"ac":40,"hp":260,"pc":31,"sz":"large","tp":"monitor","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/shinigami.json","li":"ORC"},{"n":"Shining Child","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":215,"pc":23,"sz":"medium","tp":"astral","f":"pathfinder-monster-core/shining-child.json","li":"ORC"},{"n":"Shino Hakusa (Level 14)","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":35,"hp":250,"pc":22,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/shino-hakusa-level-14.json","li":"OGL"},{"n":"Shino Hakusa (Level 16)","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":38,"hp":300,"pc":30,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/shino-hakusa-level-16.json","li":"OGL"},{"n":"Shino Hakusa (Level 20)","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":45,"hp":360,"pc":34,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/shino-hakusa-level-20.json","li":"OGL"},{"n":"Ship Captain","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":90,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/ship-captain.json","li":"ORC"},{"n":"Shirota","s":"prey-for-death-bestiary","lv":16,"ac":38,"hp":295,"pc":25,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/shirota.json","li":"ORC"},{"n":"Shisagishin","s":"season-of-ghosts-bestiary","lv":12,"ac":33,"hp":214,"pc":22,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/shisagishin.json","li":"ORC"},{"n":"Shobhad Enforcer","s":"strength-of-thousands-bestiary","lv":16,"ac":38,"hp":320,"pc":29,"sz":"large","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/shobhad-enforcer.json","li":"OGL"},{"n":"Shobhad Sniper","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":320,"pc":30,"sz":"large","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/shobhad-sniper.json","li":"OGL"},{"n":"Shock Zombie","s":"outlaws-of-alkenstar-bestiary","lv":6,"ac":21,"hp":140,"pc":12,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/shock-zombie.json","li":"OGL"},{"n":"Shoggoth","s":"pathfinder-monster-core-2","lv":18,"ac":39,"hp":275,"pc":34,"sz":"huge","tp":"aberration","f":"pathfinder-monster-core-2/shoggoth.json","li":"ORC"},{"n":"Shokasura","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":22,"pc":8,"sz":"small","tp":"spirit","f":"pathfinder-monster-core-2/shokasura.json","li":"ORC"},{"n":"Shoki","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":150,"pc":21,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/shoki.json","li":"ORC"},{"n":"Shoma Lyzerius","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":18,"hp":44,"pc":9,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/shoma-lyzerius.json","li":"OGL"},{"n":"Shoony Hierarch","s":"extinction-curse-bestiary","lv":4,"ac":19,"hp":60,"pc":12,"sz":"small","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/shoony-hierarch.json","li":"OGL"},{"n":"Shoony Militia Member","s":"extinction-curse-bestiary","lv":2,"ac":17,"hp":40,"pc":8,"sz":"small","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/shoony-militia-member.json","li":"OGL"},{"n":"Shoony Tiller","s":"extinction-curse-bestiary","lv":0,"ac":15,"hp":16,"pc":6,"sz":"small","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/shoony-tiller.json","li":"OGL"},{"n":"Shotalashu","s":"howl-of-the-wild-bestiary","lv":2,"ac":18,"hp":35,"pc":9,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/shotalashu.json","li":"ORC"},{"n":"Shraen Graveknight","s":"extinction-curse-bestiary","lv":15,"ac":37,"hp":295,"pc":26,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/shraen-graveknight.json","li":"OGL"},{"n":"Shredskin","s":"agents-of-edgewatch-bestiary","lv":2,"ac":18,"hp":30,"pc":11,"sz":"tiny","tp":"undead","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/shredskin.json","li":"OGL"},{"n":"Shredskin","s":"book-of-the-dead-bestiary","lv":2,"ac":16,"hp":30,"pc":6,"sz":"small","tp":"undead","f":"book-of-the-dead-bestiary/shredskin.json","li":"OGL"},{"n":"Shriezyx","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":70,"pc":11,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/shriezyx.json","li":"ORC"},{"n":"Shrine Caretaker","s":"season-of-ghosts-bestiary","lv":3,"ac":19,"hp":65,"pc":6,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/shrine-caretaker.json","li":"ORC"},{"n":"Shrine Maiden","s":"season-of-ghosts-bestiary","lv":9,"ac":27,"hp":152,"pc":20,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/shrine-maiden.json","li":"ORC"},{"n":"Shristi Melipdra","s":"agents-of-edgewatch-bestiary","lv":7,"ac":26,"hp":100,"pc":18,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/shristi-melipdra.json","li":"OGL"},{"n":"Shroud Moss","s":"spore-war-bestiary","lv":18,"ac":42,"hp":400,"pc":31,"sz":"medium","tp":"fungus","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/shroud-moss.json","li":"ORC"},{"n":"Shroudwing","s":"lost-omens-bestiary","lv":4,"ac":20,"hp":60,"pc":12,"sz":"medium","tp":"","f":"lost-omens-bestiary/shining-kingdoms/shroudwing.json","li":"ORC"},{"n":"Shui Gui","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":50,"pc":14,"sz":"medium","tp":"spirit","f":"lost-omens-bestiary/tian-xia-world-guide/shui-gui.json","li":"ORC"},{"n":"Shuln","s":"pathfinder-monster-core","lv":12,"ac":33,"hp":195,"pc":20,"sz":"huge","tp":"beast","f":"pathfinder-monster-core/shuln.json","li":"ORC"},{"n":"Siabrae","s":"book-of-the-dead-bestiary","lv":16,"ac":36,"hp":218,"pc":31,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/siabrae.json","li":"OGL"},{"n":"Sibyl","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":40,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/sibyl.json","li":"ORC"},{"n":"Sickened Doprillu","s":"stolen-fate-bestiary","lv":14,"ac":36,"hp":260,"pc":22,"sz":"medium","tp":"aberration","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/sickened-doprillu.json","li":"OGL"},{"n":"Sicklefang Longlegs","s":"seven-dooms-for-sandpoint-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"animal","f":"seven-dooms-for-sandpoint-bestiary/sicklefang-longlegs.json","li":"OGL"},{"n":"Sicklehand Construct","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":15,"pc":6,"sz":"medium","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/sicklehand-construct.json","li":"OGL"},{"n":"Sickly Eshmok","s":"gatewalkers-bestiary","lv":8,"ac":25,"hp":180,"pc":16,"sz":"large","tp":"fiend","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/sickly-eshmok.json","li":"ORC"},{"n":"Sié Goluo","s":"lost-omens-bestiary","lv":14,"ac":36,"hp":320,"pc":25,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/sié-goluo.json","li":"OGL"},{"n":"Siege Shard","s":"agents-of-edgewatch-bestiary","lv":3,"ac":19,"hp":37,"pc":9,"sz":"tiny","tp":"construct","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/siege-shard.json","li":"OGL"},{"n":"Siegebreaker","s":"pathfinder-npc-core","lv":14,"ac":34,"hp":300,"pc":24,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mercenary/siegebreaker.json","li":"ORC"},{"n":"Sigbin","s":"fists-of-the-ruby-phoenix-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"small","tp":"beast","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/sigbin.json","li":"OGL"},{"n":"Sigrid Jandevik","s":"wardens-of-wildwood-bestiary","lv":7,"ac":24,"hp":140,"pc":15,"sz":"large","tp":"beast","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/sigrid-jandevik.json","li":"ORC"},{"n":"Silene","s":"wardens-of-wildwood-bestiary","lv":8,"ac":26,"hp":100,"pc":18,"sz":"small","tp":"spirit","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/silene.json","li":"ORC"},{"n":"Silent Devotee","s":"revenge-of-the-runelords-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/silent-devotee.json","li":"ORC"},{"n":"Silent Stalker","s":"book-of-the-dead-bestiary","lv":13,"ac":34,"hp":220,"pc":24,"sz":"small","tp":"undead","f":"book-of-the-dead-bestiary/silent-stalker.json","li":"OGL"},{"n":"Silkwasp Bandit","s":"season-of-ghosts-bestiary","lv":6,"ac":22,"hp":105,"pc":13,"sz":"medium","tp":"humanoid","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/silkwasp-bandit.json","li":"ORC"},{"n":"Silsyche","s":"season-of-ghosts-bestiary","lv":6,"ac":23,"hp":68,"pc":14,"sz":"small","tp":"spirit","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/silsyche.json","li":"ORC"},{"n":"Silvanshee","s":"pathfinder-monster-core-2","lv":1,"ac":17,"hp":20,"pc":8,"sz":"tiny","tp":"celestial","f":"pathfinder-monster-core-2/silvanshee.json","li":"ORC"},{"n":"Silver Saber","s":"prey-for-death-bestiary","lv":18,"ac":43,"hp":260,"pc":32,"sz":"huge","tp":"construct","f":"prey-for-death-bestiary/silver-saber.json","li":"ORC"},{"n":"Silverfish Swarm","s":"strength-of-thousands-bestiary","lv":-1,"ac":13,"hp":9,"pc":5,"sz":"large","tp":"animal","f":"strength-of-thousands-bestiary/book-1-kindled-magic/silverfish-swarm.json","li":"OGL"},{"n":"Silverhand Salvo","s":"curtain-call-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"medium","tp":"fiend","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/silverhand-salvo.json","li":"ORC"},{"n":"Simandu","s":"curtain-call-bestiary","lv":19,"ac":43,"hp":355,"pc":35,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-3-bring-the-house-down/simandu.json","li":"ORC"},{"n":"Simple Harrowkin","s":"stolen-fate-bestiary","lv":4,"ac":20,"hp":60,"pc":10,"sz":"small","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/simple-harrowkin.json","li":"OGL"},{"n":"Simulacrum","s":"one-shot-bestiary","lv":4,"ac":20,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"one-shot-bestiary/dinner-at-lionlodge/simulacrum.json","li":"OGL"},{"n":"Sinmold","s":"spore-war-bestiary","lv":12,"ac":23,"hp":300,"pc":22,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/sinmold.json","li":"ORC"},{"n":"Sinswarm","s":"battlecry-bestiary","lv":9,"ac":27,"hp":150,"pc":19,"sz":"gargantuan","tp":"aberration","f":"battlecry-bestiary/sinswarm.json","li":"ORC"},{"n":"Siora Fallowglade","s":"abomination-vaults-bestiary","lv":7,"ac":24,"hp":75,"pc":14,"sz":"medium","tp":"undead","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/siora-fallowglade.json","li":"OGL"},{"n":"Sir Fredero Sinnet","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":160,"pc":15,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/sir-fredero-sinnet.json","li":"OGL"},{"n":"Sister Endreah","s":"hellbreakers-bestiary","lv":4,"ac":20,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/sister-endreah.json","li":"ORC"},{"n":"Sister Maeri","s":"prey-for-death-bestiary","lv":16,"ac":38,"hp":290,"pc":28,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/sister-maeri.json","li":"ORC"},{"n":"Sister of the Bloodshot Eye","s":"kingmaker-bestiary","lv":12,"ac":31,"hp":250,"pc":23,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/sister-of-the-bloodshot-eye.json","li":"OGL"},{"n":"Sister of the Golden Erinys","s":"hellbreakers-bestiary","lv":2,"ac":17,"hp":30,"pc":10,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/sister-of-the-golden-erinys.json","li":"ORC"},{"n":"Sixth Pillar Student","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":34,"hp":220,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/sixth-pillar-student.json","li":"OGL"},{"n":"Skarja","s":"extinction-curse-bestiary","lv":13,"ac":34,"hp":260,"pc":25,"sz":"medium","tp":"fiend","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/skarja.json","li":"OGL"},{"n":"Skartitch Chip-Tooth","s":"strength-of-thousands-bestiary","lv":16,"ac":39,"hp":290,"pc":28,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/skartitch-chip-tooth.json","li":"OGL"},{"n":"Skaveling","s":"pathfinder-monster-core-2","lv":5,"ac":22,"hp":80,"pc":15,"sz":"large","tp":"undead","f":"pathfinder-monster-core-2/skaveling.json","li":"ORC"},{"n":"Skebs","s":"agents-of-edgewatch-bestiary","lv":-1,"ac":15,"hp":7,"pc":4,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/skebs.json","li":"OGL"},{"n":"Skeletal Champion","s":"myth-speaker-bestiary","lv":2,"ac":19,"hp":25,"pc":8,"sz":"medium","tp":"undead","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/skeletal-champion.json","li":"ORC"},{"n":"Skeletal Champion","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":25,"pc":8,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/skeletal-champion.json","li":"ORC"},{"n":"Skeletal Crocodile","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":25,"hp":105,"pc":16,"sz":"huge","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/skeletal-crocodile.json","li":"OGL"},{"n":"Skeletal Drummer","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":18,"hp":30,"pc":9,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/skeletal-drummer.json","li":"ORC"},{"n":"Skeletal Giant","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":50,"pc":7,"sz":"large","tp":"undead","f":"pathfinder-monster-core/skeletal-giant.json","li":"ORC"},{"n":"Skeletal Giant (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":17,"hp":50,"pc":7,"sz":"large","tp":"undead","f":"menace-under-otari-bestiary/skeletal-giant-bb.json","li":"ORC"},{"n":"Skeletal Hellknight","s":"age-of-ashes-bestiary","lv":2,"ac":20,"hp":25,"pc":7,"sz":"medium","tp":"undead","f":"age-of-ashes-bestiary/book-1-hellknight-hill/skeletal-hellknight.json","li":"OGL"},{"n":"Skeletal Hellknight Bonesinger","s":"hellbreakers-bestiary","lv":8,"ac":26,"hp":130,"pc":15,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/skeletal-hellknight-bonesinger.json","li":"ORC"},{"n":"Skeletal Horse","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":33,"pc":8,"sz":"large","tp":"undead","f":"pathfinder-monster-core/skeletal-horse.json","li":"ORC"},{"n":"Skeletal Hulk","s":"pathfinder-monster-core","lv":7,"ac":25,"hp":105,"pc":16,"sz":"huge","tp":"undead","f":"pathfinder-monster-core/skeletal-hulk.json","li":"ORC"},{"n":"Skeletal Knight","s":"blood-lords-bestiary","lv":8,"ac":28,"hp":110,"pc":5,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-3-field-of-maidens/skeletal-knight.json","li":"OGL"},{"n":"Skeletal Mage","s":"book-of-the-dead-bestiary","lv":5,"ac":21,"hp":60,"pc":9,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/skeletal-mage.json","li":"OGL"},{"n":"Skeletal Rat Swarm","s":"claws-of-the-tyrant-bestiary","lv":2,"ac":16,"hp":40,"pc":8,"sz":"large","tp":"undead","f":"claws-of-the-tyrant-bestiary/1-gravelands-survivors/skeletal-rat-swarm.json","li":"ORC"},{"n":"Skeletal Soldier","s":"book-of-the-dead-bestiary","lv":1,"ac":17,"hp":16,"pc":5,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/skeletal-soldier.json","li":"OGL"},{"n":"Skeletal Tiger Lord","s":"kingmaker-bestiary","lv":8,"ac":28,"hp":99,"pc":18,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/skeletal-tiger-lord.json","li":"OGL"},{"n":"Skeletal Titan","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":210,"pc":19,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/skeletal-titan.json","li":"ORC"},{"n":"Skeletal Woolly Rhinoceros","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":22,"hp":75,"pc":9,"sz":"large","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/skeletal-woolly-rhinoceros.json","li":"OGL"},{"n":"Skeleton Guard","s":"pathfinder-monster-core","lv":-1,"ac":16,"hp":4,"pc":2,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/skeleton-guard.json","li":"ORC"},{"n":"Skeleton Guard (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":16,"hp":4,"pc":2,"sz":"medium","tp":"undead","f":"menace-under-otari-bestiary/skeleton-guard-bb.json","li":"ORC"},{"n":"Skeleton Infantry","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":180,"pc":17,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/skeleton-infantry.json","li":"ORC"},{"n":"Skeleton Mob","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":11,"sz":"gargantuan","tp":"undead","f":"battlecry-bestiary/skeleton-mob.json","li":"ORC"},{"n":"Skeleton Rival Corpsekiller","s":"blood-lords-bestiary","lv":16,"ac":39,"hp":330,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/skeleton-rival-corpsekiller.json","li":"OGL"},{"n":"Skeleton Rival Necromancer","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":175,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/skeleton-rival-necromancer.json","li":"OGL"},{"n":"Skibrellon","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"small","tp":"fungus","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/skibrellon.json","li":"OGL"},{"n":"Skin Beetle","s":"gatewalkers-bestiary","lv":3,"ac":18,"hp":55,"pc":9,"sz":"tiny","tp":"animal","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/skin-beetle.json","li":"ORC"},{"n":"Skin Beetle Swarm","s":"gatewalkers-bestiary","lv":8,"ac":26,"hp":125,"pc":16,"sz":"large","tp":"animal","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/skin-beetle-swarm.json","li":"ORC"},{"n":"Skin Shifter","s":"pathfinder-npc-core","lv":8,"ac":25,"hp":140,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/skin-shifter.json","li":"ORC"},{"n":"Skinsaw Murderer","s":"agents-of-edgewatch-bestiary","lv":6,"ac":22,"hp":120,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/skinsaw-murderer.json","li":"OGL"},{"n":"Skinsaw Seamer","s":"agents-of-edgewatch-bestiary","lv":8,"ac":26,"hp":130,"pc":18,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/skinsaw-seamer.json","li":"OGL"},{"n":"Skinsaw Trophy","s":"curtain-call-bestiary","lv":14,"ac":36,"hp":252,"pc":28,"sz":"medium","tp":"aberration","f":"curtain-call-bestiary/book-3-bring-the-house-down/skinsaw-trophy.json","li":"ORC"},{"n":"Skinskitter","s":"lost-omens-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"small","tp":"aberration","f":"lost-omens-bestiary/impossible-lands/skinskitter.json","li":"OGL"},{"n":"Skinslough","s":"triumph-of-the-tusk-bestiary","lv":4,"ac":20,"hp":72,"pc":12,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/skinslough.json","li":"ORC"},{"n":"Skirmancer Mage","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":70,"pc":15,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/skirmancer-mage.json","li":"ORC"},{"n":"Skittering Slayer","s":"pathfinder-monster-core-2","lv":8,"ac":26,"hp":130,"pc":17,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/skittering-slayer.json","li":"ORC"},{"n":"Skitterstitch","s":"agents-of-edgewatch-bestiary","lv":6,"ac":24,"hp":115,"pc":14,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/skitterstitch.json","li":"OGL"},{"n":"Sklar-Quah Warrior","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":26,"hp":130,"pc":16,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/sklar-quah-warrior.json","li":"ORC"},{"n":"Skull Fairy","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":45,"pc":10,"sz":"tiny","tp":"","f":"blood-lords-bestiary/book-1-zombie-feast/skull-fairy.json","li":"OGL"},{"n":"Skull Peeler","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":75,"pc":17,"sz":"small","tp":"beast","f":"pathfinder-monster-core-2/skull-peeler.json","li":"ORC"},{"n":"Skulltaker","s":"pathfinder-monster-core","lv":18,"ac":42,"hp":300,"pc":33,"sz":"huge","tp":"undead","f":"pathfinder-monster-core/skulltaker.json","li":"ORC"},{"n":"Skurg","s":"curtain-call-bestiary","lv":12,"ac":30,"hp":60,"pc":15,"sz":"tiny","tp":"animal","f":"curtain-call-bestiary/book-1-stage-fright/skurg.json","li":"ORC"},{"n":"Sky Archdragon","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-archdragon.json","li":"ORC"},{"n":"Sky Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-archdragon-spellcaster.json","li":"ORC"},{"n":"Sky Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":235,"pc":24,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Sky Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":235,"pc":24,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-adult.json","li":"ORC"},{"n":"Sky Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":335,"pc":32,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Sky Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":335,"pc":32,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-ancient.json","li":"ORC"},{"n":"Sky Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-young-spellcaster.json","li":"ORC"},{"n":"Sky Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sky/sky-dragon-young.json","li":"ORC"},{"n":"Sky Fisher","s":"howl-of-the-wild-bestiary","lv":11,"ac":30,"hp":200,"pc":18,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/sky-fisher.json","li":"ORC"},{"n":"Skymetal Striker","s":"rage-of-elements-bestiary","lv":7,"ac":26,"hp":100,"pc":15,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/skymetal-striker.json","li":"OGL"},{"n":"Slana","s":"strength-of-thousands-bestiary","lv":20,"ac":45,"hp":380,"pc":36,"sz":"gargantuan","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/slana.json","li":"OGL"},{"n":"Sleepless Sun Veteran","s":"agents-of-edgewatch-bestiary","lv":6,"ac":24,"hp":120,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/sleepless-sun-veteran.json","li":"OGL"},{"n":"Slick","s":"outlaws-of-alkenstar-bestiary","lv":3,"ac":18,"hp":60,"pc":10,"sz":"large","tp":"animal","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/slick.json","li":"OGL"},{"n":"Slime Mold","s":"pathfinder-monster-core-2","lv":2,"ac":12,"hp":60,"pc":6,"sz":"large","tp":"fungus","f":"pathfinder-monster-core-2/slime-mold.json","li":"ORC"},{"n":"Slime Puppeteer","s":"sky-kings-tomb-bestiary","lv":6,"ac":24,"hp":95,"pc":14,"sz":"medium","tp":"aberration","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/slime-puppeteer.json","li":"OGL"},{"n":"Slithering Pit","s":"pathfinder-monster-core-2","lv":7,"ac":14,"hp":220,"pc":9,"sz":"medium","tp":"ooze","f":"pathfinder-monster-core-2/slithering-pit.json","li":"ORC"},{"n":"Slithering Rift","s":"agents-of-edgewatch-bestiary","lv":18,"ac":31,"hp":535,"pc":30,"sz":"huge","tp":"ooze","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/slithering-rift.json","li":"OGL"},{"n":"Slothspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/slothspawn.json","li":"ORC"},{"n":"Sluagh Reaper","s":"book-of-the-dead-bestiary","lv":10,"ac":29,"hp":175,"pc":21,"sz":"medium","tp":"fey","f":"book-of-the-dead-bestiary/sluagh-reaper.json","li":"OGL"},{"n":"Sludgespine Killer","s":"outlaws-of-alkenstar-bestiary","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/sludgespine-killer.json","li":"OGL"},{"n":"Slurk","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":35,"pc":6,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/slurk.json","li":"ORC"},{"n":"Smaranava","s":"pathfinder-monster-core","lv":7,"ac":27,"hp":115,"pc":15,"sz":"large","tp":"beast","f":"pathfinder-monster-core/smaranava.json","li":"ORC"},{"n":"Smiler","s":"extinction-curse-bestiary","lv":2,"ac":19,"hp":45,"pc":12,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/smiler.json","li":"OGL"},{"n":"Smilodon","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":110,"pc":14,"sz":"large","tp":"animal","f":"pathfinder-monster-core/smilodon.json","li":"ORC"},{"n":"Smith","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":50,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/artisan/smith.json","li":"ORC"},{"n":"Smog Giant","s":"outlaws-of-alkenstar-bestiary","lv":7,"ac":23,"hp":145,"pc":13,"sz":"large","tp":"giant","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/smog-giant.json","li":"OGL"},{"n":"Smog Wraith","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":27,"hp":110,"pc":19,"sz":"medium","tp":"undead","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/smog-wraith.json","li":"OGL"},{"n":"Smoke Creeper","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":80,"pc":14,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/smoke-creeper.json","li":"ORC"},{"n":"Smoldering Leopard","s":"extinction-curse-bestiary","lv":3,"ac":19,"hp":45,"pc":11,"sz":"medium","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/smoldering-leopard.json","li":"OGL"},{"n":"Snapdrake","s":"rage-of-elements-bestiary","lv":8,"ac":26,"hp":144,"pc":16,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/snapdrake.json","li":"OGL"},{"n":"Snapping Flytrap","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":50,"pc":7,"sz":"large","tp":"plant","f":"pathfinder-monster-core/snapping-flytrap.json","li":"ORC"},{"n":"Sniper","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":65,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/sniper.json","li":"ORC"},{"n":"Snow Oni","s":"pathfinder-monster-core","lv":13,"ac":33,"hp":290,"pc":26,"sz":"large","tp":"giant","f":"pathfinder-monster-core/snow-oni.json","li":"ORC"},{"n":"Snowy Owl","s":"gatewalkers-bestiary","lv":7,"ac":21,"hp":60,"pc":16,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/snowy-owl.json","li":"ORC"},{"n":"Sod Hound","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":44,"pc":9,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/sod-hound.json","li":"ORC"},{"n":"Sod Hound (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":19,"hp":44,"pc":9,"sz":"small","tp":"elemental","f":"menace-under-otari-bestiary/sod-hound-bb.json","li":"ORC"},{"n":"Sodden Sentinel","s":"extinction-curse-bestiary","lv":11,"ac":28,"hp":320,"pc":15,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/sodden-sentinel.json","li":"OGL"},{"n":"Sojiruh","s":"season-of-ghosts-bestiary","lv":4,"ac":17,"hp":58,"pc":11,"sz":"medium","tp":"fiend","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/sojiruh.json","li":"ORC"},{"n":"Solar Crow","s":"rage-of-elements-bestiary","lv":10,"ac":30,"hp":170,"pc":19,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/solar-crow.json","li":"OGL"},{"n":"Solar Glass Golem","s":"blood-lords-bestiary","lv":11,"ac":31,"hp":195,"pc":17,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/solar-glass-golem.json","li":"OGL"},{"n":"Solar Ibis","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":45,"pc":17,"sz":"medium","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/solar-ibis.json","li":"OGL"},{"n":"Somnalu","s":"lost-omens-bestiary","lv":15,"ac":37,"hp":290,"pc":29,"sz":"huge","tp":"aberration","f":"lost-omens-bestiary/monsters-of-myth/somnalu.json","li":"OGL"},{"n":"Somnalu Oculus","s":"lost-omens-bestiary","lv":11,"ac":28,"hp":240,"pc":26,"sz":"medium","tp":"aberration","f":"lost-omens-bestiary/monsters-of-myth/somnalu-oculus.json","li":"OGL"},{"n":"Soniphak","s":"howl-of-the-wild-bestiary","lv":9,"ac":27,"hp":180,"pc":21,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/soniphak.json","li":"ORC"},{"n":"Sonnorae","s":"stolen-fate-bestiary","lv":18,"ac":42,"hp":335,"pc":31,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/sonnorae.json","li":"OGL"},{"n":"Sootsoldiers","s":"rage-of-elements-bestiary","lv":10,"ac":30,"hp":165,"pc":20,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/sootsoldiers.json","li":"OGL"},{"n":"Sootsoldiers (The Radiant Host)","s":"rage-of-elements-bestiary","lv":10,"ac":30,"hp":165,"pc":20,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/sootsoldiers-the-radiant-host.json","li":"OGL"},{"n":"Sordesdaemon","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":300,"pc":26,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/sordesdaemon.json","li":"ORC"},{"n":"Sorvinaesen","s":"blood-lords-bestiary","lv":17,"ac":39,"hp":390,"pc":32,"sz":"large","tp":"giant","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/sorvinaesen.json","li":"OGL"},{"n":"Sorvuth-Ka","s":"pathfinder-monster-core-2","lv":24,"ac":52,"hp":550,"pc":42,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core-2/sorvuth-ka.json","li":"ORC"},{"n":"Soul Slime","s":"blood-lords-bestiary","lv":18,"ac":29,"hp":420,"pc":27,"sz":"large","tp":"ooze","f":"blood-lords-bestiary/book-6-ghost-kings-rage/soul-slime.json","li":"OGL"},{"n":"Soul Swarm","s":"strength-of-thousands-bestiary","lv":13,"ac":28,"hp":234,"pc":24,"sz":"gargantuan","tp":"spirit","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/soul-swarm.json","li":"OGL"},{"n":"Soulbound Doll (Brave)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-brave.json","li":"ORC"},{"n":"Soulbound Doll (Calm)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-calm.json","li":"ORC"},{"n":"Soulbound Doll (Careful)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-careful.json","li":"ORC"},{"n":"Soulbound Doll (Cruel)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-cruel.json","li":"ORC"},{"n":"Soulbound Doll (Gentle)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-gentle.json","li":"ORC"},{"n":"Soulbound Doll (Impish)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-impish.json","li":"ORC"},{"n":"Soulbound Doll (Jolly)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-jolly.json","li":"ORC"},{"n":"Soulbound Doll (Kind)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-kind.json","li":"ORC"},{"n":"Soulbound Doll (Rash)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-rash.json","li":"ORC"},{"n":"Soulbound Doll (Sassy)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-sassy.json","li":"ORC"},{"n":"Soulbound Doll (Sky King's Tomb)","s":"sky-kings-tomb-bestiary","lv":2,"ac":20,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-doll-sky-kings-tomb.json","li":"OGL"},{"n":"Soulbound Doll (Timid)","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-doll-timid.json","li":"ORC"},{"n":"Soulbound Guardian","s":"one-shot-bestiary","lv":4,"ac":20,"hp":60,"pc":11,"sz":"medium","tp":"construct","f":"one-shot-bestiary/the-great-toy-heist/soulbound-guardian.json","li":"ORC"},{"n":"Soulbound Homunculus","s":"pathfinder-monster-core","lv":0,"ac":17,"hp":17,"pc":3,"sz":"tiny","tp":"construct","f":"pathfinder-monster-core/soulbound-homunculus.json","li":"ORC"},{"n":"Soulbound Mauler (Chaotic Evil)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-chaotic-evil.json","li":"OGL"},{"n":"Soulbound Mauler (Chaotic Good)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-chaotic-good.json","li":"OGL"},{"n":"Soulbound Mauler (Chaotic Neutral)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-chaotic-neutral.json","li":"OGL"},{"n":"Soulbound Mauler (Lawful Evil)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-lawful-evil.json","li":"OGL"},{"n":"Soulbound Mauler (Lawful Good)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-lawful-good.json","li":"OGL"},{"n":"Soulbound Mauler (Lawful Neutral)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-lawful-neutral.json","li":"OGL"},{"n":"Soulbound Mauler (Neutral Evil)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-neutral-evil.json","li":"OGL"},{"n":"Soulbound Mauler (Neutral Good)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-neutral-good.json","li":"OGL"},{"n":"Soulbound Mauler (Neutral)","s":"sky-kings-tomb-bestiary","lv":4,"ac":19,"hp":72,"pc":10,"sz":"medium","tp":"construct","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/soulbound-mauler-neutral.json","li":"OGL"},{"n":"Soulbound Ruin","s":"age-of-ashes-bestiary","lv":15,"ac":37,"hp":310,"pc":25,"sz":"gargantuan","tp":"construct","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/soulbound-ruin.json","li":"OGL"},{"n":"Soulrider (Celestial)","s":"pathfinder-monster-core-2","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"aberration","f":"pathfinder-monster-core-2/soulrider-celestial.json","li":"ORC"},{"n":"Soulrider (Fiend)","s":"pathfinder-monster-core-2","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"aberration","f":"pathfinder-monster-core-2/soulrider-fiend.json","li":"ORC"},{"n":"Soulrider (Monitor)","s":"pathfinder-monster-core-2","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"aberration","f":"pathfinder-monster-core-2/soulrider-monitor.json","li":"ORC"},{"n":"Sovereign Archdragon","s":"lost-omens-bestiary","lv":23,"ac":50,"hp":520,"pc":37,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-archdragon.json","li":"ORC"},{"n":"Sovereign Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":50,"hp":520,"pc":37,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-archdragon-spellcaster.json","li":"ORC"},{"n":"Sovereign Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Sovereign Dragon (Adult)","s":"lost-omens-bestiary","lv":15,"ac":37,"hp":275,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-adult.json","li":"ORC"},{"n":"Sovereign Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":410,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Sovereign Dragon (Ancient)","s":"lost-omens-bestiary","lv":20,"ac":45,"hp":410,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-ancient.json","li":"ORC"},{"n":"Sovereign Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-young-spellcaster.json","li":"ORC"},{"n":"Sovereign Dragon (Young)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/sovereign/sovereign-dragon-young.json","li":"ORC"},{"n":"Spark Moth","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":20,"pc":7,"sz":"tiny","tp":"elemental","f":"pathfinder-monster-core-2/spark-moth.json","li":"ORC"},{"n":"Sparkeater","s":"strength-of-thousands-bestiary","lv":14,"ac":35,"hp":325,"pc":26,"sz":"large","tp":"dragon","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/sparkeater.json","li":"OGL"},{"n":"Spawn of Dahak","s":"age-of-ashes-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"small","tp":"dragon","f":"age-of-ashes-bestiary/book-2-cult-of-cinders/spawn-of-dahak.json","li":"OGL"},{"n":"Spawn of Jeharlu","s":"spore-war-bestiary","lv":22,"ac":46,"hp":540,"pc":40,"sz":"gargantuan","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/spawn-of-jeharlu.json","li":"ORC"},{"n":"Spawn Of Kothogaz","s":"lost-omens-bestiary","lv":6,"ac":24,"hp":70,"pc":14,"sz":"large","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/spawn-of-kothogaz.json","li":"OGL"},{"n":"Spawn of Taon","s":"strength-of-thousands-bestiary","lv":11,"ac":30,"hp":175,"pc":21,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/spawn-of-taon.json","li":"OGL"},{"n":"Spawning Soulrider (Celestial)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":20,"pc":8,"sz":"small","tp":"aberration","f":"pathfinder-monster-core-2/spawning-soulrider-celestial.json","li":"ORC"},{"n":"Spawning Soulrider (Fiend)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":20,"pc":8,"sz":"small","tp":"aberration","f":"pathfinder-monster-core-2/spawning-soulrider-fiend.json","li":"ORC"},{"n":"Spawning Soulrider (Monitor)","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":20,"pc":8,"sz":"small","tp":"aberration","f":"pathfinder-monster-core-2/spawning-soulrider-monitor.json","li":"ORC"},{"n":"Speaker Of Svaryr","s":"stolen-fate-bestiary","lv":20,"ac":44,"hp":380,"pc":34,"sz":"medium","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/speaker-of-svaryr.json","li":"OGL"},{"n":"Speakers to the Wind (Gnoll Cascade Bearer)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":31,"hp":260,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/speakers-to-the-wind-gnoll-cascade-bearer.json","li":"OGL"},{"n":"Spear Frog","s":"pathfinder-monster-core-2","lv":0,"ac":14,"hp":12,"pc":6,"sz":"tiny","tp":"animal","f":"pathfinder-monster-core-2/spear-frog.json","li":"ORC"},{"n":"Spectral Devil","s":"lost-omens-bestiary","lv":10,"ac":28,"hp":140,"pc":19,"sz":"large","tp":"fiend","f":"lost-omens-bestiary/monsters-of-myth/spectral-devil.json","li":"OGL"},{"n":"Spectral Fang Paleohemoth","s":"pathfinder-dark-archive","lv":12,"ac":33,"hp":195,"pc":20,"sz":"large","tp":"construct","f":"pathfinder-dark-archive/npcs/spectral-fang-paleohemoth.json","li":"ORC"},{"n":"Speiroikos","s":"myth-speaker-bestiary","lv":3,"ac":18,"hp":50,"pc":9,"sz":"gargantuan","tp":"construct","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/speiroikos.json","li":"ORC"},{"n":"Spellscar Fext","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":100,"pc":15,"sz":"medium","tp":"undead","f":"lost-omens-bestiary/impossible-lands/spellscar-fext.json","li":"OGL"},{"n":"Spellscar Sky Marauder","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":22,"hp":85,"pc":12,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/spellscar-sky-marauder.json","li":"OGL"},{"n":"Spellskein","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":15,"pc":2,"sz":"tiny","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/spellskein.json","li":"OGL"},{"n":"Spellskein (Consecrate)","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":15,"pc":2,"sz":"tiny","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/spellskein-consecrate.json","li":"OGL"},{"n":"Spellskein (Control Weather)","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":15,"pc":2,"sz":"tiny","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/spellskein-control-weather.json","li":"OGL"},{"n":"Spellskein (Heroes' Feast)","s":"strength-of-thousands-bestiary","lv":0,"ac":16,"hp":15,"pc":2,"sz":"tiny","tp":"construct","f":"strength-of-thousands-bestiary/book-1-kindled-magic/spellskein-heroes-feast.json","li":"OGL"},{"n":"Spellvoid","s":"abomination-vaults-bestiary","lv":6,"ac":27,"hp":50,"pc":16,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/spellvoid.json","li":"OGL"},{"n":"Sphinx","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":135,"pc":18,"sz":"large","tp":"beast","f":"pathfinder-monster-core/sphinx.json","li":"ORC"},{"n":"Spider Swarm","s":"pathfinder-monster-core","lv":0,"ac":15,"hp":12,"pc":4,"sz":"large","tp":"animal","f":"pathfinder-monster-core/spider-swarm.json","li":"ORC"},{"n":"Spinel Leviathan Syndara","s":"fists-of-the-ruby-phoenix-bestiary","lv":24,"ac":51,"hp":550,"pc":46,"sz":"gargantuan","tp":"monitor","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/spinel-leviathan-syndara.json","li":"OGL"},{"n":"Spinosaurus","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":200,"pc":21,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core-2/spinosaurus.json","li":"ORC"},{"n":"Spiral Centurion","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":170,"pc":20,"sz":"medium","tp":"construct","f":"pathfinder-monster-core-2/spiral-centurion.json","li":"ORC"},{"n":"Spirit Binder","s":"pathfinder-npc-core","lv":11,"ac":28,"hp":175,"pc":20,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/mystic/spirit-binder.json","li":"ORC"},{"n":"Spirit of Stisshak","s":"kingmaker-bestiary","lv":7,"ac":28,"hp":65,"pc":18,"sz":"small","tp":"aberration","f":"kingmaker-bestiary/spirit-of-stisshak.json","li":"OGL"},{"n":"Spirit Priest","s":"pathfinder-npc-core","lv":5,"ac":19,"hp":78,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/dwarf/spirit-priest.json","li":"ORC"},{"n":"Spirit Turtle","s":"fists-of-the-ruby-phoenix-bestiary","lv":21,"ac":45,"hp":320,"pc":35,"sz":"gargantuan","tp":"fey","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/spirit-turtle.json","li":"OGL"},{"n":"Spiritbound Aluum","s":"age-of-ashes-bestiary","lv":16,"ac":39,"hp":255,"pc":28,"sz":"large","tp":"construct","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/spiritbound-aluum.json","li":"OGL"},{"n":"Spite-Screamer","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":23,"hp":70,"pc":13,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/spite-screamer.json","li":"ORC"},{"n":"Spitting Sawfly","s":"wardens-of-wildwood-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"medium","tp":"beast","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/spitting-sawfly.json","li":"ORC"},{"n":"Splinter Officer","s":"claws-of-the-tyrant-bestiary","lv":19,"ac":42,"hp":375,"pc":35,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/splinter-officer.json","li":"ORC"},{"n":"Splintershank","s":"wardens-of-wildwood-bestiary","lv":6,"ac":23,"hp":95,"pc":14,"sz":"tiny","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/splintershank.json","li":"ORC"},{"n":"Splitsoul Object","s":"one-shot-bestiary","lv":1,"ac":16,"hp":14,"pc":0,"sz":"small","tp":"construct","f":"one-shot-bestiary/the-great-toy-heist/splitsoul-object.json","li":"ORC"},{"n":"Spore Queen Quilindra","s":"spore-war-bestiary","lv":20,"ac":44,"hp":375,"pc":34,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/spore-queen-quilindra.json","li":"ORC"},{"n":"Spore Thrall","s":"spore-war-bestiary","lv":10,"ac":29,"hp":175,"pc":18,"sz":"medium","tp":"fungus","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/spore-thrall.json","li":"ORC"},{"n":"Spore Tyrannosaurus","s":"spore-war-bestiary","lv":13,"ac":32,"hp":280,"pc":23,"sz":"gargantuan","tp":"animal","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/spore-tyrannosaurus.json","li":"ORC"},{"n":"Sporeback Frog","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":94,"pc":12,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/sporeback-frog.json","li":"ORC"},{"n":"Sporeborn Myceloid","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":70,"pc":10,"sz":"medium","tp":"fungus","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/sporeborn-myceloid.json","li":"OGL"},{"n":"Sporeborn Sheep","s":"sky-kings-tomb-bestiary","lv":1,"ac":13,"hp":50,"pc":3,"sz":"medium","tp":"elemental","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/sporeborn-sheep.json","li":"OGL"},{"n":"Sporeborn Skull","s":"sky-kings-tomb-bestiary","lv":2,"ac":18,"hp":30,"pc":9,"sz":"tiny","tp":"fungus","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/sporeborn-skull.json","li":"OGL"},{"n":"Sporescout","s":"spore-war-bestiary","lv":14,"ac":36,"hp":275,"pc":24,"sz":"small","tp":"fungus","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/sporescout.json","li":"ORC"},{"n":"Sporespawn of Treerazer","s":"spore-war-bestiary","lv":22,"ac":48,"hp":432,"pc":36,"sz":"huge","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/sporespawn-of-treerazer.json","li":"ORC"},{"n":"Sportlebore Swarm","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":85,"pc":13,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/sportlebore-swarm.json","li":"ORC"},{"n":"Sprigjack","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":10,"pc":5,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/sprigjack.json","li":"ORC"},{"n":"Spring-Heeled Jack","s":"lost-omens-bestiary","lv":3,"ac":18,"hp":45,"pc":10,"sz":"small","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/spring-heeled-jack.json","li":"OGL"},{"n":"Spring's Crown","s":"hellbreakers-bestiary","lv":8,"ac":26,"hp":100,"pc":13,"sz":"small","tp":"beast","f":"hellbreakers-bestiary/springs-crown.json","li":"ORC"},{"n":"Sprite","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":7,"pc":4,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/sprite.json","li":"ORC"},{"n":"Spy","s":"pathfinder-npc-core","lv":6,"ac":23,"hp":90,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/spy.json","li":"ORC"},{"n":"Squirrelwind","s":"blog-bestiary","lv":10,"ac":32,"hp":130,"pc":19,"sz":"large","tp":"animal","f":"blog-bestiary/squirrelwind.json","li":"OGL"},{"n":"Sramana","s":"pathfinder-monster-core-2","lv":15,"ac":36,"hp":300,"pc":29,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/sramana.json","li":"ORC"},{"n":"Ssumzili","s":"strength-of-thousands-bestiary","lv":12,"ac":33,"hp":201,"pc":25,"sz":"medium","tp":"fey","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/ssumzili.json","li":"OGL"},{"n":"Stag Lord Bandit","s":"kingmaker-bestiary","lv":0,"ac":15,"hp":16,"pc":4,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/stag-lord-bandit.json","li":"OGL"},{"n":"Stalker Automaton","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":65,"pc":15,"sz":"medium","tp":"construct","f":"pathfinder-monster-core-2/stalker-automaton.json","li":"ORC"},{"n":"Standard Bearer","s":"pathfinder-npc-core","lv":4,"ac":20,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/military/standard-bearer.json","li":"ORC"},{"n":"Stargut Hydra","s":"howl-of-the-wild-bestiary","lv":9,"ac":27,"hp":150,"pc":19,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/stargut-hydra.json","li":"ORC"},{"n":"Starved Staff","s":"extinction-curse-bestiary","lv":14,"ac":32,"hp":250,"pc":26,"sz":"huge","tp":"undead","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/starved-staff.json","li":"OGL"},{"n":"Starving Werebat","s":"rusthenge-bestiary","lv":2,"ac":18,"hp":35,"pc":8,"sz":"small","tp":"beast","f":"rusthenge-bestiary/starving-werebat.json","li":"OGL"},{"n":"Starwatch Commando","s":"agents-of-edgewatch-bestiary","lv":11,"ac":31,"hp":195,"pc":24,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/starwatch-commando.json","li":"OGL"},{"n":"Statue of Alaznist","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":23,"hp":54,"pc":11,"sz":"medium","tp":"construct","f":"seven-dooms-for-sandpoint-bestiary/statue-of-alaznist.json","li":"OGL"},{"n":"Steaming Kingdom Bartender","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":16,"hp":35,"pc":8,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/steaming-kingdom-bartender.json","li":"OGL"},{"n":"Stegosaurus","s":"pathfinder-monster-core","lv":7,"ac":23,"hp":125,"pc":15,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/stegosaurus.json","li":"ORC"},{"n":"Stelemora","s":"claws-of-the-tyrant-bestiary","lv":7,"ac":24,"hp":188,"pc":17,"sz":"large","tp":"fey","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/stelemora.json","li":"ORC"},{"n":"Sthira","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":45,"hp":475,"pc":33,"sz":"large","tp":"undead","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/sthira.json","li":"OGL"},{"n":"Stickfoot","s":"seven-dooms-for-sandpoint-bestiary","lv":1,"ac":19,"hp":37,"pc":7,"sz":"medium","tp":"animal","f":"seven-dooms-for-sandpoint-bestiary/stickfoot.json","li":"OGL"},{"n":"Stingy","s":"season-of-ghosts-bestiary","lv":1,"ac":16,"hp":18,"pc":4,"sz":"medium","tp":"animal","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/stingy.json","li":"ORC"},{"n":"Stinkweed Shambler","s":"troubles-in-otari-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"plant","f":"troubles-in-otari-bestiary/stinkweed-shambler.json","li":"OGL"},{"n":"Stirvyn Banyan","s":"extinction-curse-bestiary","lv":12,"ac":31,"hp":230,"pc":21,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/stirvyn-banyan.json","li":"OGL"},{"n":"Stone Bulwark","s":"pathfinder-monster-core","lv":11,"ac":30,"hp":175,"pc":17,"sz":"large","tp":"construct","f":"pathfinder-monster-core/stone-bulwark.json","li":"ORC"},{"n":"Stone Ghost","s":"strength-of-thousands-bestiary","lv":5,"ac":20,"hp":40,"pc":13,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-1-kindled-magic/stone-ghost.json","li":"OGL"},{"n":"Stone Giant","s":"pathfinder-monster-core","lv":8,"ac":27,"hp":150,"pc":16,"sz":"large","tp":"giant","f":"pathfinder-monster-core/stone-giant.json","li":"ORC"},{"n":"Stone Giant Monk","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":170,"pc":16,"sz":"large","tp":"giant","f":"lost-omens-bestiary/character-guide/stone-giant-monk.json","li":"OGL"},{"n":"Stone Horse","s":"fall-of-plaguestone","lv":2,"ac":16,"hp":30,"pc":6,"sz":"large","tp":"animal","f":"fall-of-plaguestone/stone-horse.json","li":"OGL"},{"n":"Stone Lion","s":"pathfinder-monster-core-2","lv":4,"ac":21,"hp":50,"pc":13,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/stone-lion.json","li":"ORC"},{"n":"Stone Lion Cub","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":28,"pc":10,"sz":"large","tp":"celestial","f":"pathfinder-monster-core-2/stone-lion-cub.json","li":"ORC"},{"n":"Stone Mauler","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":180,"pc":16,"sz":"large","tp":"elemental","f":"pathfinder-monster-core/stone-mauler.json","li":"ORC"},{"n":"Stone Sister","s":"lost-omens-bestiary","lv":6,"ac":24,"hp":75,"pc":11,"sz":"medium","tp":"undead","f":"lost-omens-bestiary/impossible-lands/stone-sister.json","li":"OGL"},{"n":"Stone Spider","s":"season-of-ghosts-bestiary","lv":5,"ac":22,"hp":62,"pc":14,"sz":"large","tp":"celestial","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/stone-spider.json","li":"ORC"},{"n":"Stone-Breasted Owl","s":"gatewalkers-bestiary","lv":5,"ac":22,"hp":75,"pc":15,"sz":"small","tp":"beast","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/stone-breasted-owl.json","li":"ORC"},{"n":"Stonefish","s":"howl-of-the-wild-bestiary","lv":0,"ac":16,"hp":15,"pc":7,"sz":"tiny","tp":"animal","f":"howl-of-the-wild-bestiary/stonefish.json","li":"ORC"},{"n":"Stonefish Swarm","s":"howl-of-the-wild-bestiary","lv":2,"ac":16,"hp":25,"pc":11,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/stonefish-swarm.json","li":"ORC"},{"n":"Stonemaker","s":"sky-kings-tomb-bestiary","lv":5,"ac":22,"hp":75,"pc":11,"sz":"medium","tp":"beast","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/stonemaker.json","li":"OGL"},{"n":"Stoneriver","s":"sky-kings-tomb-bestiary","lv":12,"ac":32,"hp":220,"pc":23,"sz":"gargantuan","tp":"celestial","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/stoneriver.json","li":"OGL"},{"n":"Stony Bat","s":"howl-of-the-wild-bestiary","lv":3,"ac":18,"hp":48,"pc":11,"sz":"small","tp":"beast","f":"howl-of-the-wild-bestiary/stony-bat.json","li":"ORC"},{"n":"Stony Goat","s":"howl-of-the-wild-bestiary","lv":2,"ac":17,"hp":28,"pc":11,"sz":"small","tp":"animal","f":"howl-of-the-wild-bestiary/stony-goat.json","li":"ORC"},{"n":"Storied Harrowkin","s":"stolen-fate-bestiary","lv":10,"ac":30,"hp":180,"pc":17,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/storied-harrowkin.json","li":"OGL"},{"n":"Storm Hag","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":90,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/storm-hag.json","li":"ORC"},{"n":"Storm Snake","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":70,"pc":12,"sz":"medium","tp":"beast","f":"howl-of-the-wild-bestiary/storm-snake.json","li":"ORC"},{"n":"Storm-Struck Arboreal","s":"kingmaker-bestiary","lv":16,"ac":37,"hp":370,"pc":28,"sz":"huge","tp":"plant","f":"kingmaker-bestiary/storm-struck-arboreal.json","li":"OGL"},{"n":"Stormblood Tiger","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":24,"hp":114,"pc":18,"sz":"large","tp":"beast","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/stormblood-tiger.json","li":"ORC"},{"n":"Stormcrown Archdragon","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":450,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-archdragon.json","li":"ORC"},{"n":"Stormcrown Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":450,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-archdragon-spellcaster.json","li":"ORC"},{"n":"Stormcrown Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":254,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Stormcrown Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":254,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-adult.json","li":"ORC"},{"n":"Stormcrown Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":360,"pc":30,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Stormcrown Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":360,"pc":30,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-ancient.json","li":"ORC"},{"n":"Stormcrown Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-young-spellcaster.json","li":"ORC"},{"n":"Stormcrown Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":155,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/stormcrown/stormcrown-dragon-young.json","li":"ORC"},{"n":"Stormdrinker","s":"wardens-of-wildwood-bestiary","lv":7,"ac":23,"hp":145,"pc":14,"sz":"large","tp":"plant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/stormdrinker.json","li":"ORC"},{"n":"Straugh","s":"blood-lords-bestiary","lv":10,"ac":29,"hp":220,"pc":17,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/straugh.json","li":"OGL"},{"n":"Street Musician","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":32,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/street-musician.json","li":"ORC"},{"n":"Striding Fire","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":115,"pc":14,"sz":"medium","tp":"elemental","f":"pathfinder-monster-core-2/striding-fire.json","li":"ORC"},{"n":"Strigoi Progenitor","s":"shadows-at-sundown-bestiary","lv":13,"ac":34,"hp":180,"pc":23,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/strigoi-progenitor.json","li":"OGL"},{"n":"Strigoi Servant","s":"shadows-at-sundown-bestiary","lv":10,"ac":30,"hp":130,"pc":20,"sz":"medium","tp":"undead","f":"shadows-at-sundown-bestiary/strigoi-servant.json","li":"OGL"},{"n":"String Slime","s":"pathfinder-monster-core","lv":3,"ac":10,"hp":90,"pc":5,"sz":"large","tp":"ooze","f":"pathfinder-monster-core/string-slime.json","li":"ORC"},{"n":"Strix Aerialist","s":"pathfinder-monster-core-2","lv":9,"ac":28,"hp":120,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/strix-aerialist.json","li":"ORC"},{"n":"Strix Kinmate","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":25,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/strix-kinmate.json","li":"ORC"},{"n":"Stumpfield War Chanter Choir","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":120,"pc":14,"sz":"gargantuan","tp":"humanoid","f":"hellbreakers-bestiary/stumpfield-war-chanter-choir.json","li":"ORC"},{"n":"Stumpfield War Saboteurs","s":"hellbreakers-bestiary","lv":6,"ac":23,"hp":99,"pc":13,"sz":"gargantuan","tp":"humanoid","f":"hellbreakers-bestiary/stumpfield-war-saboteurs.json","li":"ORC"},{"n":"Stygira","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":80,"pc":17,"sz":"medium","tp":"fey","f":"pathfinder-monster-core-2/stygira.json","li":"ORC"},{"n":"Subaquatic Marauder","s":"pathfinder-npc-core","lv":5,"ac":23,"hp":60,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/seafarer/subaquatic-marauder.json","li":"ORC"},{"n":"Sublime Breath","s":"war-of-immortals-bestiary","lv":6,"ac":24,"hp":111,"pc":16,"sz":"medium","tp":"fey","f":"war-of-immortals-bestiary/sublime-breath.json","li":"ORC"},{"n":"Succubus","s":"pathfinder-monster-core","lv":7,"ac":23,"hp":100,"pc":15,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/succubus.json","li":"ORC"},{"n":"Sulfur Zombie","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":125,"pc":12,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/sulfur-zombie.json","li":"ORC"},{"n":"Suli Dune Dancer","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":16,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/suli-dune-dancer.json","li":"ORC"},{"n":"Sulvik","s":"blood-lords-bestiary","lv":9,"ac":27,"hp":190,"pc":21,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/sulvik.json","li":"OGL"},{"n":"Sumbreiva","s":"pathfinder-monster-core-2","lv":16,"ac":39,"hp":290,"pc":29,"sz":"large","tp":"humanoid","f":"pathfinder-monster-core-2/sumbreiva.json","li":"ORC"},{"n":"Summer Hora","s":"quest-for-the-frozen-flame-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/summer-hora.json","li":"OGL"},{"n":"Summer Hora Queen","s":"quest-for-the-frozen-flame-bestiary","lv":13,"ac":35,"hp":190,"pc":26,"sz":"medium","tp":"fey","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/summer-hora-queen.json","li":"OGL"},{"n":"Summoning Chamber Erinys","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":120,"pc":18,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/summoning-chamber-erinys.json","li":"OGL"},{"n":"Sun Warrior Brigade","s":"strength-of-thousands-bestiary","lv":12,"ac":33,"hp":216,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/sun-warrior-brigade.json","li":"OGL"},{"n":"Sunburst Corpse","s":"strength-of-thousands-bestiary","lv":14,"ac":35,"hp":255,"pc":25,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/sunburst-corpse.json","li":"OGL"},{"n":"Sunscale Serpent","s":"howl-of-the-wild-bestiary","lv":14,"ac":36,"hp":251,"pc":25,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/sunscale-serpent.json","li":"ORC"},{"n":"Surgeon","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":30,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/surgeon.json","li":"ORC"},{"n":"Surjit Hamelan","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":220,"pc":25,"sz":"small","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/surjit-hamelan.json","li":"OGL"},{"n":"Suvarden","s":"stolen-fate-bestiary","lv":7,"ac":24,"hp":125,"pc":17,"sz":"large","tp":"beast","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/suvarden.json","li":"OGL"},{"n":"Svartalfar Killer","s":"agents-of-edgewatch-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"medium","tp":"fey","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/svartalfar-killer.json","li":"OGL"},{"n":"Svaryr Commander","s":"stolen-fate-bestiary","lv":19,"ac":44,"hp":330,"pc":33,"sz":"medium","tp":"monitor","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/svaryr-commander.json","li":"OGL"},{"n":"Svaryr Soldier","s":"stolen-fate-bestiary","lv":16,"ac":39,"hp":295,"pc":30,"sz":"medium","tp":"monitor","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/svaryr-soldier.json","li":"OGL"},{"n":"Svetlana","s":"kingmaker-bestiary","lv":1,"ac":15,"hp":20,"pc":5,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/svetlana.json","li":"OGL"},{"n":"Swamp Beetle","s":"standalone-adventures","lv":-1,"ac":15,"hp":6,"pc":6,"sz":"small","tp":"animal","f":"standalone-adventures/adventure-1-mystery-at-the-old-mill/swamp-beetle.json","li":"ORC"},{"n":"Swamp Blight","s":"spore-war-bestiary","lv":17,"ac":38,"hp":300,"pc":29,"sz":"medium","tp":"ooze","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/swamp-blight.json","li":"ORC"},{"n":"Swardlands Delinquent","s":"extinction-curse-bestiary","lv":4,"ac":21,"hp":65,"pc":8,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/swardlands-delinquent.json","li":"OGL"},{"n":"Swarm Voice","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/ratfolk/swarm-voice.json","li":"ORC"},{"n":"Swee Pup","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":20,"hp":23,"pc":8,"sz":"tiny","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/swee-pup.json","li":"OGL"},{"n":"Sweet Hag","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/sweet-hag.json","li":"ORC"},{"n":"Swiftrun Clergy","s":"hellbreakers-bestiary","lv":6,"ac":24,"hp":96,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"hellbreakers-bestiary/swiftrun-clergy.json","li":"ORC"},{"n":"Swordfish","s":"howl-of-the-wild-bestiary","lv":3,"ac":18,"hp":50,"pc":11,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/swordfish.json","li":"ORC"},{"n":"Swordkeeper","s":"pathfinder-monster-core-2","lv":10,"ac":29,"hp":245,"pc":20,"sz":"large","tp":"construct","f":"pathfinder-monster-core-2/swordkeeper.json","li":"ORC"},{"n":"Syarstik Painted-Tiger","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":21,"hp":40,"pc":14,"sz":"large","tp":"spirit","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/syarstik-painted-tiger.json","li":"OGL"},{"n":"Sykever","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":335,"pc":29,"sz":"huge","tp":"undead","f":"pathfinder-monster-core-2/sykever.json","li":"ORC"},{"n":"Sylirican Phalanx","s":"myth-speaker-bestiary","lv":11,"ac":31,"hp":165,"pc":24,"sz":"gargantuan","tp":"spirit","f":"myth-speaker-bestiary/book-3-titanbane/sylirican-phalanx.json","li":"ORC"},{"n":"Sylph Sneak","s":"pathfinder-monster-core-2","lv":1,"ac":18,"hp":17,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/sylph-sneak.json","li":"ORC"},{"n":"Sylvarindarian","s":"wardens-of-wildwood-bestiary","lv":7,"ac":25,"hp":110,"pc":15,"sz":"small","tp":"fey","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/sylvarindarian.json","li":"ORC"},{"n":"Symbiotic Amoeba","s":"gatewalkers-bestiary","lv":4,"ac":15,"hp":1,"pc":0,"sz":"tiny","tp":"beast","f":"gatewalkers-bestiary/book-1-the-seventh-arch/symbiotic-amoeba.json","li":"ORC"},{"n":"Syndara the Sculptor","s":"fists-of-the-ruby-phoenix-bestiary","lv":22,"ac":48,"hp":380,"pc":39,"sz":"medium","tp":"monitor","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/syndara-the-sculptor.json","li":"OGL"},{"n":"Syu Tak-nwa (Level 14)","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":34,"hp":220,"pc":26,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/syu-tak-nwa-level-14.json","li":"OGL"},{"n":"Syu Tak-nwa (Level 16)","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":37,"hp":250,"pc":29,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/syu-tak-nwa-level-16.json","li":"OGL"},{"n":"Syu Tak-nwa (Level 20)","s":"fists-of-the-ruby-phoenix-bestiary","lv":20,"ac":42,"hp":360,"pc":33,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/syu-tak-nwa-level-20.json","li":"OGL"},{"n":"Ta'apundo","s":"strength-of-thousands-bestiary","lv":19,"ac":45,"hp":440,"pc":35,"sz":"huge","tp":"fey","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/taapundo.json","li":"OGL"},{"n":"Tabellia","s":"pathfinder-monster-core","lv":14,"ac":36,"hp":285,"pc":26,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core/tabellia.json","li":"ORC"},{"n":"Taiga Yai","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":270,"pc":30,"sz":"huge","tp":"fiend","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/taiga-yai.json","li":"OGL"},{"n":"Takatorra (Daitengu Form)","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":42,"hp":331,"pc":32,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/takatorra-daitengu-form.json","li":"OGL"},{"n":"Takatorra (Level 13)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":32,"hp":300,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/takatorra-level-13.json","li":"OGL"},{"n":"Takatorra (Level 9)","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":26,"hp":210,"pc":20,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/takatorra-level-9.json","li":"OGL"},{"n":"Takulu Ot","s":"strength-of-thousands-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-1-kindled-magic/takulu-ot.json","li":"OGL"},{"n":"Talamira","s":"age-of-ashes-bestiary","lv":13,"ac":34,"hp":185,"pc":24,"sz":"medium","tp":"spirit","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/talamira.json","li":"OGL"},{"n":"Talaro","s":"prey-for-death-bestiary","lv":15,"ac":36,"hp":272,"pc":25,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/talaro.json","li":"ORC"},{"n":"Taldan Cave Squirrel","s":"howl-of-the-wild-bestiary","lv":5,"ac":21,"hp":95,"pc":15,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/taldan-cave-squirrel.json","li":"ORC"},{"n":"Taljjae","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae.json","li":"OGL"},{"n":"Taljjae (The Beast)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-beast.json","li":"OGL"},{"n":"Taljjae (The General)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-general.json","li":"OGL"},{"n":"Taljjae (The Grandmother)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-grandmother.json","li":"OGL"},{"n":"Taljjae (The Hermit)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-hermit.json","li":"OGL"},{"n":"Taljjae (The Hero)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-hero.json","li":"OGL"},{"n":"Taljjae (The Nobleman)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-nobleman.json","li":"OGL"},{"n":"Taljjae (The Wanderer)","s":"lost-omens-bestiary","lv":18,"ac":43,"hp":400,"pc":33,"sz":"large","tp":"fey","f":"lost-omens-bestiary/monsters-of-myth/taljjae-the-wanderer.json","li":"OGL"},{"n":"Tallow Guardian","s":"crown-of-the-kobold-king-bestiary","lv":7,"ac":23,"hp":145,"pc":13,"sz":"medium","tp":"construct","f":"crown-of-the-kobold-king-bestiary/tallow-guardian.json","li":"OGL"},{"n":"Tallow Ooze","s":"extinction-curse-bestiary","lv":11,"ac":19,"hp":270,"pc":14,"sz":"medium","tp":"ooze","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/tallow-ooze.json","li":"OGL"},{"n":"Tallusian","s":"claws-of-the-tyrant-bestiary","lv":5,"ac":21,"hp":76,"pc":12,"sz":"medium","tp":"celestial","f":"claws-of-the-tyrant-bestiary/2-ashes-for-ozem/tallusian.json","li":"ORC"},{"n":"Talon Peak Roc","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":220,"pc":22,"sz":"gargantuan","tp":"animal","f":"kingmaker-bestiary/talon-peak-roc.json","li":"OGL"},{"n":"Talos Gadgeteer","s":"rage-of-elements-bestiary","lv":1,"ac":17,"hp":17,"pc":3,"sz":"medium","tp":"humanoid","f":"rage-of-elements-bestiary/talos-gadgeteer.json","li":"OGL"},{"n":"Tamikan","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":38,"hp":295,"pc":23,"sz":"large","tp":"dragon","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/tamikan.json","li":"OGL"},{"n":"Tanessa Fleer","s":"extinction-curse-bestiary","lv":9,"ac":22,"hp":155,"pc":19,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/tanessa-fleer.json","li":"OGL"},{"n":"Tangle Khravgodon","s":"spore-war-bestiary","lv":14,"ac":35,"hp":280,"pc":24,"sz":"huge","tp":"beast","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/tangle-khravgodon.json","li":"ORC"},{"n":"Tanglebones","s":"malevolence-bestiary","lv":7,"ac":24,"hp":145,"pc":17,"sz":"large","tp":"undead","f":"malevolence-bestiary/tanglebones.json","li":"OGL"},{"n":"Tanglebriar Bhuta","s":"spore-war-bestiary","lv":11,"ac":30,"hp":175,"pc":22,"sz":"medium","tp":"undead","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/tanglebriar-bhuta.json","li":"ORC"},{"n":"Tanglebriar Creeper","s":"spore-war-bestiary","lv":15,"ac":37,"hp":235,"pc":27,"sz":"huge","tp":"aberration","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/tanglebriar-creeper.json","li":"ORC"},{"n":"Tanglebriar Isqulug","s":"spore-war-bestiary","lv":12,"ac":33,"hp":250,"pc":25,"sz":"medium","tp":"aberration","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/tanglebriar-isqulug.json","li":"ORC"},{"n":"Tanglebriar Regent","s":"spore-war-bestiary","lv":13,"ac":31,"hp":270,"pc":24,"sz":"huge","tp":"fungus","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/tanglebriar-regent.json","li":"ORC"},{"n":"Tantriog","s":"rage-of-elements-bestiary","lv":7,"ac":24,"hp":118,"pc":16,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/tantriog.json","li":"OGL"},{"n":"Tanuki Village Hero","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":21,"pc":4,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core-2/tanuki-village-hero.json","li":"ORC"},{"n":"Taon","s":"strength-of-thousands-bestiary","lv":15,"ac":38,"hp":230,"pc":25,"sz":"medium","tp":"undead","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/taon.json","li":"OGL"},{"n":"Tar Ooze","s":"quest-for-the-frozen-flame-bestiary","lv":10,"ac":18,"hp":255,"pc":18,"sz":"huge","tp":"ooze","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/tar-ooze.json","li":"OGL"},{"n":"Tar Zombie Mammoth","s":"quest-for-the-frozen-flame-bestiary","lv":9,"ac":26,"hp":240,"pc":18,"sz":"huge","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/tar-zombie-mammoth.json","li":"OGL"},{"n":"Tar Zombie Predator","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":23,"hp":180,"pc":15,"sz":"large","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/tar-zombie-predator.json","li":"OGL"},{"n":"Tar Zombie Snatcher","s":"quest-for-the-frozen-flame-bestiary","lv":6,"ac":22,"hp":130,"pc":12,"sz":"medium","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/tar-zombie-snatcher.json","li":"OGL"},{"n":"Tardigrade Swarm","s":"howl-of-the-wild-bestiary","lv":12,"ac":28,"hp":140,"pc":21,"sz":"large","tp":"animal","f":"howl-of-the-wild-bestiary/tardigrade-swarm.json","li":"ORC"},{"n":"Tarn Linnorm","s":"pathfinder-monster-core","lv":20,"ac":46,"hp":400,"pc":35,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/tarn-linnorm.json","li":"ORC"},{"n":"Tarrasque, The Armageddon Engine","s":"age-of-ashes-bestiary","lv":25,"ac":54,"hp":540,"pc":48,"sz":"gargantuan","tp":"beast","f":"age-of-ashes-bestiary/book-6-broken-promises/tarrasque-the-armageddon-engine.json","li":"OGL"},{"n":"Tartuccio","s":"kingmaker-bestiary","lv":4,"ac":19,"hp":65,"pc":9,"sz":"small","tp":"humanoid","f":"kingmaker-bestiary/tartuccio.json","li":"OGL"},{"n":"Tashlock Banyan","s":"extinction-curse-bestiary","lv":12,"ac":33,"hp":215,"pc":20,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/tashlock-banyan.json","li":"OGL"},{"n":"Tatterthread","s":"strength-of-thousands-bestiary","lv":20,"ac":46,"hp":400,"pc":39,"sz":"large","tp":"fey","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/tatterthread.json","li":"OGL"},{"n":"Tatzlwyrm","s":"pathfinder-monster-core-2","lv":2,"ac":18,"hp":30,"pc":8,"sz":"medium","tp":"dragon","f":"pathfinder-monster-core-2/tatzlwyrm.json","li":"ORC"},{"n":"Taunting Monk's Skull","s":"season-of-ghosts-bestiary","lv":6,"ac":24,"hp":100,"pc":15,"sz":"tiny","tp":"undead","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/taunting-monks-skull.json","li":"ORC"},{"n":"Taunting Skull","s":"book-of-the-dead-bestiary","lv":5,"ac":22,"hp":80,"pc":13,"sz":"tiny","tp":"undead","f":"book-of-the-dead-bestiary/taunting-skull.json","li":"OGL"},{"n":"Tax Collector","s":"pathfinder-npc-core","lv":-1,"ac":14,"hp":6,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/tax-collector.json","li":"ORC"},{"n":"Taxidermic Dog","s":"one-shot-bestiary","lv":1,"ac":16,"hp":17,"pc":7,"sz":"small","tp":"undead","f":"one-shot-bestiary/little-trouble-in-big-absalom/taxidermic-dog.json","li":"OGL"},{"n":"Teacher","s":"pathfinder-npc-core","lv":-1,"ac":12,"hp":5,"pc":4,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/scholar/teacher.json","li":"ORC"},{"n":"Teaching Assistant","s":"blood-lords-bestiary","lv":5,"ac":22,"hp":55,"pc":11,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-2-graveclaw/teaching-assistant.json","li":"OGL"},{"n":"Tehialai-Thief-of-Ships","s":"lost-omens-bestiary","lv":13,"ac":32,"hp":200,"pc":26,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/tehialai-thief-of-ships.json","li":"OGL"},{"n":"Temagyr","s":"gatewalkers-bestiary","lv":1,"ac":16,"hp":25,"pc":9,"sz":"medium","tp":"fey","f":"gatewalkers-bestiary/book-1-the-seventh-arch/temagyr.json","li":"ORC"},{"n":"Temperbrand","s":"prey-for-death-bestiary","lv":18,"ac":41,"hp":335,"pc":31,"sz":"huge","tp":"elemental","f":"prey-for-death-bestiary/temperbrand.json","li":"ORC"},{"n":"Tempest Incarnate","s":"pathfinder-npc-core","lv":19,"ac":40,"hp":360,"pc":29,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/tempest-incarnate.json","li":"ORC"},{"n":"Tempest-Sun Mage","s":"lost-omens-bestiary","lv":11,"ac":28,"hp":145,"pc":18,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/tempest-sun-mage.json","li":"OGL"},{"n":"Temteki","s":"lost-omens-bestiary","lv":5,"ac":21,"hp":80,"pc":13,"sz":"medium","tp":"elemental","f":"lost-omens-bestiary/monsters-of-myth/temteki.json","li":"OGL"},{"n":"Tenebric Giant","s":"blood-lords-bestiary","lv":17,"ac":39,"hp":360,"pc":31,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/tenebric-giant.json","li":"OGL"},{"n":"Tengu Bladesmith","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":100,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tengu/tengu-bladesmith.json","li":"ORC"},{"n":"Tengu Sneak","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":27,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/tengu-sneak.json","li":"ORC"},{"n":"Tennin","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":155,"pc":17,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/tennin.json","li":"ORC"},{"n":"Tenome","s":"agents-of-edgewatch-bestiary","lv":4,"ac":21,"hp":60,"pc":14,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/tenome.json","li":"OGL"},{"n":"Teraphant","s":"agents-of-edgewatch-bestiary","lv":9,"ac":27,"hp":175,"pc":18,"sz":"huge","tp":"beast","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/teraphant.json","li":"OGL"},{"n":"Tern Flock","s":"myth-speaker-bestiary","lv":2,"ac":16,"hp":20,"pc":8,"sz":"large","tp":"animal","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/tern-flock.json","li":"ORC"},{"n":"Terotricus","s":"pathfinder-monster-core","lv":19,"ac":42,"hp":370,"pc":31,"sz":"gargantuan","tp":"fungus","f":"pathfinder-monster-core/terotricus.json","li":"ORC"},{"n":"Terra Carver","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":265,"pc":23,"sz":"huge","tp":"elemental","f":"pathfinder-monster-core-2/terra-carver.json","li":"ORC"},{"n":"Terra-cotta Soldier","s":"blood-lords-bestiary","lv":6,"ac":24,"hp":120,"pc":14,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-2-graveclaw/terra-cotta-soldier.json","li":"OGL"},{"n":"Terrion Numesti","s":"kingmaker-bestiary","lv":9,"ac":24,"hp":155,"pc":18,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/terrion-numesti.json","li":"OGL"},{"n":"Terror Bird","s":"pathfinder-monster-core-2","lv":2,"ac":17,"hp":30,"pc":6,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/terror-bird.json","li":"ORC"},{"n":"Terror Shrike","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":60,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/terror-shrike.json","li":"ORC"},{"n":"Terrorguard","s":"blood-lords-bestiary","lv":14,"ac":37,"hp":255,"pc":25,"sz":"medium","tp":"construct","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/terrorguard.json","li":"OGL"},{"n":"Terwa Chosen","s":"strength-of-thousands-bestiary","lv":8,"ac":27,"hp":140,"pc":19,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/terwa-chosen.json","li":"OGL"},{"n":"Terwa Prodigy","s":"strength-of-thousands-bestiary","lv":6,"ac":23,"hp":100,"pc":17,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/terwa-prodigy.json","li":"OGL"},{"n":"Terwa Star Reader","s":"strength-of-thousands-bestiary","lv":7,"ac":24,"hp":115,"pc":18,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/terwa-star-reader.json","li":"OGL"},{"n":"Teyam Ishtori","s":"age-of-ashes-bestiary","lv":19,"ac":44,"hp":300,"pc":25,"sz":"tiny","tp":"undead","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/teyam-ishtori.json","li":"OGL"},{"n":"Thanadaemon","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":270,"pc":26,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/thanadaemon.json","li":"ORC"},{"n":"Thanatotic Titan","s":"pathfinder-monster-core-2","lv":22,"ac":46,"hp":540,"pc":36,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-monster-core-2/thanatotic-titan.json","li":"ORC"},{"n":"Thasteron Khefak","s":"strength-of-thousands-bestiary","lv":3,"ac":19,"hp":42,"pc":9,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/thasteron-khefak.json","li":"OGL"},{"n":"Thatchling","s":"season-of-ghosts-bestiary","lv":0,"ac":15,"hp":16,"pc":6,"sz":"small","tp":"undead","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/thatchling.json","li":"ORC"},{"n":"The Amalgam","s":"fall-of-plaguestone","lv":4,"ac":20,"hp":65,"pc":11,"sz":"large","tp":"aberration","f":"fall-of-plaguestone/the-amalgam.json","li":"OGL"},{"n":"The Ashen Man","s":"revenge-of-the-runelords-bestiary","lv":23,"ac":49,"hp":575,"pc":40,"sz":"large","tp":"aberration","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/the-ashen-man.json","li":"ORC"},{"n":"The Beast","s":"kingmaker-bestiary","lv":9,"ac":28,"hp":120,"pc":19,"sz":"huge","tp":"animal","f":"kingmaker-bestiary/the-beast.json","li":"OGL"},{"n":"The Bee-Man of Bellis","s":"wardens-of-wildwood-bestiary","lv":9,"ac":27,"hp":155,"pc":21,"sz":"medium","tp":"aberration","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/the-bee-man-of-bellis.json","li":"ORC"},{"n":"The Behemoth","s":"fall-of-plaguestone","lv":3,"ac":17,"hp":60,"pc":7,"sz":"large","tp":"construct","f":"fall-of-plaguestone/the-behemoth.json","li":"OGL"},{"n":"The Betrayal","s":"stolen-fate-bestiary","lv":20,"ac":45,"hp":360,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-betrayal.json","li":"OGL"},{"n":"The Bloodstorm","s":"lost-omens-bestiary","lv":14,"ac":35,"hp":250,"pc":25,"sz":"huge","tp":"","f":"lost-omens-bestiary/highhelm/the-bloodstorm.json","li":"OGL"},{"n":"The Carcass Man","s":"triumph-of-the-tusk-bestiary","lv":13,"ac":34,"hp":295,"pc":19,"sz":"large","tp":"construct","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/the-carcass-man.json","li":"ORC"},{"n":"The Chewer","s":"season-of-ghosts-bestiary","lv":6,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/the-chewer.json","li":"OGL"},{"n":"The Claws of Time","s":"outlaws-of-alkenstar-bestiary","lv":10,"ac":30,"hp":150,"pc":21,"sz":"medium","tp":"aberration","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/the-claws-of-time.json","li":"OGL"},{"n":"The Courtesan","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-courtesan.json","li":"OGL"},{"n":"The Cricket","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-cricket.json","li":"OGL"},{"n":"The Crows","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-crows.json","li":"OGL"},{"n":"The Dance","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-dance.json","li":"OGL"},{"n":"The Dancing Lady","s":"kingmaker-bestiary","lv":8,"ac":28,"hp":135,"pc":16,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/the-dancing-lady.json","li":"OGL"},{"n":"The Disciples","s":"crown-of-the-kobold-king-bestiary","lv":7,"ac":22,"hp":130,"pc":15,"sz":"medium","tp":"undead","f":"crown-of-the-kobold-king-bestiary/the-disciples.json","li":"OGL"},{"n":"The Final Herald","s":"curtain-call-bestiary","lv":12,"ac":32,"hp":164,"pc":20,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-1-stage-fright/the-final-herald.json","li":"ORC"},{"n":"The First Blade","s":"prey-for-death-bestiary","lv":15,"ac":37,"hp":300,"pc":27,"sz":"large","tp":"monitor","f":"prey-for-death-bestiary/the-first-blade.json","li":"ORC"},{"n":"The First Faithful","s":"kingmaker-bestiary","lv":13,"ac":34,"hp":240,"pc":24,"sz":"medium","tp":"fiend","f":"kingmaker-bestiary/the-first-faithful.json","li":"OGL"},{"n":"The Fool","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-fool.json","li":"OGL"},{"n":"The Gardener","s":"kingmaker-bestiary","lv":16,"ac":36,"hp":220,"pc":24,"sz":"small","tp":"spirit","f":"kingmaker-bestiary/the-gardener.json","li":"OGL"},{"n":"The Great Flood","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":472,"pc":39,"sz":"gargantuan","tp":"beast","f":"lost-omens-bestiary/tian-xia-world-guide/the-great-flood.json","li":"ORC"},{"n":"The Guest","s":"gatewalkers-bestiary","lv":7,"ac":24,"hp":130,"pc":15,"sz":"medium","tp":"aberration","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/the-guest.json","li":"ORC"},{"n":"The Horned Hunter","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":350,"pc":35,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/the-horned-hunter.json","li":"OGL"},{"n":"The Inkmaster","s":"agents-of-edgewatch-bestiary","lv":16,"ac":39,"hp":350,"pc":30,"sz":"gargantuan","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/the-inkmaster.json","li":"OGL"},{"n":"The Inquisitor","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-inquisitor.json","li":"OGL"},{"n":"The Joke","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-joke.json","li":"OGL"},{"n":"The Keeper","s":"stolen-fate-bestiary","lv":21,"ac":47,"hp":385,"pc":36,"sz":"medium","tp":"fey","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-keeper.json","li":"OGL"},{"n":"The Knurly Witch","s":"kingmaker-bestiary","lv":20,"ac":45,"hp":324,"pc":38,"sz":"large","tp":"humanoid","f":"kingmaker-bestiary/the-knurly-witch.json","li":"OGL"},{"n":"The Lonely Warrior","s":"kingmaker-bestiary","lv":6,"ac":23,"hp":106,"pc":14,"sz":"medium","tp":"undead","f":"kingmaker-bestiary/the-lonely-warrior.json","li":"OGL"},{"n":"The Looksee Man","s":"gatewalkers-bestiary","lv":4,"ac":21,"hp":70,"pc":14,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-1-the-seventh-arch/the-looksee-man.json","li":"ORC"},{"n":"The Misbegotten Troll","s":"kingmaker-bestiary","lv":18,"ac":40,"hp":430,"pc":31,"sz":"large","tp":"giant","f":"kingmaker-bestiary/the-misbegotten-troll.json","li":"OGL"},{"n":"The Morrowkin","s":"pathfinder-dark-archive","lv":14,"ac":34,"hp":320,"pc":24,"sz":"medium","tp":"aberration","f":"pathfinder-dark-archive/npcs/the-morrowkin.json","li":"ORC"},{"n":"The Peacock","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"small","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-peacock.json","li":"OGL"},{"n":"The Prince of Wolves","s":"stolen-fate-bestiary","lv":19,"ac":42,"hp":400,"pc":32,"sz":"medium","tp":"beast","f":"stolen-fate-bestiary/book-2-the-destiny-war/the-prince-of-wolves.json","li":"OGL"},{"n":"The Promised One","s":"prey-for-death-bestiary","lv":15,"ac":36,"hp":255,"pc":31,"sz":"medium","tp":"spirit","f":"prey-for-death-bestiary/the-promised-one.json","li":"ORC"},{"n":"The Putrid","s":"spore-war-bestiary","lv":15,"ac":35,"hp":345,"pc":27,"sz":"gargantuan","tp":"beast","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/the-putrid.json","li":"ORC"},{"n":"The Python","s":"spore-war-bestiary","lv":23,"ac":47,"hp":460,"pc":40,"sz":"huge","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/the-python.json","li":"ORC"},{"n":"The Queen Mother","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"huge","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-queen-mother.json","li":"OGL"},{"n":"The Rabbit Prince","s":"agents-of-edgewatch-bestiary","lv":17,"ac":40,"hp":315,"pc":31,"sz":"small","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/the-rabbit-prince.json","li":"OGL"},{"n":"The Sculptor","s":"fall-of-plaguestone","lv":4,"ac":21,"hp":54,"pc":9,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/the-sculptor.json","li":"OGL"},{"n":"The Shadow Prince","s":"stolen-fate-bestiary","lv":11,"ac":30,"hp":200,"pc":18,"sz":"large","tp":"","f":"stolen-fate-bestiary/book-2-the-destiny-war/the-shadow-prince.json","li":"OGL"},{"n":"The Stabbing Beast","s":"agents-of-edgewatch-bestiary","lv":15,"ac":38,"hp":275,"pc":27,"sz":"huge","tp":"fiend","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/the-stabbing-beast.json","li":"OGL"},{"n":"The Stag Lord","s":"kingmaker-bestiary","lv":6,"ac":23,"hp":110,"pc":16,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/the-stag-lord.json","li":"OGL"},{"n":"The Teamster","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-teamster.json","li":"OGL"},{"n":"The Trader","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-trader.json","li":"OGL"},{"n":"The Twin","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"medium","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-twin.json","li":"OGL"},{"n":"The Unicorn","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-unicorn.json","li":"OGL"},{"n":"The Vanish Man","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":265,"pc":28,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/the-vanish-man.json","li":"OGL"},{"n":"The Wanderer","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-wanderer.json","li":"OGL"},{"n":"The Weaver in Dreams","s":"pathfinder-dark-archive","lv":15,"ac":39,"hp":310,"pc":33,"sz":"medium","tp":"aberration","f":"pathfinder-dark-archive/npcs/the-weaver-in-dreams.json","li":"ORC"},{"n":"The Winged Serpent","s":"stolen-fate-bestiary","lv":17,"ac":40,"hp":315,"pc":29,"sz":"large","tp":"construct","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/the-winged-serpent.json","li":"OGL"},{"n":"The Wriggling Man","s":"kingmaker-bestiary","lv":21,"ac":47,"hp":325,"pc":35,"sz":"medium","tp":"aberration","f":"kingmaker-bestiary/the-wriggling-man.json","li":"OGL"},{"n":"Theater Phantasm","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":260,"pc":32,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/theater-phantasm.json","li":"OGL"},{"n":"Theiltemar","s":"rusthenge-bestiary","lv":4,"ac":20,"hp":50,"pc":13,"sz":"medium","tp":"undead","f":"rusthenge-bestiary/theiltemar.json","li":"OGL"},{"n":"Theletos","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":125,"pc":18,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/theletos.json","li":"ORC"},{"n":"Therapeutic Healer","s":"pathfinder-npc-core","lv":7,"ac":24,"hp":110,"pc":14,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/therapeutic-healer.json","li":"ORC"},{"n":"Therizinosaurus","s":"howl-of-the-wild-bestiary","lv":9,"ac":27,"hp":210,"pc":18,"sz":"gargantuan","tp":"animal","f":"howl-of-the-wild-bestiary/therizinosaurus.json","li":"ORC"},{"n":"Thessekka","s":"extinction-curse-bestiary","lv":14,"ac":35,"hp":255,"pc":26,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/thessekka.json","li":"OGL"},{"n":"Thiarvo the Quick","s":"strength-of-thousands-bestiary","lv":9,"ac":28,"hp":150,"pc":20,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/thiarvo-the-quick.json","li":"OGL"},{"n":"Thoqqua","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":17,"hp":45,"pc":7,"sz":"medium","tp":"elemental","f":"crown-of-the-kobold-king-bestiary/thoqqua.json","li":"OGL"},{"n":"Thorn Guardian","s":"strength-of-thousands-bestiary","lv":16,"ac":39,"hp":330,"pc":27,"sz":"small","tp":"construct","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/thorn-guardian.json","li":"OGL"},{"n":"Thorn River Bandit","s":"kingmaker-bestiary","lv":-1,"ac":14,"hp":8,"pc":2,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/thorn-river-bandit.json","li":"OGL"},{"n":"Thousand Thieves","s":"pathfinder-monster-core-2","lv":16,"ac":40,"hp":220,"pc":29,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/thousand-thieves.json","li":"ORC"},{"n":"Thrailorn","s":"wardens-of-wildwood-bestiary","lv":6,"ac":22,"hp":99,"pc":12,"sz":"small","tp":"aberration","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/thrailorn.json","li":"ORC"},{"n":"Thresholder Disciple","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/thresholder-disciple.json","li":"OGL"},{"n":"Thresholder Hermeticist","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":290,"pc":29,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/thresholder-hermeticist.json","li":"OGL"},{"n":"Thresholder Mystic","s":"kingmaker-bestiary","lv":17,"ac":41,"hp":315,"pc":31,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/thresholder-mystic.json","li":"OGL"},{"n":"Throttled Blindheim","s":"quest-for-the-frozen-flame-bestiary","lv":2,"ac":18,"hp":27,"pc":9,"sz":"small","tp":"animal","f":"quest-for-the-frozen-flame-bestiary/book-1-broken-tusk-moon/throttled-blindheim.json","li":"OGL"},{"n":"Thrune Champion Army","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/thrune-champion-army.json","li":"ORC"},{"n":"Thruneosaurus Rex","s":"howl-of-the-wild-bestiary","lv":17,"ac":39,"hp":290,"pc":29,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/thruneosaurus-rex.json","li":"ORC"},{"n":"Thulgant","s":"pathfinder-monster-core","lv":18,"ac":42,"hp":305,"pc":30,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/thulgant.json","li":"ORC"},{"n":"Thylacine","s":"kingmaker-bestiary","lv":0,"ac":16,"hp":16,"pc":4,"sz":"small","tp":"animal","f":"kingmaker-bestiary/thylacine.json","li":"OGL"},{"n":"Ticktock","s":"stolen-fate-bestiary","lv":16,"ac":40,"hp":275,"pc":27,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/ticktock.json","li":"OGL"},{"n":"Tide Giant","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":250,"pc":21,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/tide-giant.json","li":"ORC"},{"n":"Tidepool Dragonet","s":"lost-omens-bestiary","lv":3,"ac":17,"hp":53,"pc":10,"sz":"tiny","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/dragonet/tidepool-dragonet.json","li":"ORC"},{"n":"Tiderunner Aquamancer","s":"agents-of-edgewatch-bestiary","lv":13,"ac":34,"hp":190,"pc":27,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/tiderunner-aquamancer.json","li":"OGL"},{"n":"Tidewater Guard","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/lizardfolk/tidewater-guard.json","li":"ORC"},{"n":"Tiger","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":12,"sz":"large","tp":"animal","f":"pathfinder-monster-core/tiger.json","li":"ORC"},{"n":"Tiger Lord","s":"kingmaker-bestiary","lv":8,"ac":26,"hp":160,"pc":18,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/tiger-lord.json","li":"OGL"},{"n":"Tiger Lord Hill Giant (TL2)","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":250,"pc":20,"sz":"large","tp":"giant","f":"kingmaker-bestiary/tiger-lord-hill-giant-tl2.json","li":"OGL"},{"n":"Tiger Topiary","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":80,"pc":14,"sz":"large","tp":"plant","f":"pathfinder-monster-core-2/tiger-topiary.json","li":"ORC"},{"n":"Tikbalang","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":197,"pc":16,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/tikbalang.json","li":"ORC"},{"n":"Tiluatchek","s":"seven-dooms-for-sandpoint-bestiary","lv":12,"ac":32,"hp":221,"pc":19,"sz":"small","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/tiluatchek.json","li":"OGL"},{"n":"Timber Titan","s":"wardens-of-wildwood-bestiary","lv":7,"ac":26,"hp":100,"pc":13,"sz":"large","tp":"construct","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/timber-titan.json","li":"ORC"},{"n":"Timberweb","s":"wardens-of-wildwood-bestiary","lv":14,"ac":35,"hp":250,"pc":25,"sz":"large","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/timberweb.json","li":"ORC"},{"n":"Time Archdragon","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":570,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-archdragon.json","li":"ORC"},{"n":"Time Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":570,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-archdragon-spellcaster.json","li":"ORC"},{"n":"Time Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":342,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Time Dragon (Adult)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":342,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-adult.json","li":"ORC"},{"n":"Time Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":470,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Time Dragon (Ancient)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":470,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-ancient.json","li":"ORC"},{"n":"Time Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":245,"pc":20,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-young-spellcaster.json","li":"ORC"},{"n":"Time Dragon (Young)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":245,"pc":20,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/time/time-dragon-young.json","li":"ORC"},{"n":"Tino (Oni Form)","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":41,"hp":320,"pc":30,"sz":"large","tp":"fiend","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/tino-oni-form.json","li":"OGL"},{"n":"Tino Tung (Level 13)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/tino-tung-level-13.json","li":"OGL"},{"n":"Tino Tung (Level 9)","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/tino-tung-level-9.json","li":"OGL"},{"n":"Titanosaur","s":"howl-of-the-wild-bestiary","lv":16,"ac":38,"hp":370,"pc":27,"sz":"gargantuan","tp":"animal","f":"howl-of-the-wild-bestiary/titanosaur.json","li":"ORC"},{"n":"Tithekeeper","s":"spore-war-bestiary","lv":10,"ac":29,"hp":220,"pc":16,"sz":"large","tp":"construct","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/tithekeeper.json","li":"ORC"},{"n":"Tixitog","s":"age-of-ashes-bestiary","lv":3,"ac":19,"hp":40,"pc":9,"sz":"medium","tp":"aberration","f":"age-of-ashes-bestiary/book-1-hellknight-hill/tixitog.json","li":"OGL"},{"n":"Toady","s":"pathfinder-npc-core","lv":0,"ac":14,"hp":20,"pc":3,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/toady.json","li":"ORC"},{"n":"Toilforged Sentinel","s":"sky-kings-tomb-bestiary","lv":8,"ac":27,"hp":130,"pc":14,"sz":"huge","tp":"construct","f":"sky-kings-tomb-bestiary/book-3-heavy-is-the-crown/toilforged-sentinel.json","li":"OGL"},{"n":"Tokainen","s":"shades-of-blood-bestiary","lv":9,"ac":26,"hp":160,"pc":21,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/tokainen.json","li":"ORC"},{"n":"Tokainen's Chosen","s":"shades-of-blood-bestiary","lv":5,"ac":21,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/tokainens-chosen.json","li":"ORC"},{"n":"Tollvych","s":"strength-of-thousands-bestiary","lv":15,"ac":33,"hp":200,"pc":26,"sz":"medium","tp":"spirit","f":"strength-of-thousands-bestiary/book-5-doorway-to-the-red-star/tollvych.json","li":"OGL"},{"n":"Tomb Giant","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":255,"pc":25,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/tomb-giant.json","li":"ORC"},{"n":"Tomb Jelly","s":"pathfinder-monster-core","lv":5,"ac":12,"hp":150,"pc":7,"sz":"large","tp":"ooze","f":"pathfinder-monster-core/tomb-jelly.json","li":"ORC"},{"n":"Tomb Raider","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/tomb-raider.json","li":"ORC"},{"n":"Tombstone Troll","s":"blood-lords-bestiary","lv":1,"ac":13,"hp":25,"pc":7,"sz":"small","tp":"giant","f":"blood-lords-bestiary/book-1-zombie-feast/tombstone-troll.json","li":"OGL"},{"n":"Tonic Merchant","s":"pathfinder-npc-core","lv":3,"ac":17,"hp":50,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/healer/tonic-merchant.json","li":"ORC"},{"n":"Tooth Fairy","s":"pathfinder-monster-core","lv":-1,"ac":15,"hp":8,"pc":6,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/tooth-fairy.json","li":"ORC"},{"n":"Tooth Fairy Leader","s":"triumph-of-the-tusk-bestiary","lv":2,"ac":18,"hp":35,"pc":8,"sz":"tiny","tp":"fey","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/tooth-fairy-leader.json","li":"ORC"},{"n":"Tooth Fairy Swarm","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":28,"pc":8,"sz":"large","tp":"fey","f":"pathfinder-monster-core/tooth-fairy-swarm.json","li":"ORC"},{"n":"Tor Linnorm","s":"pathfinder-monster-core","lv":21,"ac":47,"hp":440,"pc":37,"sz":"gargantuan","tp":"dragon","f":"pathfinder-monster-core/tor-linnorm.json","li":"ORC"},{"n":"Torchbearer","s":"pathfinder-npc-core","lv":0,"ac":15,"hp":15,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/torchbearer.json","li":"ORC"},{"n":"Torcheater","s":"myth-speaker-bestiary","lv":2,"ac":18,"hp":30,"pc":8,"sz":"small","tp":"spirit","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/torcheater.json","li":"ORC"},{"n":"Torgral","s":"stolen-fate-bestiary","lv":15,"ac":36,"hp":330,"pc":28,"sz":"large","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/torgral.json","li":"OGL"},{"n":"Tormented (Burning)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-burning.json","li":"OGL"},{"n":"Tormented (Crushing)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-crushing.json","li":"OGL"},{"n":"Tormented (Dislocation)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-dislocation.json","li":"OGL"},{"n":"Tormented (Drowning)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-drowning.json","li":"OGL"},{"n":"Tormented (Impalement)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-impalement.json","li":"OGL"},{"n":"Tormented (Starvation)","s":"book-of-the-dead-bestiary","lv":14,"ac":35,"hp":250,"pc":27,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/tormented-starvation.json","li":"OGL"},{"n":"Tormented Hero","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":42,"hp":340,"pc":33,"sz":"medium","tp":"undead","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/tormented-hero.json","li":"ORC"},{"n":"Tormonshild","s":"shades-of-blood-bestiary","lv":1,"ac":15,"hp":20,"pc":6,"sz":"tiny","tp":"aberration","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/tormonshild.json","li":"ORC"},{"n":"Tormonshild Swarm","s":"shades-of-blood-bestiary","lv":3,"ac":18,"hp":35,"pc":8,"sz":"large","tp":"aberration","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/tormonshild-swarm.json","li":"ORC"},{"n":"Tormonwird","s":"shades-of-blood-bestiary","lv":5,"ac":21,"hp":75,"pc":14,"sz":"medium","tp":"aberration","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/tormonwird.json","li":"ORC"},{"n":"Torn Quartet","s":"lost-omens-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"medium","tp":"undead","f":"lost-omens-bestiary/shining-kingdoms/torn-quartet.json","li":"ORC"},{"n":"Torture Chamber Barbazu","s":"abomination-vaults-bestiary","lv":5,"ac":22,"hp":60,"pc":13,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/torture-chamber-barbazu.json","li":"OGL"},{"n":"Totenmaske","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":130,"pc":15,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/totenmaske.json","li":"ORC"},{"n":"Totum Font","s":"pathfinder-monster-core-2","lv":15,"ac":35,"hp":104,"pc":30,"sz":"large","tp":"elemental","f":"pathfinder-monster-core-2/totum-font.json","li":"ORC"},{"n":"Tournament Combatant","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/martial-artist/tournament-combatant.json","li":"ORC"},{"n":"Toymaker","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/engineer/toymaker.json","li":"ORC"},{"n":"Tracker","s":"pathfinder-npc-core","lv":3,"ac":19,"hp":40,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/tracker.json","li":"ORC"},{"n":"Trained Bat","s":"pathfinder-npc-core","lv":4,"ac":21,"hp":50,"pc":10,"sz":"medium","tp":"animal","f":"pathfinder-npc-core/creature-companions/trained-bat.json","li":"ORC"},{"n":"Trained Raven","s":"pathfinder-monster-core-2","lv":-1,"ac":15,"hp":7,"pc":5,"sz":"tiny","tp":"animal","f":"pathfinder-monster-core-2/trained-raven.json","li":"ORC"},{"n":"Trapdoor Ogre Spider","s":"kingmaker-bestiary","lv":5,"ac":23,"hp":70,"pc":13,"sz":"huge","tp":"animal","f":"kingmaker-bestiary/trapdoor-ogre-spider.json","li":"OGL"},{"n":"Trapjaw Tangle","s":"outlaws-of-alkenstar-bestiary","lv":5,"ac":22,"hp":58,"pc":11,"sz":"large","tp":"construct","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/trapjaw-tangle.json","li":"OGL"},{"n":"Traveling Actor","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":35,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/traveling-actor.json","li":"ORC"},{"n":"Traveling Priest of Desna","s":"pathfinder-npc-core","lv":9,"ac":27,"hp":140,"pc":19,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/traveling-priest-of-desna.json","li":"ORC"},{"n":"Tree Singer","s":"pathfinder-npc-core","lv":13,"ac":32,"hp":220,"pc":22,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/primalist/tree-singer.json","li":"ORC"},{"n":"Tree that Weeps","s":"kingmaker-bestiary","lv":18,"ac":41,"hp":400,"pc":30,"sz":"gargantuan","tp":"plant","f":"kingmaker-bestiary/tree-that-weeps.json","li":"OGL"},{"n":"Treerazer","s":"pathfinder-monster-core","lv":25,"ac":54,"hp":550,"pc":46,"sz":"huge","tp":"fiend","f":"pathfinder-monster-core/treerazer.json","li":"ORC"},{"n":"Trexima Butoi","s":"stolen-fate-bestiary","lv":16,"ac":37,"hp":290,"pc":26,"sz":"medium","tp":"undead","f":"stolen-fate-bestiary/book-2-the-destiny-war/trexima-butoi.json","li":"OGL"},{"n":"Triceratops","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":140,"pc":16,"sz":"huge","tp":"animal","f":"pathfinder-monster-core/triceratops.json","li":"ORC"},{"n":"Trighoul","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":27,"hp":100,"pc":12,"sz":"large","tp":"aberration","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/trighoul.json","li":"ORC"},{"n":"Trilobite","s":"pathfinder-monster-core-2","lv":-1,"ac":15,"hp":7,"pc":8,"sz":"medium","tp":"animal","f":"pathfinder-monster-core-2/trilobite.json","li":"ORC"},{"n":"Trilobite Swarm","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":30,"pc":9,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/trilobite-swarm.json","li":"ORC"},{"n":"Trinity Initiate","s":"revenge-of-the-runelords-bestiary","lv":8,"ac":26,"hp":130,"pc":15,"sz":"medium","tp":"humanoid","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/trinity-initiate.json","li":"ORC"},{"n":"Tripkee Camoufleur","s":"pathfinder-npc-core","lv":2,"ac":18,"hp":30,"pc":10,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tripkee/tripkee-camoufleur.json","li":"ORC"},{"n":"Tripkee Fiend-Keeper","s":"pathfinder-npc-core","lv":7,"ac":25,"hp":125,"pc":18,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tripkee/tripkee-fiend-keeper.json","li":"ORC"},{"n":"Tripkee Rain-Caller","s":"pathfinder-monster-core-2","lv":4,"ac":20,"hp":60,"pc":12,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core-2/tripkee-rain-caller.json","li":"ORC"},{"n":"Tripkee Scout","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":20,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core-2/tripkee-scout.json","li":"ORC"},{"n":"Tripkee Scout","s":"pathfinder-npc-core","lv":1,"ac":17,"hp":20,"pc":8,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/tripkee/tripkee-scout.json","li":"ORC"},{"n":"Troff Frostknuckles","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":250,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/troff-frostknuckles.json","li":"OGL"},{"n":"Troll","s":"triumph-of-the-tusk-bestiary","lv":5,"ac":20,"hp":125,"pc":11,"sz":"large","tp":"giant","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/troll.json","li":"ORC"},{"n":"Troll Guard","s":"kingmaker-bestiary","lv":15,"ac":35,"hp":340,"pc":27,"sz":"large","tp":"giant","f":"kingmaker-bestiary/troll-guard.json","li":"OGL"},{"n":"Troll Warleader","s":"pathfinder-monster-core","lv":10,"ac":29,"hp":240,"pc":19,"sz":"large","tp":"giant","f":"pathfinder-monster-core/troll-warleader.json","li":"ORC"},{"n":"Trollhound","s":"pathfinder-monster-core-2","lv":3,"ac":17,"hp":65,"pc":6,"sz":"medium","tp":"beast","f":"pathfinder-monster-core-2/trollhound.json","li":"ORC"},{"n":"Troodon","s":"howl-of-the-wild-bestiary","lv":1,"ac":16,"hp":20,"pc":9,"sz":"medium","tp":"animal","f":"howl-of-the-wild-bestiary/troodon.json","li":"ORC"},{"n":"Troubadour","s":"pathfinder-npc-core","lv":3,"ac":18,"hp":40,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/performer/troubadour.json","li":"ORC"},{"n":"Trygve","s":"rusthenge-bestiary","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/trygve.json","li":"OGL"},{"n":"Tsemone","s":"myth-speaker-bestiary","lv":8,"ac":27,"hp":130,"pc":16,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/tsemone.json","li":"ORC"},{"n":"Tulvak","s":"kingmaker-bestiary","lv":11,"ac":31,"hp":220,"pc":22,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/tulvak.json","li":"OGL"},{"n":"Tumblak","s":"night-of-the-gray-death-bestiary","lv":18,"ac":42,"hp":305,"pc":33,"sz":"medium","tp":"fiend","f":"night-of-the-gray-death-bestiary/tumblak.json","li":"OGL"},{"n":"Tumbleweed Leshy Courier","s":"pathfinder-npc-core","lv":3,"ac":19,"hp":35,"pc":12,"sz":"small","tp":"plant","f":"pathfinder-npc-core/ancestry-npcs/leshy/tumbleweed-leshy-courier.json","li":"ORC"},{"n":"Tumbo","s":"wardens-of-wildwood-bestiary","lv":2,"ac":19,"hp":18,"pc":7,"sz":"tiny","tp":"elemental","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/tumbo.json","li":"ORC"},{"n":"Tunch","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":21,"hp":75,"pc":10,"sz":"small","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/tunch.json","li":"OGL"},{"n":"Tunnel Viper","s":"pathfinder-npc-core","lv":1,"ac":16,"hp":20,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/ratfolk/tunnel-viper.json","li":"ORC"},{"n":"Tuom Molgrade","s":"sky-kings-tomb-bestiary","lv":5,"ac":22,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/tuom-molgrade.json","li":"OGL"},{"n":"Tupilaq","s":"pathfinder-monster-core-2","lv":7,"ac":26,"hp":90,"pc":16,"sz":"small","tp":"construct","f":"pathfinder-monster-core-2/tupilaq.json","li":"ORC"},{"n":"Turkek","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":23,"hp":100,"pc":12,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/turkek.json","li":"OGL"},{"n":"Twigjack","s":"pathfinder-monster-core","lv":3,"ac":19,"hp":50,"pc":9,"sz":"tiny","tp":"fey","f":"pathfinder-monster-core/twigjack.json","li":"ORC"},{"n":"Twigjack Bramble","s":"wardens-of-wildwood-bestiary","lv":6,"ac":24,"hp":102,"pc":14,"sz":"gargantuan","tp":"fey","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/twigjack-bramble.json","li":"ORC"},{"n":"Twilight Talon Infiltrator Team","s":"lost-omens-bestiary","lv":8,"ac":27,"hp":135,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"lost-omens-bestiary/hellfire-dispatches/twilight-talon-infiltrator-team.json","li":"ORC"},{"n":"Twins of Rowan","s":"rage-of-elements-bestiary","lv":13,"ac":34,"hp":273,"pc":26,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/twins-of-rowan.json","li":"OGL"},{"n":"Twisted Jack","s":"agents-of-edgewatch-bestiary","lv":17,"ac":41,"hp":240,"pc":32,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/twisted-jack.json","li":"OGL"},{"n":"Two Tusk","s":"standalone-adventures","lv":2,"ac":17,"hp":35,"pc":6,"sz":"large","tp":"animal","f":"standalone-adventures/adventure-2-swamp-stalkers/two-tusk.json","li":"ORC"},{"n":"Two-Headed Troll","s":"pathfinder-monster-core-2","lv":8,"ac":24,"hp":190,"pc":16,"sz":"large","tp":"giant","f":"pathfinder-monster-core-2/two-headed-troll.json","li":"ORC"},{"n":"Tylosaurus","s":"pathfinder-monster-core-2","lv":8,"ac":27,"hp":137,"pc":18,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core-2/tylosaurus.json","li":"ORC"},{"n":"Tyrafdir","s":"howl-of-the-wild-bestiary","lv":11,"ac":30,"hp":190,"pc":21,"sz":"huge","tp":"beast","f":"howl-of-the-wild-bestiary/tyrafdir.json","li":"ORC"},{"n":"Tyrannosaurus","s":"pathfinder-monster-core","lv":10,"ac":29,"hp":180,"pc":19,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core/tyrannosaurus.json","li":"ORC"},{"n":"Tyrannosaurus Imperator","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":35,"hp":260,"pc":25,"sz":"gargantuan","tp":"animal","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/tyrannosaurus-imperator.json","li":"OGL"},{"n":"Tyrannosaurus Skeleton","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":140,"pc":17,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/tyrannosaurus-skeleton.json","li":"ORC"},{"n":"Tyrroicese","s":"agents-of-edgewatch-bestiary","lv":10,"ac":27,"hp":320,"pc":16,"sz":"large","tp":"construct","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/tyrroicese.json","li":"OGL"},{"n":"Tzitzimitl","s":"pathfinder-monster-core-2","lv":19,"ac":43,"hp":390,"pc":32,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/tzitzimitl.json","li":"ORC"},{"n":"Ugothol","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/ugothol.json","li":"ORC"},{"n":"Ugvashi","s":"lost-omens-bestiary","lv":3,"ac":19,"hp":40,"pc":8,"sz":"medium","tp":"animal","f":"lost-omens-bestiary/impossible-lands/ugvashi.json","li":"OGL"},{"n":"Ulat-Kini Initiate","s":"sky-kings-tomb-bestiary","lv":4,"ac":21,"hp":60,"pc":10,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/ulat-kini-initiate.json","li":"OGL"},{"n":"Ulat-Kini Mindreaver","s":"sky-kings-tomb-bestiary","lv":7,"ac":22,"hp":100,"pc":14,"sz":"medium","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/ulat-kini-mindreaver.json","li":"OGL"},{"n":"Ulgrem-Axaan","s":"lost-omens-bestiary","lv":7,"ac":24,"hp":130,"pc":18,"sz":"large","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/ulgrem-axaan.json","li":"OGL"},{"n":"Ulgrem-Lurann","s":"lost-omens-bestiary","lv":3,"ac":18,"hp":55,"pc":12,"sz":"large","tp":"beast","f":"lost-omens-bestiary/monsters-of-myth/ulgrem-lurann.json","li":"OGL"},{"n":"Ulikuq","s":"gatewalkers-bestiary","lv":4,"ac":20,"hp":60,"pc":13,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/ulikuq.json","li":"ORC"},{"n":"Ulistul","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":165,"pc":22,"sz":"large","tp":"construct","f":"lost-omens-bestiary/monsters-of-myth/ulistul.json","li":"OGL"},{"n":"Ulizmila's Cauldron","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":17,"hp":20,"pc":4,"sz":"small","tp":"construct","f":"crown-of-the-kobold-king-bestiary/ulizmilas-cauldron.json","li":"OGL"},{"n":"Ulki","s":"sky-kings-tomb-bestiary","lv":1,"ac":16,"hp":15,"pc":9,"sz":"medium","tp":"spirit","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/ulki.json","li":"OGL"},{"n":"Ulressia The Blessed","s":"agents-of-edgewatch-bestiary","lv":19,"ac":42,"hp":355,"pc":35,"sz":"medium","tp":"celestial","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/ulressia-the-blessed.json","li":"OGL"},{"n":"Ulshuk","s":"myth-speaker-bestiary","lv":8,"ac":26,"hp":140,"pc":19,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-3-titanbane/ulshuk.json","li":"ORC"},{"n":"Ulthadar","s":"extinction-curse-bestiary","lv":8,"ac":24,"hp":95,"pc":20,"sz":"medium","tp":"spirit","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/ulthadar.json","li":"OGL"},{"n":"Ulugurnix","s":"spore-war-bestiary","lv":11,"ac":30,"hp":190,"pc":22,"sz":"large","tp":"dragon","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/ulugurnix.json","li":"ORC"},{"n":"Umbasi","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":190,"pc":21,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/umbasi.json","li":"OGL"},{"n":"Umbo","s":"strength-of-thousands-bestiary","lv":3,"ac":18,"hp":50,"pc":8,"sz":"medium","tp":"fungus","f":"strength-of-thousands-bestiary/book-1-kindled-magic/umbo.json","li":"OGL"},{"n":"Umbraex","s":"blood-lords-bestiary","lv":21,"ac":45,"hp":450,"pc":36,"sz":"gargantuan","tp":"undead","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/umbraex.json","li":"OGL"},{"n":"Umbral Archdragon","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":525,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-archdragon.json","li":"ORC"},{"n":"Umbral Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":525,"pc":40,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-archdragon-spellcaster.json","li":"ORC"},{"n":"Umbral Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":275,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Umbral Dragon (Adult)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":275,"pc":26,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-adult.json","li":"ORC"},{"n":"Umbral Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":375,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Umbral Dragon (Ancient)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":375,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-ancient.json","li":"ORC"},{"n":"Umbral Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-young-spellcaster.json","li":"ORC"},{"n":"Umbral Dragon (Young)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":195,"pc":22,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/umbral/umbral-dragon-young.json","li":"ORC"},{"n":"Umbral Gnome Rockwarden","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":63,"pc":14,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/umbral-gnome-rockwarden.json","li":"ORC"},{"n":"Umbral Gnome Scout","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":18,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/umbral-gnome-scout.json","li":"ORC"},{"n":"Umbral Gnome Warrior","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":34,"pc":7,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core/umbral-gnome-warrior.json","li":"ORC"},{"n":"Umok Beastspeaker Circle","s":"hellbreakers-bestiary","lv":7,"ac":24,"hp":120,"pc":16,"sz":"gargantuan","tp":"humanoid","f":"hellbreakers-bestiary/umok-beastspeaker-circle.json","li":"ORC"},{"n":"Unaasi","s":"wardens-of-wildwood-bestiary","lv":11,"ac":28,"hp":160,"pc":21,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/unaasi.json","li":"ORC"},{"n":"Undead Brain Collector","s":"malevolence-bestiary","lv":7,"ac":24,"hp":130,"pc":17,"sz":"large","tp":"aberration","f":"malevolence-bestiary/undead-brain-collector.json","li":"OGL"},{"n":"Undead Murder","s":"claws-of-the-tyrant-bestiary","lv":3,"ac":18,"hp":32,"pc":12,"sz":"large","tp":"undead","f":"claws-of-the-tyrant-bestiary/1-gravelands-survivors/undead-murder.json","li":"ORC"},{"n":"Underworld Archdragon","s":"lost-omens-bestiary","lv":19,"ac":45,"hp":430,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-archdragon.json","li":"ORC"},{"n":"Underworld Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":45,"hp":430,"pc":35,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-archdragon-spellcaster.json","li":"ORC"},{"n":"Underworld Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":195,"pc":20,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Underworld Dragon (Adult)","s":"lost-omens-bestiary","lv":11,"ac":31,"hp":195,"pc":20,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-adult.json","li":"ORC"},{"n":"Underworld Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":16,"ac":39,"hp":295,"pc":28,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Underworld Dragon (Ancient)","s":"lost-omens-bestiary","lv":16,"ac":39,"hp":295,"pc":28,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-ancient.json","li":"ORC"},{"n":"Underworld Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":115,"pc":13,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-young-spellcaster.json","li":"ORC"},{"n":"Underworld Dragon (Young)","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":115,"pc":13,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/underworld/underworld-dragon-young.json","li":"ORC"},{"n":"Undine Hydromancer","s":"pathfinder-monster-core-2","lv":1,"ac":15,"hp":15,"pc":5,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/undine-hydromancer.json","li":"ORC"},{"n":"Unfeeling Empath","s":"sky-kings-tomb-bestiary","lv":2,"ac":18,"hp":36,"pc":9,"sz":"small","tp":"undead","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/unfeeling-empath.json","li":"OGL"},{"n":"Ungkore Bounty Hunter","s":"myth-speaker-bestiary","lv":8,"ac":26,"hp":140,"pc":16,"sz":"medium","tp":"fey","f":"myth-speaker-bestiary/book-3-titanbane/ungkore-bounty-hunter.json","li":"ORC"},{"n":"Ungukk Fleshdredge","s":"triumph-of-the-tusk-bestiary","lv":11,"ac":29,"hp":146,"pc":24,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/ungukk-fleshdredge.json","li":"ORC"},{"n":"Unicorn","s":"pathfinder-monster-core","lv":3,"ac":20,"hp":45,"pc":13,"sz":"large","tp":"beast","f":"pathfinder-monster-core/unicorn.json","li":"ORC"},{"n":"Uniila","s":"stolen-fate-bestiary","lv":10,"ac":30,"hp":155,"pc":21,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-1-the-choosing/uniila.json","li":"OGL"},{"n":"Uniila Occultist","s":"stolen-fate-bestiary","lv":10,"ac":30,"hp":155,"pc":21,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-1-the-choosing/uniila-occultist.json","li":"OGL"},{"n":"Unrisen","s":"pathfinder-monster-core-2","lv":11,"ac":28,"hp":220,"pc":21,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/unrisen.json","li":"ORC"},{"n":"Unrisen Slithermaw","s":"spore-war-bestiary","lv":18,"ac":41,"hp":350,"pc":32,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/unrisen-slithermaw.json","li":"ORC"},{"n":"Unsanctioned Sheriff","s":"pathfinder-npc-core","lv":5,"ac":22,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/maverick/unsanctioned-sheriff.json","li":"ORC"},{"n":"Unshadowed Anchor Root","s":"strength-of-thousands-bestiary","lv":18,"ac":39,"hp":270,"pc":33,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/unshadowed-anchor-root.json","li":"OGL"},{"n":"Unshadowed Haibram","s":"strength-of-thousands-bestiary","lv":18,"ac":41,"hp":330,"pc":30,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/unshadowed-haibram.json","li":"OGL"},{"n":"Unshadowed Koride","s":"strength-of-thousands-bestiary","lv":19,"ac":40,"hp":290,"pc":33,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/unshadowed-koride.json","li":"OGL"},{"n":"Unshadowed Mariama","s":"strength-of-thousands-bestiary","lv":18,"ac":39,"hp":270,"pc":30,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/unshadowed-mariama.json","li":"OGL"},{"n":"Unshadowed Okoro","s":"strength-of-thousands-bestiary","lv":18,"ac":39,"hp":270,"pc":30,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/unshadowed-okoro.json","li":"OGL"},{"n":"Urbel","s":"strength-of-thousands-bestiary","lv":4,"ac":21,"hp":68,"pc":8,"sz":"small","tp":"fey","f":"strength-of-thousands-bestiary/book-1-kindled-magic/urbel.json","li":"OGL"},{"n":"Urbulinex","s":"blood-lords-bestiary","lv":18,"ac":41,"hp":345,"pc":33,"sz":"huge","tp":"dragon","f":"blood-lords-bestiary/book-5-a-taste-of-ashes/urbulinex.json","li":"OGL"},{"n":"Urchin","s":"pathfinder-npc-core","lv":-1,"ac":15,"hp":8,"pc":3,"sz":"small","tp":"humanoid","f":"pathfinder-npc-core/downtrodden/urchin.json","li":"ORC"},{"n":"Urdefhan Blood Mage","s":"abomination-vaults-bestiary","lv":8,"ac":26,"hp":140,"pc":15,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/urdefhan-blood-mage.json","li":"OGL"},{"n":"Urdefhan Death Scout","s":"abomination-vaults-bestiary","lv":6,"ac":24,"hp":92,"pc":15,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/urdefhan-death-scout.json","li":"OGL"},{"n":"Urdefhan Dominator","s":"extinction-curse-bestiary","lv":14,"ac":35,"hp":250,"pc":26,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/urdefhan-dominator.json","li":"OGL"},{"n":"Urdefhan High Tormentor","s":"extinction-curse-bestiary","lv":10,"ac":30,"hp":195,"pc":22,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/urdefhan-high-tormentor.json","li":"OGL"},{"n":"Urdefhan Hunter","s":"extinction-curse-bestiary","lv":12,"ac":34,"hp":190,"pc":26,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/urdefhan-hunter.json","li":"OGL"},{"n":"Urdefhan Lasher","s":"abomination-vaults-bestiary","lv":7,"ac":24,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/urdefhan-lasher.json","li":"OGL"},{"n":"Urdefhan Tormentor","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":75,"pc":13,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/urdefhan-tormentor.json","li":"ORC"},{"n":"Urdefhan Warrior","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":55,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/urdefhan-warrior.json","li":"ORC"},{"n":"Urevian","s":"abomination-vaults-bestiary","lv":9,"ac":28,"hp":135,"pc":19,"sz":"medium","tp":"fiend","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/urevian.json","li":"OGL"},{"n":"Urglid","s":"pathfinder-monster-core-2","lv":13,"ac":31,"hp":290,"pc":20,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/urglid.json","li":"ORC"},{"n":"Uri Zandivar","s":"age-of-ashes-bestiary","lv":19,"ac":43,"hp":350,"pc":35,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/uri-zandivar.json","li":"OGL"},{"n":"Urnak Lostwind","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":34,"hp":310,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/urnak-lostwind.json","li":"OGL"},{"n":"Urok","s":"blog-bestiary","lv":9,"ac":27,"hp":140,"pc":18,"sz":"small","tp":"humanoid","f":"blog-bestiary/urok.json","li":"OGL"},{"n":"Urthagul","s":"abomination-vaults-bestiary","lv":10,"ac":30,"hp":175,"pc":19,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/abomination-vaults-hardcover-compilation/urthagul.json","li":"OGL"},{"n":"Urushil","s":"extinction-curse-bestiary","lv":18,"ac":45,"hp":410,"pc":32,"sz":"large","tp":"fiend","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/urushil.json","li":"OGL"},{"n":"Urveth","s":"pathfinder-monster-core-2","lv":18,"ac":40,"hp":460,"pc":32,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core-2/urveth.json","li":"ORC"},{"n":"Usher","s":"wardens-of-wildwood-bestiary","lv":7,"ac":26,"hp":100,"pc":13,"sz":"medium","tp":"construct","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/usher.json","li":"ORC"},{"n":"Usij Cultist","s":"the-enmity-cycle-bestiary","lv":3,"ac":18,"hp":50,"pc":9,"sz":"medium","tp":"humanoid","f":"the-enmity-cycle-bestiary/usij-cultist.json","li":"OGL"},{"n":"Usilket","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":238,"pc":24,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-2-the-destiny-war/usilket.json","li":"OGL"},{"n":"Vaklish","s":"age-of-ashes-bestiary","lv":12,"ac":33,"hp":185,"pc":22,"sz":"medium","tp":"fiend","f":"age-of-ashes-bestiary/book-3-tomorrow-must-burn/vaklish.json","li":"OGL"},{"n":"Valkyrie","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":215,"pc":22,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/valkyrie.json","li":"ORC"},{"n":"Valkyrie of Gorum","s":"prey-for-death-bestiary","lv":12,"ac":33,"hp":215,"pc":22,"sz":"medium","tp":"monitor","f":"prey-for-death-bestiary/valkyrie-of-gorum.json","li":"ORC"},{"n":"Valkyrie Tempest","s":"prey-for-death-bestiary","lv":17,"ac":37,"hp":312,"pc":28,"sz":"gargantuan","tp":"monitor","f":"prey-for-death-bestiary/valkyrie-tempest.json","li":"ORC"},{"n":"Valmar","s":"gatewalkers-bestiary","lv":6,"ac":23,"hp":99,"pc":12,"sz":"medium","tp":"aberration","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/valmar.json","li":"ORC"},{"n":"Vamollaroth","s":"spore-war-bestiary","lv":21,"ac":45,"hp":355,"pc":36,"sz":"gargantuan","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/vamollaroth.json","li":"ORC"},{"n":"Vampire Bat Swarm","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":11,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/vampire-bat-swarm.json","li":"ORC"},{"n":"Vampire Count","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":65,"pc":17,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/vampire-count.json","li":"ORC"},{"n":"Vampire Guardian","s":"blood-lords-bestiary","lv":10,"ac":29,"hp":132,"pc":21,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/vampire-guardian.json","li":"OGL"},{"n":"Vampire Mastermind","s":"pathfinder-monster-core","lv":9,"ac":27,"hp":115,"pc":20,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/vampire-mastermind.json","li":"ORC"},{"n":"Vampire Nettle","s":"shades-of-blood-bestiary","lv":2,"ac":17,"hp":36,"pc":8,"sz":"small","tp":"plant","f":"shades-of-blood-bestiary/book-2-the-broken-palace/vampire-nettle.json","li":"ORC"},{"n":"Vampire Rival Necromancer","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":175,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/vampire-rival-necromancer.json","li":"OGL"},{"n":"Vampire Servant","s":"shades-of-blood-bestiary","lv":2,"ac":17,"hp":25,"pc":9,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/vampire-servant.json","li":"ORC"},{"n":"Vampire Servitor","s":"pathfinder-monster-core","lv":4,"ac":22,"hp":40,"pc":12,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/vampire-servitor.json","li":"ORC"},{"n":"Vampire Servitor","s":"shades-of-blood-bestiary","lv":4,"ac":22,"hp":40,"pc":12,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/vampire-servitor.json","li":"ORC"},{"n":"Vampire Taviah","s":"blood-lords-bestiary","lv":12,"ac":33,"hp":180,"pc":23,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-3-field-of-maidens/vampire-taviah.json","li":"OGL"},{"n":"Vanara Disciple","s":"pathfinder-monster-core-2","lv":1,"ac":19,"hp":16,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/vanara-disciple.json","li":"ORC"},{"n":"Vanda","s":"rusthenge-bestiary","lv":2,"ac":16,"hp":30,"pc":8,"sz":"medium","tp":"humanoid","f":"rusthenge-bestiary/vanda.json","li":"OGL"},{"n":"Vansidieth","s":"spore-war-bestiary","lv":18,"ac":41,"hp":410,"pc":32,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/vansidieth.json","li":"ORC"},{"n":"Vanth","s":"pathfinder-monster-core","lv":7,"ac":27,"hp":105,"pc":15,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core/vanth.json","li":"ORC"},{"n":"Vanth Guardian Flock","s":"battlecry-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"gargantuan","tp":"monitor","f":"battlecry-bestiary/vanth-guardian-flock.json","li":"ORC"},{"n":"Vanth Warrior","s":"blood-lords-bestiary","lv":14,"ac":37,"hp":255,"pc":25,"sz":"medium","tp":"monitor","f":"blood-lords-bestiary/book-6-ghost-kings-rage/vanth-warrior.json","li":"OGL"},{"n":"Vanyver","s":"pathfinder-monster-core-2","lv":13,"ac":34,"hp":275,"pc":26,"sz":"huge","tp":"undead","f":"pathfinder-monster-core-2/vanyver.json","li":"ORC"},{"n":"Vargouille","s":"agents-of-edgewatch-bestiary","lv":2,"ac":18,"hp":30,"pc":11,"sz":"small","tp":"beast","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/vargouille.json","li":"OGL"},{"n":"Vargouille","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":18,"hp":28,"pc":8,"sz":"small","tp":"aberration","f":"crown-of-the-kobold-king-bestiary/vargouille.json","li":"OGL"},{"n":"Variant Dread Wraith","s":"season-of-ghosts-bestiary","lv":9,"ac":28,"hp":130,"pc":19,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-4-to-bloom-below-the-web/variant-dread-wraith.json","li":"OGL"},{"n":"Varilyn \"Vare\" Eridge","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":21,"hp":60,"pc":14,"sz":"small","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/varilyn-vare-eridge.json","li":"OGL"},{"n":"Varlario Demicci","s":"hellbreakers-bestiary","lv":8,"ac":25,"hp":110,"pc":13,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/varlario-demicci.json","li":"ORC"},{"n":"Vaspercham","s":"pathfinder-monster-core-2","lv":17,"ac":41,"hp":335,"pc":30,"sz":"huge","tp":"aberration","f":"pathfinder-monster-core-2/vaspercham.json","li":"ORC"},{"n":"Vatumledor","s":"prey-for-death-bestiary","lv":16,"ac":40,"hp":345,"pc":30,"sz":"huge","tp":"dragon","f":"prey-for-death-bestiary/vatumledor.json","li":"ORC"},{"n":"Vault Builder","s":"rage-of-elements-bestiary","lv":23,"ac":47,"hp":465,"pc":37,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/vault-builder.json","li":"OGL"},{"n":"Vault Keeper","s":"rage-of-elements-bestiary","lv":14,"ac":36,"hp":200,"pc":26,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/vault-keeper.json","li":"OGL"},{"n":"Vaultbreaker Ooze","s":"agents-of-edgewatch-bestiary","lv":6,"ac":13,"hp":150,"pc":10,"sz":"large","tp":"ooze","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/vaultbreaker-ooze.json","li":"OGL"},{"n":"Vavakia","s":"extinction-curse-bestiary","lv":18,"ac":42,"hp":350,"pc":32,"sz":"huge","tp":"fiend","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/vavakia.json","li":"OGL"},{"n":"Vazgorlu","s":"age-of-ashes-bestiary","lv":20,"ac":45,"hp":380,"pc":33,"sz":"large","tp":"aberration","f":"age-of-ashes-bestiary/book-6-broken-promises/vazgorlu.json","li":"OGL"},{"n":"Veavieve","s":"sky-kings-tomb-bestiary","lv":6,"ac":24,"hp":100,"pc":14,"sz":"small","tp":"fey","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/veavieve.json","li":"OGL"},{"n":"Vegetable Lamb","s":"rage-of-elements-bestiary","lv":1,"ac":14,"hp":28,"pc":4,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/vegetable-lamb.json","li":"OGL"},{"n":"Vehanezhad","s":"stolen-fate-bestiary","lv":18,"ac":42,"hp":335,"pc":32,"sz":"gargantuan","tp":"dragon","f":"stolen-fate-bestiary/book-2-the-destiny-war/vehanezhad.json","li":"OGL"},{"n":"Veiled Current","s":"rage-of-elements-bestiary","lv":8,"ac":28,"hp":100,"pc":17,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/veiled-current.json","li":"OGL"},{"n":"Vekensvok's Lampad","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":22,"hp":85,"pc":12,"sz":"medium","tp":"fey","f":"seven-dooms-for-sandpoint-bestiary/vekensvoks-lampad.json","li":"OGL"},{"n":"Veksciralenix","s":"agents-of-edgewatch-bestiary","lv":20,"ac":45,"hp":375,"pc":36,"sz":"gargantuan","tp":"dragon","f":"agents-of-edgewatch-bestiary/book-6-ruins-of-the-radiant-siege/veksciralenix.json","li":"OGL"},{"n":"Velavi","s":"hellbreakers-bestiary","lv":2,"ac":17,"hp":28,"pc":11,"sz":"medium","tp":"fiend","f":"hellbreakers-bestiary/velavi.json","li":"ORC"},{"n":"Veldenar","s":"rage-of-elements-bestiary","lv":11,"ac":32,"hp":190,"pc":24,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/veldenar.json","li":"OGL"},{"n":"Velociraptor","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"small","tp":"animal","f":"pathfinder-monster-core/velociraptor.json","li":"ORC"},{"n":"Velociraptor Pack","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":75,"pc":12,"sz":"gargantuan","tp":"animal","f":"pathfinder-monster-core-2/velociraptor-pack.json","li":"ORC"},{"n":"Venator","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":230,"pc":24,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/venator.json","li":"ORC"},{"n":"Venedaemon","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/venedaemon.json","li":"ORC"},{"n":"Venexus","s":"quest-for-the-frozen-flame-bestiary","lv":9,"ac":28,"hp":170,"pc":20,"sz":"large","tp":"dragon","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/venexus.json","li":"OGL"},{"n":"Venexus's Chosen","s":"quest-for-the-frozen-flame-bestiary","lv":6,"ac":23,"hp":115,"pc":14,"sz":"medium","tp":"beast","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/venexuss-chosen.json","li":"OGL"},{"n":"Venexus's Wyrmling","s":"quest-for-the-frozen-flame-bestiary","lv":5,"ac":22,"hp":90,"pc":12,"sz":"medium","tp":"dragon","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/venexuss-wyrmling.json","li":"OGL"},{"n":"Vengeful Shade","s":"myth-speaker-bestiary","lv":10,"ac":29,"hp":140,"pc":22,"sz":"medium","tp":"spirit","f":"myth-speaker-bestiary/book-3-titanbane/vengeful-shade.json","li":"ORC"},{"n":"Venom Mage","s":"agents-of-edgewatch-bestiary","lv":9,"ac":28,"hp":155,"pc":19,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/venom-mage.json","li":"OGL"},{"n":"Venomfist","s":"curtain-call-bestiary","lv":22,"ac":48,"hp":430,"pc":40,"sz":"gargantuan","tp":"elemental","f":"curtain-call-bestiary/book-3-bring-the-house-down/venomfist.json","li":"ORC"},{"n":"Veranallia","s":"pathfinder-monster-core-2","lv":20,"ac":45,"hp":475,"pc":38,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/veranallia.json","li":"ORC"},{"n":"Verdant Swordkeeper","s":"wardens-of-wildwood-bestiary","lv":10,"ac":29,"hp":285,"pc":20,"sz":"large","tp":"construct","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/verdant-swordkeeper.json","li":"ORC"},{"n":"Verdure's Moonflower","s":"pathfinder-dark-archive","lv":8,"ac":24,"hp":120,"pc":16,"sz":"huge","tp":"plant","f":"pathfinder-dark-archive/npcs/verdures-moonflower.json","li":"ORC"},{"n":"Verdurous Ooze","s":"pathfinder-monster-core-2","lv":6,"ac":12,"hp":157,"pc":8,"sz":"medium","tp":"ooze","f":"pathfinder-monster-core-2/verdurous-ooze.json","li":"ORC"},{"n":"Verex-That-Was","s":"war-of-immortals-bestiary","lv":24,"ac":51,"hp":550,"pc":42,"sz":"gargantuan","tp":"aberration","f":"war-of-immortals-bestiary/verex-that-was.json","li":"ORC"},{"n":"Vermin Catcher","s":"pathfinder-npc-core","lv":2,"ac":17,"hp":35,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/laborer/vermin-catcher.json","li":"ORC"},{"n":"Vermlek","s":"pathfinder-monster-core-2","lv":3,"ac":16,"hp":55,"pc":8,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/vermlek.json","li":"ORC"},{"n":"Verthok the Reaper","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":30,"hp":180,"pc":19,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/verthok-the-reaper.json","li":"ORC"},{"n":"Very Drunken Jinkin","s":"season-of-ghosts-bestiary","lv":-1,"ac":12,"hp":9,"pc":0,"sz":"tiny","tp":"fey","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/very-drunken-jinkin.json","li":"ORC"},{"n":"Vescavor Queen","s":"pathfinder-monster-core","lv":9,"ac":28,"hp":150,"pc":11,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/vescavor-queen.json","li":"ORC"},{"n":"Vescavor Swarm","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":60,"pc":11,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/vescavor-swarm.json","li":"ORC"},{"n":"Veshumirix","s":"age-of-ashes-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"huge","tp":"dragon","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/veshumirix.json","li":"OGL"},{"n":"Vesinra","s":"revenge-of-the-runelords-bestiary","lv":11,"ac":31,"hp":195,"pc":22,"sz":"large","tp":"beast","f":"revenge-of-the-runelords-bestiary/book-1-lord-of-the-trinity-star/vesinra.json","li":"ORC"},{"n":"Vetalarana Emergent","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":100,"pc":14,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/vetalarana-emergent.json","li":"OGL"},{"n":"Vetalarana Manipulator","s":"book-of-the-dead-bestiary","lv":11,"ac":28,"hp":140,"pc":22,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/vetalarana-manipulator.json","li":"OGL"},{"n":"Veteran Noble","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":85,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/courtier/veteran-noble.json","li":"ORC"},{"n":"Veteran Reclaimer","s":"lost-omens-bestiary","lv":11,"ac":29,"hp":195,"pc":24,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/veteran-reclaimer.json","li":"OGL"},{"n":"Veteran War Horse","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":90,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-npc-core/creature-companions/veteran-war-horse.json","li":"ORC"},{"n":"Vewslog","s":"outlaws-of-alkenstar-bestiary","lv":9,"ac":28,"hp":161,"pc":18,"sz":"large","tp":"giant","f":"outlaws-of-alkenstar-bestiary/book-3-the-smoking-gun/vewslog.json","li":"OGL"},{"n":"Vharnev the Butcher","s":"stolen-fate-bestiary","lv":10,"ac":29,"hp":180,"pc":14,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-1-the-choosing/vharnev-the-butcher.json","li":"OGL"},{"n":"Vhisa Resgrido","s":"gatewalkers-bestiary","lv":3,"ac":18,"hp":40,"pc":6,"sz":"medium","tp":"humanoid","f":"gatewalkers-bestiary/book-2-they-watched-the-stars/vhisa-resgrido.json","li":"ORC"},{"n":"Vibrant Pup Swarm","s":"howl-of-the-wild-bestiary","lv":11,"ac":29,"hp":140,"pc":22,"sz":"huge","tp":"animal","f":"howl-of-the-wild-bestiary/vibrant-pup-swarm.json","li":"ORC"},{"n":"Vice-Chancellor Vikroti Stroh","s":"blood-lords-bestiary","lv":18,"ac":39,"hp":245,"pc":33,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-6-ghost-kings-rage/vice-chancellor-vikroti-stroh.json","li":"OGL"},{"n":"Vicharamuni","s":"pathfinder-monster-core","lv":10,"ac":31,"hp":175,"pc":22,"sz":"large","tp":"beast","f":"pathfinder-monster-core/vicharamuni.json","li":"ORC"},{"n":"Vicious Army Ant Swarm","s":"kingmaker-bestiary","lv":12,"ac":32,"hp":155,"pc":23,"sz":"large","tp":"animal","f":"kingmaker-bestiary/vicious-army-ant-swarm.json","li":"OGL"},{"n":"Vidileth","s":"pathfinder-monster-core","lv":14,"ac":34,"hp":270,"pc":25,"sz":"large","tp":"aberration","f":"pathfinder-monster-core/vidileth.json","li":"ORC"},{"n":"Vigilia","s":"pathfinder-monster-core-2","lv":11,"ac":30,"hp":190,"pc":24,"sz":"medium","tp":"monitor","f":"pathfinder-monster-core-2/vigilia.json","li":"ORC"},{"n":"Vikandian","s":"shades-of-blood-bestiary","lv":8,"ac":26,"hp":100,"pc":16,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-2-the-broken-palace/vikandian.json","li":"ORC"},{"n":"Viking Guard","s":"battlecry-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/viking-guard.json","li":"ORC"},{"n":"Viktor Volkano","s":"extinction-curse-bestiary","lv":2,"ac":16,"hp":40,"pc":7,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/viktor-volkano.json","li":"OGL"},{"n":"Vilderavn","s":"pathfinder-monster-core","lv":16,"ac":40,"hp":300,"pc":28,"sz":"medium","tp":"fey","f":"pathfinder-monster-core/vilderavn.json","li":"ORC"},{"n":"Vilderavn Herald","s":"kingmaker-bestiary","lv":19,"ac":44,"hp":375,"pc":35,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/vilderavn-herald.json","li":"OGL"},{"n":"Villamor Koth","s":"kingmaker-bestiary","lv":15,"ac":35,"hp":350,"pc":27,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/villamor-koth.json","li":"OGL"},{"n":"Vilm","s":"one-shot-bestiary","lv":1,"ac":17,"hp":19,"pc":7,"sz":"tiny","tp":"fey","f":"one-shot-bestiary/a-few-flowers-more/vilm.json","li":"OGL"},{"n":"Vilree","s":"fall-of-plaguestone","lv":5,"ac":22,"hp":68,"pc":10,"sz":"medium","tp":"humanoid","f":"fall-of-plaguestone/vilree.json","li":"OGL"},{"n":"Vincuvicar","s":"stolen-fate-bestiary","lv":18,"ac":42,"hp":333,"pc":32,"sz":"medium","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/vincuvicar.json","li":"OGL"},{"n":"Vine Lasher","s":"fall-of-plaguestone","lv":0,"ac":16,"hp":15,"pc":4,"sz":"small","tp":"plant","f":"fall-of-plaguestone/vine-lasher.json","li":"OGL"},{"n":"Vinn Karskell","s":"shades-of-blood-bestiary","lv":6,"ac":24,"hp":93,"pc":15,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-2-the-broken-palace/vinn-karskell.json","li":"ORC"},{"n":"Vintalax, The Rotting God","s":"spore-war-bestiary","lv":14,"ac":34,"hp":240,"pc":25,"sz":"medium","tp":"fungus","f":"spore-war-bestiary/book-1-whispers-in-the-dirt/vintalax-the-rotting-god.json","li":"ORC"},{"n":"Violet","s":"extinction-curse-bestiary","lv":1,"ac":16,"hp":24,"pc":6,"sz":"small","tp":"animal","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/violet.json","li":"OGL"},{"n":"Viper","s":"pathfinder-monster-core","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"animal","f":"pathfinder-monster-core/viper.json","li":"ORC"},{"n":"Viper (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":14,"hp":8,"pc":5,"sz":"tiny","tp":"animal","f":"menace-under-otari-bestiary/viper-bb.json","li":"ORC"},{"n":"Viper Bat","s":"shades-of-blood-bestiary","lv":7,"ac":24,"hp":115,"pc":15,"sz":"huge","tp":"beast","f":"shades-of-blood-bestiary/book-2-the-broken-palace/viper-bat.json","li":"ORC"},{"n":"Viper Swarm","s":"pathfinder-monster-core-2","lv":4,"ac":18,"hp":50,"pc":12,"sz":"large","tp":"animal","f":"pathfinder-monster-core-2/viper-swarm.json","li":"ORC"},{"n":"Viper Vine","s":"pathfinder-monster-core-2","lv":13,"ac":33,"hp":270,"pc":22,"sz":"large","tp":"plant","f":"pathfinder-monster-core-2/viper-vine.json","li":"ORC"},{"n":"Viro Ahala","s":"hellbreakers-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"hellbreakers-bestiary/viro-ahala.json","li":"ORC"},{"n":"Virthad","s":"kingmaker-bestiary","lv":8,"ac":26,"hp":135,"pc":18,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/virthad.json","li":"OGL"},{"n":"Virtuosic Lyrebird","s":"howl-of-the-wild-bestiary","lv":6,"ac":24,"hp":65,"pc":14,"sz":"tiny","tp":"beast","f":"howl-of-the-wild-bestiary/virtuosic-lyrebird.json","li":"ORC"},{"n":"Virtuous Defender","s":"lost-omens-bestiary","lv":4,"ac":22,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"lost-omens-bestiary/character-guide/virtuous-defender.json","li":"OGL"},{"n":"Virulak Necromancer","s":"blood-lords-bestiary","lv":7,"ac":24,"hp":115,"pc":13,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/virulak-necromancer.json","li":"OGL"},{"n":"Virulak Villager","s":"blood-lords-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/virulak-villager.json","li":"OGL"},{"n":"Vischari","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/vischari.json","li":"OGL"},{"n":"Viscous Black Pudding","s":"abomination-vaults-bestiary","lv":7,"ac":14,"hp":165,"pc":9,"sz":"huge","tp":"ooze","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/viscous-black-pudding.json","li":"OGL"},{"n":"Vishkanya Infiltrator","s":"pathfinder-monster-core-2","lv":3,"ac":19,"hp":45,"pc":10,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/vishkanya-infiltrator.json","li":"ORC"},{"n":"Viskithrel","s":"extinction-curse-bestiary","lv":15,"ac":37,"hp":275,"pc":27,"sz":"huge","tp":"beast","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/viskithrel.json","li":"OGL"},{"n":"Vitalia","s":"extinction-curse-bestiary","lv":18,"ac":39,"hp":425,"pc":30,"sz":"large","tp":"aberration","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/vitalia.json","li":"OGL"},{"n":"Vivielle Ramslay","s":"outlaws-of-alkenstar-bestiary","lv":4,"ac":21,"hp":54,"pc":10,"sz":"medium","tp":"humanoid","f":"outlaws-of-alkenstar-bestiary/book-2-cradle-of-quartz/vivielle-ramslay.json","li":"OGL"},{"n":"Vixivax","s":"spore-war-bestiary","lv":15,"ac":35,"hp":200,"pc":25,"sz":"medium","tp":"fiend","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/vixivax.json","li":"ORC"},{"n":"Vizier Archdragon","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":530,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-archdragon.json","li":"ORC"},{"n":"Vizier Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":23,"ac":48,"hp":530,"pc":39,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-archdragon-spellcaster.json","li":"ORC"},{"n":"Vizier Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":300,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Vizier Dragon (Adult)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":300,"pc":29,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-adult.json","li":"ORC"},{"n":"Vizier Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Vizier Dragon (Ancient)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":450,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-ancient.json","li":"ORC"},{"n":"Vizier Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":230,"pc":21,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-young-spellcaster.json","li":"ORC"},{"n":"Vizier Dragon (Young)","s":"lost-omens-bestiary","lv":11,"ac":30,"hp":230,"pc":21,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vizier/vizier-dragon-young.json","li":"ORC"},{"n":"Vizmivool","s":"seven-dooms-for-sandpoint-bestiary","lv":9,"ac":29,"hp":130,"pc":19,"sz":"medium","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/vizmivool.json","li":"OGL"},{"n":"Vloriak","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":90,"pc":13,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/vloriak.json","li":"ORC"},{"n":"Vlorian Cythnigot","s":"rusthenge-bestiary","lv":3,"ac":19,"hp":45,"pc":9,"sz":"medium","tp":"fiend","f":"rusthenge-bestiary/vlorian-cythnigot.json","li":"OGL"},{"n":"Vofnir","s":"prey-for-death-bestiary","lv":12,"ac":32,"hp":212,"pc":23,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/vofnir.json","li":"ORC"},{"n":"Vogorond","s":"revenge-of-the-runelords-bestiary","lv":18,"ac":40,"hp":340,"pc":31,"sz":"huge","tp":"construct","f":"revenge-of-the-runelords-bestiary/book-2-crypt-of-runes/vogorond.json","li":"ORC"},{"n":"Voidbracken Chuul","s":"abomination-vaults-bestiary","lv":9,"ac":31,"hp":140,"pc":18,"sz":"large","tp":"aberration","f":"abomination-vaults-bestiary/book-3-eyes-of-empty-death/voidbracken-chuul.json","li":"OGL"},{"n":"Voidglutton","s":"abomination-vaults-bestiary","lv":8,"ac":30,"hp":90,"pc":18,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/voidglutton.json","li":"OGL"},{"n":"Voidworm","s":"pathfinder-monster-core","lv":1,"ac":17,"hp":16,"pc":4,"sz":"tiny","tp":"monitor","f":"pathfinder-monster-core/voidworm.json","li":"ORC"},{"n":"Volluk Azrinae","s":"abomination-vaults-bestiary","lv":7,"ac":25,"hp":85,"pc":15,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/volluk-azrinae.json","li":"OGL"},{"n":"Volnagur","s":"pathfinder-monster-core-2","lv":22,"ac":48,"hp":515,"pc":39,"sz":"gargantuan","tp":"beast","f":"pathfinder-monster-core-2/volnagur.json","li":"ORC"},{"n":"Volodmyra","s":"kingmaker-bestiary","lv":3,"ac":18,"hp":48,"pc":7,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/volodmyra.json","li":"OGL"},{"n":"Vool","s":"shades-of-blood-bestiary","lv":4,"ac":20,"hp":58,"pc":8,"sz":"medium","tp":"humanoid","f":"shades-of-blood-bestiary/book-2-the-broken-palace/vool.json","li":"ORC"},{"n":"Vordakai","s":"kingmaker-bestiary","lv":12,"ac":33,"hp":200,"pc":23,"sz":"large","tp":"undead","f":"kingmaker-bestiary/vordakai.json","li":"OGL"},{"n":"Vordine","s":"pathfinder-monster-core","lv":5,"ac":22,"hp":60,"pc":12,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core/vordine.json","li":"ORC"},{"n":"Vordine Legion","s":"battlecry-bestiary","lv":10,"ac":29,"hp":180,"pc":19,"sz":"gargantuan","tp":"fiend","f":"battlecry-bestiary/vordine-legion.json","li":"ORC"},{"n":"Vorens","s":"curtain-call-bestiary","lv":14,"ac":35,"hp":254,"pc":23,"sz":"medium","tp":"humanoid","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/vorens.json","li":"ORC"},{"n":"Voricose","s":"stolen-fate-bestiary","lv":15,"ac":37,"hp":275,"pc":28,"sz":"large","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/voricose.json","li":"OGL"},{"n":"Vornen","s":"myth-speaker-bestiary","lv":5,"ac":21,"hp":75,"pc":16,"sz":"large","tp":"beast","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/vornen.json","li":"ORC"},{"n":"Vorpal Archdragon","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-archdragon.json","li":"ORC"},{"n":"Vorpal Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":21,"ac":46,"hp":400,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-archdragon-spellcaster.json","li":"ORC"},{"n":"Vorpal Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":230,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Vorpal Dragon (Adult)","s":"lost-omens-bestiary","lv":13,"ac":34,"hp":230,"pc":23,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-adult.json","li":"ORC"},{"n":"Vorpal Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":330,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Vorpal Dragon (Ancient)","s":"lost-omens-bestiary","lv":18,"ac":42,"hp":330,"pc":33,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-ancient.json","li":"ORC"},{"n":"Vorpal Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-young-spellcaster.json","li":"ORC"},{"n":"Vorpal Dragon (Young)","s":"lost-omens-bestiary","lv":9,"ac":28,"hp":150,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/vorpal/vorpal-dragon-young.json","li":"ORC"},{"n":"Vorvorak","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":200,"pc":19,"sz":"huge","tp":"beast","f":"lost-omens-bestiary/shining-kingdoms/vorvorak.json","li":"ORC"},{"n":"Voxnia","s":"sky-kings-tomb-bestiary","lv":7,"ac":27,"hp":115,"pc":15,"sz":"large","tp":"aberration","f":"sky-kings-tomb-bestiary/book-2-cult-of-the-cave-worm/voxnia.json","li":"OGL"},{"n":"Voz Lirayne","s":"age-of-ashes-bestiary","lv":5,"ac":20,"hp":56,"pc":7,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/voz-lirayne.json","li":"OGL"},{"n":"Vrolikai","s":"pathfinder-monster-core","lv":20,"ac":45,"hp":440,"pc":34,"sz":"large","tp":"fiend","f":"pathfinder-monster-core/vrolikai.json","li":"ORC"},{"n":"Vulot","s":"war-of-immortals-bestiary","lv":21,"ac":46,"hp":425,"pc":38,"sz":"large","tp":"fiend","f":"war-of-immortals-bestiary/vulot.json","li":"ORC"},{"n":"Vulpinal","s":"pathfinder-monster-core-2","lv":6,"ac":23,"hp":105,"pc":15,"sz":"small","tp":"celestial","f":"pathfinder-monster-core-2/vulpinal.json","li":"ORC"},{"n":"Vulpinal Twin","s":"the-enmity-cycle-bestiary","lv":6,"ac":24,"hp":105,"pc":15,"sz":"small","tp":"celestial","f":"the-enmity-cycle-bestiary/vulpinal-twin.json","li":"OGL"},{"n":"Vulture Rat","s":"lost-omens-bestiary","lv":-1,"ac":15,"hp":8,"pc":5,"sz":"small","tp":"animal","f":"lost-omens-bestiary/travel-guide/vulture-rat.json","li":"OGL"},{"n":"Vye","s":"shades-of-blood-bestiary","lv":5,"ac":20,"hp":65,"pc":10,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/vye.json","li":"ORC"},{"n":"Wailing Archdragon","s":"lost-omens-bestiary","lv":18,"ac":41,"hp":400,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-archdragon.json","li":"ORC"},{"n":"Wailing Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":18,"ac":41,"hp":400,"pc":36,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-archdragon-spellcaster.json","li":"ORC"},{"n":"Wailing Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Wailing Dragon (Adult)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":215,"pc":22,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-adult.json","li":"ORC"},{"n":"Wailing Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":330,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Wailing Dragon (Ancient)","s":"lost-omens-bestiary","lv":15,"ac":36,"hp":330,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-ancient.json","li":"ORC"},{"n":"Wailing Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":120,"pc":17,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-young-spellcaster.json","li":"ORC"},{"n":"Wailing Dragon (Young)","s":"lost-omens-bestiary","lv":6,"ac":23,"hp":120,"pc":17,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wailing/wailing-dragon-young.json","li":"ORC"},{"n":"Walcofinde","s":"lost-omens-bestiary","lv":2,"ac":17,"hp":35,"pc":5,"sz":"medium","tp":"undead","f":"lost-omens-bestiary/shining-kingdoms/walcofinde.json","li":"ORC"},{"n":"Waldgeist","s":"book-of-the-dead-bestiary","lv":8,"ac":26,"hp":100,"pc":18,"sz":"small","tp":"spirit","f":"book-of-the-dead-bestiary/waldgeist.json","li":"OGL"},{"n":"War Auroch","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":27,"hp":195,"pc":16,"sz":"huge","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/war-auroch.json","li":"ORC"},{"n":"War Horse","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":36,"pc":6,"sz":"large","tp":"animal","f":"pathfinder-monster-core/war-horse.json","li":"ORC"},{"n":"War Pig","s":"triumph-of-the-tusk-bestiary","lv":6,"ac":23,"hp":110,"pc":14,"sz":"large","tp":"animal","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/war-pig.json","li":"ORC"},{"n":"War Pony","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":5,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/war-pony.json","li":"ORC"},{"n":"War Sauropelta","s":"extinction-curse-bestiary","lv":12,"ac":34,"hp":220,"pc":23,"sz":"large","tp":"animal","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/war-sauropelta.json","li":"OGL"},{"n":"War Wraith","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":130,"pc":19,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/war-wraith.json","li":"ORC"},{"n":"Warbal Bumblebrasher","s":"age-of-ashes-bestiary","lv":1,"ac":15,"hp":20,"pc":3,"sz":"small","tp":"humanoid","f":"age-of-ashes-bestiary/book-1-hellknight-hill/warbal-bumblebrasher.json","li":"OGL"},{"n":"Warcat of Rull","s":"triumph-of-the-tusk-bestiary","lv":13,"ac":34,"hp":233,"pc":26,"sz":"huge","tp":"","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/warcat-of-rull.json","li":"ORC"},{"n":"Warden","s":"pathfinder-npc-core","lv":6,"ac":24,"hp":100,"pc":17,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/warden.json","li":"ORC"},{"n":"Warden of Caverns and Burrows","s":"howl-of-the-wild-bestiary","lv":22,"ac":45,"hp":500,"pc":36,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/warden-of-caverns-and-burrows.json","li":"ORC"},{"n":"Warden of Forests and Meadows","s":"howl-of-the-wild-bestiary","lv":22,"ac":48,"hp":435,"pc":36,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/warden-of-forests-and-meadows.json","li":"ORC"},{"n":"Warden of Oceans and Rivers","s":"howl-of-the-wild-bestiary","lv":22,"ac":47,"hp":540,"pc":39,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/warden-of-oceans-and-rivers.json","li":"ORC"},{"n":"Warden of Peaks and Skies","s":"howl-of-the-wild-bestiary","lv":22,"ac":48,"hp":445,"pc":40,"sz":"gargantuan","tp":"beast","f":"howl-of-the-wild-bestiary/warden-of-peaks-and-skies.json","li":"ORC"},{"n":"Warg","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":36,"pc":8,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/warg.json","li":"ORC"},{"n":"Warg (BB)","s":"menace-under-otari-bestiary","lv":2,"ac":17,"hp":36,"pc":8,"sz":"medium","tp":"beast","f":"menace-under-otari-bestiary/warg-bb.json","li":"ORC"},{"n":"Warmonger","s":"pathfinder-npc-core","lv":10,"ac":29,"hp":200,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/warmonger.json","li":"ORC"},{"n":"Warped Brew Morlock","s":"abomination-vaults-bestiary","lv":2,"ac":17,"hp":38,"pc":7,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/warped-brew-morlock.json","li":"OGL"},{"n":"Warshard Wight","s":"hellbreakers-bestiary","lv":5,"ac":22,"hp":82,"pc":13,"sz":"medium","tp":"undead","f":"hellbreakers-bestiary/warshard-wight.json","li":"ORC"},{"n":"Warsworn","s":"pathfinder-monster-core","lv":16,"ac":37,"hp":350,"pc":27,"sz":"gargantuan","tp":"undead","f":"pathfinder-monster-core/warsworn.json","li":"ORC"},{"n":"Warty","s":"season-of-ghosts-bestiary","lv":2,"ac":17,"hp":36,"pc":8,"sz":"large","tp":"animal","f":"season-of-ghosts-bestiary/season-of-ghosts-hardcover-compilation/warty.json","li":"ORC"},{"n":"Washboard Dog Tough","s":"agents-of-edgewatch-bestiary","lv":7,"ac":25,"hp":125,"pc":17,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-3-all-or-nothing/washboard-dog-tough.json","li":"OGL"},{"n":"Wasp Swarm","s":"pathfinder-monster-core","lv":4,"ac":18,"hp":45,"pc":10,"sz":"large","tp":"animal","f":"pathfinder-monster-core/wasp-swarm.json","li":"ORC"},{"n":"Watch Officer","s":"pathfinder-npc-core","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/watch-officer.json","li":"ORC"},{"n":"Watcher","s":"revenge-of-the-runelords-bestiary","lv":22,"ac":48,"hp":450,"pc":43,"sz":"gargantuan","tp":"monitor","f":"revenge-of-the-runelords-bestiary/book-3-into-the-apocalypse-archive/watcher.json","li":"ORC"},{"n":"Watchmage","s":"pathfinder-npc-core","lv":5,"ac":21,"hp":70,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/official/watchmage.json","li":"ORC"},{"n":"Watchmage Squadron","s":"pathfinder-npc-core","lv":10,"ac":30,"hp":180,"pc":22,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/official/watchmage-squadron.json","li":"ORC"},{"n":"Watchtower Poltergeist","s":"fists-of-the-ruby-phoenix-bestiary","lv":14,"ac":36,"hp":190,"pc":24,"sz":"medium","tp":"spirit","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/watchtower-poltergeist.json","li":"OGL"},{"n":"Watchtower Shadow","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":36,"hp":190,"pc":25,"sz":"medium","tp":"undead","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/watchtower-shadow.json","li":"OGL"},{"n":"Watchtower Wraith","s":"fists-of-the-ruby-phoenix-bestiary","lv":16,"ac":39,"hp":285,"pc":28,"sz":"medium","tp":"undead","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/watchtower-wraith.json","li":"OGL"},{"n":"Water Elemental Vessel","s":"agents-of-edgewatch-bestiary","lv":16,"ac":40,"hp":225,"pc":28,"sz":"large","tp":"elemental","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/water-elemental-vessel.json","li":"OGL"},{"n":"Water Elemental Vessel (I2)","s":"agents-of-edgewatch-bestiary","lv":16,"ac":40,"hp":225,"pc":28,"sz":"large","tp":"elemental","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/water-elemental-vessel-i2.json","li":"OGL"},{"n":"Water Orm","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":170,"pc":21,"sz":"huge","tp":"beast","f":"pathfinder-monster-core-2/water-orm.json","li":"ORC"},{"n":"Water Scamp","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":3,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/water-scamp.json","li":"ORC"},{"n":"Water Wisp","s":"pathfinder-monster-core-2","lv":0,"ac":13,"hp":20,"pc":6,"sz":"tiny","tp":"elemental","f":"pathfinder-monster-core-2/water-wisp.json","li":"ORC"},{"n":"Waxen Effigy","s":"curtain-call-bestiary","lv":18,"ac":38,"hp":415,"pc":29,"sz":"medium","tp":"ooze","f":"curtain-call-bestiary/book-2-singer-stalker-skinsaw-man/waxen-effigy.json","li":"ORC"},{"n":"Wayang Whisperblade","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":19,"pc":9,"sz":"small","tp":"humanoid","f":"pathfinder-monster-core-2/wayang-whisperblade.json","li":"ORC"},{"n":"Wealthy Vigilante","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/wealthy-vigilante.json","li":"ORC"},{"n":"Weapon Master","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":250,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/weapon-master.json","li":"OGL"},{"n":"Weapon Master (Under the Pale Sun Dervishes)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":250,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/weapon-master-under-the-pale-sun-dervishes.json","li":"OGL"},{"n":"Weathered Wail","s":"age-of-ashes-bestiary","lv":17,"ac":40,"hp":315,"pc":32,"sz":"large","tp":"beast","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/weathered-wail.json","li":"OGL"},{"n":"Weaver of Webs","s":"war-of-immortals-bestiary","lv":15,"ac":36,"hp":335,"pc":32,"sz":"gargantuan","tp":"beast","f":"war-of-immortals-bestiary/weaver-of-webs.json","li":"ORC"},{"n":"Web Grub","s":"shades-of-blood-bestiary","lv":0,"ac":13,"hp":18,"pc":3,"sz":"medium","tp":"animal","f":"shades-of-blood-bestiary/book-2-the-broken-palace/web-grub.json","li":"ORC"},{"n":"Web Lurker (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":19,"hp":45,"pc":10,"sz":"medium","tp":"aberration","f":"menace-under-otari-bestiary/web-lurker-bb.json","li":"OGL"},{"n":"Weeping Jack","s":"blood-lords-bestiary","lv":13,"ac":33,"hp":210,"pc":23,"sz":"small","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/weeping-jack.json","li":"OGL"},{"n":"Wemmuth","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":335,"pc":25,"sz":"huge","tp":"plant","f":"pathfinder-monster-core-2/wemmuth.json","li":"ORC"},{"n":"Wendlyn","s":"blog-bestiary","lv":2,"ac":17,"hp":30,"pc":10,"sz":"medium","tp":"humanoid","f":"blog-bestiary/wendlyn.json","li":"OGL"},{"n":"Wereant Disciple","s":"strength-of-thousands-bestiary","lv":16,"ac":39,"hp":305,"pc":28,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/wereant-disciple.json","li":"OGL"},{"n":"Wereant Poisoner","s":"strength-of-thousands-bestiary","lv":17,"ac":40,"hp":350,"pc":29,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/wereant-poisoner.json","li":"OGL"},{"n":"Wereant Sentinel","s":"strength-of-thousands-bestiary","lv":19,"ac":43,"hp":400,"pc":32,"sz":"medium","tp":"beast","f":"strength-of-thousands-bestiary/book-6-shadows-of-the-ancients/wereant-sentinel.json","li":"OGL"},{"n":"Werebat Warrior","s":"shades-of-blood-bestiary","lv":3,"ac":19,"hp":45,"pc":10,"sz":"medium","tp":"beast","f":"shades-of-blood-bestiary/book-1-thirst-for-blood/werebat-warrior.json","li":"ORC"},{"n":"Werebear","s":"pathfinder-monster-core","lv":4,"ac":23,"hp":75,"pc":11,"sz":"large","tp":"beast","f":"pathfinder-monster-core/werebear.json","li":"ORC"},{"n":"Weredigo","s":"blog-bestiary","lv":15,"ac":37,"hp":280,"pc":29,"sz":"large","tp":"beast","f":"blog-bestiary/weredigo.json","li":"OGL"},{"n":"Weremoose","s":"howl-of-the-wild-bestiary","lv":3,"ac":19,"hp":60,"pc":6,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/weremoose.json","li":"ORC"},{"n":"Werendegar","s":"kingmaker-bestiary","lv":21,"ac":47,"hp":374,"pc":35,"sz":"small","tp":"fey","f":"kingmaker-bestiary/werendegar.json","li":"OGL"},{"n":"Wererat","s":"pathfinder-monster-core","lv":2,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/wererat.json","li":"ORC"},{"n":"Wereshark","s":"howl-of-the-wild-bestiary","lv":4,"ac":21,"hp":75,"pc":10,"sz":"large","tp":"beast","f":"howl-of-the-wild-bestiary/wereshark.json","li":"ORC"},{"n":"Weretiger","s":"pathfinder-monster-core","lv":4,"ac":21,"hp":75,"pc":11,"sz":"large","tp":"beast","f":"pathfinder-monster-core/weretiger.json","li":"ORC"},{"n":"Werewolf","s":"pathfinder-monster-core","lv":3,"ac":17,"hp":63,"pc":9,"sz":"medium","tp":"beast","f":"pathfinder-monster-core/werewolf.json","li":"ORC"},{"n":"Weykoward","s":"quest-for-the-frozen-flame-bestiary","lv":10,"ac":29,"hp":145,"pc":18,"sz":"medium","tp":"construct","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/weykoward.json","li":"OGL"},{"n":"Whalesteed","s":"lost-omens-bestiary","lv":0,"ac":15,"hp":16,"pc":7,"sz":"large","tp":"animal","f":"lost-omens-bestiary/travel-guide/whalesteed.json","li":"OGL"},{"n":"Wheel Archon","s":"blood-lords-bestiary","lv":16,"ac":41,"hp":230,"pc":28,"sz":"huge","tp":"celestial","f":"blood-lords-bestiary/book-3-field-of-maidens/wheel-archon.json","li":"OGL"},{"n":"Whimwyrm","s":"kingmaker-bestiary","lv":17,"ac":42,"hp":280,"pc":31,"sz":"medium","tp":"dragon","f":"kingmaker-bestiary/whimwyrm.json","li":"OGL"},{"n":"Whipping Willow","s":"rage-of-elements-bestiary","lv":4,"ac":20,"hp":75,"pc":11,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/whipping-willow.json","li":"OGL"},{"n":"Whisper Archdragon","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":370,"pc":33,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/whisper/whisper-archdragon.json","li":"ORC"},{"n":"Whisper Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":20,"ac":44,"hp":370,"pc":33,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/whisper/whisper-archdragon-spellcaster.json","li":"ORC"},{"n":"Whisper Dragon (Adult, Spellcaster)","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":190,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Whisper Dragon (Adult)","s":"pathfinder-monster-core-2","lv":11,"ac":31,"hp":190,"pc":21,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-adult.json","li":"ORC"},{"n":"Whisper Dragon (Ancient, Spellcaster)","s":"pathfinder-monster-core-2","lv":16,"ac":39,"hp":290,"pc":28,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Whisper Dragon (Ancient)","s":"pathfinder-monster-core-2","lv":16,"ac":39,"hp":290,"pc":28,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-ancient.json","li":"ORC"},{"n":"Whisper Dragon (Young, Spellcaster)","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-young-spellcaster.json","li":"ORC"},{"n":"Whisper Dragon (Young)","s":"pathfinder-monster-core-2","lv":7,"ac":25,"hp":110,"pc":15,"sz":"large","tp":"dragon","f":"pathfinder-monster-core-2/whisper-dragon-young.json","li":"ORC"},{"n":"Whispering Way Medusa","s":"blog-bestiary","lv":8,"ac":27,"hp":125,"pc":16,"sz":"medium","tp":"humanoid","f":"blog-bestiary/whispering-way-medusa.json","li":"OGL"},{"n":"Wight","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/wight.json","li":"ORC"},{"n":"Wight (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":18,"hp":40,"pc":10,"sz":"medium","tp":"undead","f":"menace-under-otari-bestiary/wight-bb.json","li":"ORC"},{"n":"Wight Battalion","s":"battlecry-bestiary","lv":9,"ac":27,"hp":150,"pc":18,"sz":"gargantuan","tp":"undead","f":"battlecry-bestiary/wight-battalion.json","li":"ORC"},{"n":"Wight Commander","s":"book-of-the-dead-bestiary","lv":12,"ac":32,"hp":220,"pc":22,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/wight-commander.json","li":"OGL"},{"n":"Wight Cultist","s":"extinction-curse-bestiary","lv":12,"ac":32,"hp":235,"pc":22,"sz":"medium","tp":"undead","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/wight-cultist.json","li":"OGL"},{"n":"Wight Spell Sniper","s":"triumph-of-the-tusk-bestiary","lv":7,"ac":25,"hp":115,"pc":18,"sz":"medium","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/wight-spell-sniper.json","li":"ORC"},{"n":"Wihsaak","s":"pathfinder-monster-core-2","lv":6,"ac":24,"hp":105,"pc":14,"sz":"medium","tp":"fiend","f":"pathfinder-monster-core-2/wihsaak.json","li":"ORC"},{"n":"Wild Hunt Archer","s":"kingmaker-bestiary","lv":16,"ac":39,"hp":340,"pc":30,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/wild-hunt-archer.json","li":"OGL"},{"n":"Wild Hunt Horse","s":"kingmaker-bestiary","lv":15,"ac":37,"hp":320,"pc":29,"sz":"large","tp":"fey","f":"kingmaker-bestiary/wild-hunt-horse.json","li":"OGL"},{"n":"Wild Hunt Hound","s":"kingmaker-bestiary","lv":14,"ac":36,"hp":300,"pc":29,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/wild-hunt-hound.json","li":"OGL"},{"n":"Wild Hunt Monarch","s":"kingmaker-bestiary","lv":20,"ac":46,"hp":450,"pc":35,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/wild-hunt-monarch.json","li":"OGL"},{"n":"Wild Hunt Scout","s":"kingmaker-bestiary","lv":18,"ac":42,"hp":380,"pc":30,"sz":"medium","tp":"fey","f":"kingmaker-bestiary/wild-hunt-scout.json","li":"OGL"},{"n":"Wildwood Sentry","s":"wardens-of-wildwood-bestiary","lv":9,"ac":28,"hp":155,"pc":20,"sz":"medium","tp":"humanoid","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/wildwood-sentry.json","li":"ORC"},{"n":"Will-o'-the-Deep","s":"abomination-vaults-bestiary","lv":6,"ac":27,"hp":50,"pc":16,"sz":"small","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/will-o-the-deep.json","li":"OGL"},{"n":"Will-o'-Wisp","s":"pathfinder-monster-core","lv":6,"ac":27,"hp":50,"pc":16,"sz":"small","tp":"aberration","f":"pathfinder-monster-core/will-o-wisp.json","li":"ORC"},{"n":"Willowshore Waldgeist","s":"season-of-ghosts-bestiary","lv":7,"ac":24,"hp":88,"pc":16,"sz":"large","tp":"spirit","f":"season-of-ghosts-bestiary/book-3-no-breath-to-cry/willowshore-waldgeist.json","li":"ORC"},{"n":"Windchaser","s":"kingmaker-bestiary","lv":8,"ac":27,"hp":138,"pc":16,"sz":"large","tp":"beast","f":"kingmaker-bestiary/windchaser.json","li":"OGL"},{"n":"Winged Chupacabra","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":45,"pc":9,"sz":"small","tp":"beast","f":"pathfinder-monster-core/winged-chupacabra.json","li":"ORC"},{"n":"Winged Owlbear","s":"kingmaker-bestiary","lv":18,"ac":41,"hp":380,"pc":32,"sz":"gargantuan","tp":"animal","f":"kingmaker-bestiary/winged-owlbear.json","li":"OGL"},{"n":"Wingripper Wyvern Rider","s":"triumph-of-the-tusk-bestiary","lv":9,"ac":28,"hp":130,"pc":16,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/wingripper-wyvern-rider.json","li":"ORC"},{"n":"Winter Hag","s":"pathfinder-monster-core-2","lv":7,"ac":24,"hp":145,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/winter-hag.json","li":"ORC"},{"n":"Wish Archdragon","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":475,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-archdragon.json","li":"ORC"},{"n":"Wish Archdragon (Spellcaster)","s":"lost-omens-bestiary","lv":22,"ac":48,"hp":475,"pc":38,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-archdragon-spellcaster.json","li":"ORC"},{"n":"Wish Dragon (Adult, Spellcaster)","s":"lost-omens-bestiary","lv":14,"ac":35,"hp":260,"pc":26,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-adult-spellcaster.json","li":"ORC"},{"n":"Wish Dragon (Adult)","s":"lost-omens-bestiary","lv":14,"ac":35,"hp":260,"pc":26,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-adult.json","li":"ORC"},{"n":"Wish Dragon (Ancient, Spellcaster)","s":"lost-omens-bestiary","lv":19,"ac":42,"hp":360,"pc":32,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-ancient-spellcaster.json","li":"ORC"},{"n":"Wish Dragon (Ancient)","s":"lost-omens-bestiary","lv":19,"ac":42,"hp":360,"pc":32,"sz":"huge","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-ancient.json","li":"ORC"},{"n":"Wish Dragon (Young, Spellcaster)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":180,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-young-spellcaster.json","li":"ORC"},{"n":"Wish Dragon (Young)","s":"lost-omens-bestiary","lv":10,"ac":29,"hp":180,"pc":18,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wish/wish-dragon-young.json","li":"ORC"},{"n":"Witchfire Warden","s":"abomination-vaults-bestiary","lv":9,"ac":28,"hp":125,"pc":18,"sz":"medium","tp":"spirit","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/witchfire-warden.json","li":"OGL"},{"n":"Witchwarg","s":"pathfinder-monster-core","lv":5,"ac":23,"hp":70,"pc":14,"sz":"large","tp":"beast","f":"pathfinder-monster-core/witchwarg.json","li":"ORC"},{"n":"Witchwyrd","s":"pathfinder-monster-core-2","lv":6,"ac":22,"hp":110,"pc":12,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core-2/witchwyrd.json","li":"ORC"},{"n":"Withered","s":"book-of-the-dead-bestiary","lv":5,"ac":22,"hp":80,"pc":11,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/withered.json","li":"OGL"},{"n":"Withered Flame Drake","s":"myth-speaker-bestiary","lv":5,"ac":22,"hp":75,"pc":12,"sz":"large","tp":"dragon","f":"myth-speaker-bestiary/book-2-death-sails-a-wine-dark-sea/withered-flame-drake.json","li":"ORC"},{"n":"Wolf","s":"pathfinder-monster-core","lv":1,"ac":15,"hp":24,"pc":7,"sz":"medium","tp":"animal","f":"pathfinder-monster-core/wolf.json","li":"ORC"},{"n":"Wolf (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":15,"hp":24,"pc":7,"sz":"medium","tp":"animal","f":"menace-under-otari-bestiary/wolf-bb.json","li":"ORC"},{"n":"Wolf Pack","s":"battlecry-bestiary","lv":6,"ac":23,"hp":90,"pc":17,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/wolf-pack.json","li":"ORC"},{"n":"Wolf Skeleton","s":"pathfinder-monster-core-2","lv":0,"ac":16,"hp":12,"pc":8,"sz":"medium","tp":"undead","f":"pathfinder-monster-core-2/wolf-skeleton.json","li":"ORC"},{"n":"Wolgur Wrabs","s":"seven-dooms-for-sandpoint-bestiary","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"undead","f":"seven-dooms-for-sandpoint-bestiary/wolgur-wrabs.json","li":"OGL"},{"n":"Wood Scamp","s":"rage-of-elements-bestiary","lv":1,"ac":14,"hp":24,"pc":3,"sz":"small","tp":"elemental","f":"rage-of-elements-bestiary/wood-scamp.json","li":"OGL"},{"n":"Wood Wisp","s":"rage-of-elements-bestiary","lv":0,"ac":16,"hp":20,"pc":6,"sz":"tiny","tp":"elemental","f":"rage-of-elements-bestiary/wood-wisp.json","li":"OGL"},{"n":"Woodland Scouts","s":"pathfinder-npc-core","lv":8,"ac":27,"hp":120,"pc":18,"sz":"gargantuan","tp":"humanoid","f":"pathfinder-npc-core/ancestry-npcs/elf/woodland-scouts.json","li":"ORC"},{"n":"Woodweave Caterpillar","s":"wardens-of-wildwood-bestiary","lv":12,"ac":33,"hp":255,"pc":22,"sz":"large","tp":"animal","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/woodweave-caterpillar.json","li":"ORC"},{"n":"Woolly Rhinoceros","s":"pathfinder-monster-core","lv":6,"ac":25,"hp":100,"pc":11,"sz":"large","tp":"animal","f":"pathfinder-monster-core/woolly-rhinoceros.json","li":"ORC"},{"n":"Woolly Wrangler","s":"pathfinder-npc-core","lv":8,"ac":26,"hp":125,"pc":16,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/explorer/woolly-wrangler.json","li":"ORC"},{"n":"Wordsmith","s":"blog-bestiary","lv":4,"ac":19,"hp":70,"pc":10,"sz":"medium","tp":"humanoid","f":"blog-bestiary/wordsmith.json","li":"ORC"},{"n":"Worknesh","s":"strength-of-thousands-bestiary","lv":16,"ac":37,"hp":310,"pc":28,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-4-secrets-of-the-temple-city/worknesh.json","li":"OGL"},{"n":"World Ender","s":"pathfinder-npc-core","lv":16,"ac":36,"hp":275,"pc":25,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/villain/world-ender.json","li":"ORC"},{"n":"Worm Prophet","s":"night-of-the-gray-death-bestiary","lv":18,"ac":42,"hp":335,"pc":28,"sz":"medium","tp":"humanoid","f":"night-of-the-gray-death-bestiary/worm-prophet.json","li":"OGL"},{"n":"Worm Prophet","s":"pathfinder-monster-core-2","lv":12,"ac":32,"hp":160,"pc":23,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core-2/worm-prophet.json","li":"ORC"},{"n":"Wraith","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":80,"pc":14,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/wraith.json","li":"ORC"},{"n":"Wraithvine","s":"wardens-of-wildwood-bestiary","lv":7,"ac":25,"hp":120,"pc":15,"sz":"huge","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/wraithvine.json","li":"ORC"},{"n":"Wraithvine Offshoot","s":"wardens-of-wildwood-bestiary","lv":4,"ac":21,"hp":60,"pc":11,"sz":"small","tp":"plant","f":"wardens-of-wildwood-bestiary/book-1-packbreaker/wraithvine-offshoot.json","li":"ORC"},{"n":"Wrath Riot","s":"stolen-fate-bestiary","lv":16,"ac":39,"hp":300,"pc":28,"sz":"gargantuan","tp":"fiend","f":"stolen-fate-bestiary/book-2-the-destiny-war/wrath-riot.json","li":"OGL"},{"n":"Wrathspawn","s":"pathfinder-monster-core","lv":2,"ac":16,"hp":30,"pc":10,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/wrathspawn.json","li":"ORC"},{"n":"Wrent Dicaspiron","s":"agents-of-edgewatch-bestiary","lv":10,"ac":30,"hp":180,"pc":22,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-2-sixty-feet-under/wrent-dicaspiron.json","li":"OGL"},{"n":"Wrin Sivinxi","s":"abomination-vaults-bestiary","lv":5,"ac":20,"hp":75,"pc":12,"sz":"medium","tp":"humanoid","f":"abomination-vaults-bestiary/book-1-ruins-of-gauntlight/wrin-sivinxi.json","li":"OGL"},{"n":"Wynsal Starborn","s":"agents-of-edgewatch-bestiary","lv":17,"ac":38,"hp":340,"pc":32,"sz":"medium","tp":"humanoid","f":"agents-of-edgewatch-bestiary/book-4-assault-on-hunting-lodge-seven/wynsal-starborn.json","li":"OGL"},{"n":"Wyrmwraith","s":"lost-omens-bestiary","lv":17,"ac":39,"hp":280,"pc":29,"sz":"gargantuan","tp":"dragon","f":"lost-omens-bestiary/draconic-codex/wyrmwraith/wyrmwraith.json","li":"ORC"},{"n":"Wyrwood Sneak","s":"pathfinder-monster-core-2","lv":1,"ac":16,"hp":15,"pc":6,"sz":"small","tp":"construct","f":"pathfinder-monster-core-2/wyrwood-sneak.json","li":"ORC"},{"n":"Wyvern","s":"pathfinder-monster-core","lv":6,"ac":24,"hp":95,"pc":13,"sz":"large","tp":"dragon","f":"pathfinder-monster-core/wyvern.json","li":"ORC"},{"n":"Xae","s":"kingmaker-bestiary","lv":11,"ac":28,"hp":150,"pc":19,"sz":"small","tp":"spirit","f":"kingmaker-bestiary/xae.json","li":"OGL"},{"n":"Xarbaene","s":"shades-of-blood-bestiary","lv":6,"ac":24,"hp":65,"pc":17,"sz":"medium","tp":"undead","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/xarbaene.json","li":"ORC"},{"n":"Xarwin's Manifestation","s":"malevolence-bestiary","lv":7,"ac":24,"hp":90,"pc":14,"sz":"medium","tp":"undead","f":"malevolence-bestiary/xarwins-manifestation.json","li":"OGL"},{"n":"Xenia Spirit","s":"myth-speaker-bestiary","lv":4,"ac":20,"hp":32,"pc":8,"sz":"medium","tp":"spirit","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/xenia-spirit.json","li":"ORC"},{"n":"Xevalorg","s":"age-of-ashes-bestiary","lv":13,"ac":34,"hp":235,"pc":19,"sz":"large","tp":"aberration","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/xevalorg.json","li":"OGL"},{"n":"Xilvirek","s":"extinction-curse-bestiary","lv":12,"ac":34,"hp":215,"pc":23,"sz":"large","tp":"fiend","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/xilvirek.json","li":"OGL"},{"n":"Ximtal","s":"pathfinder-monster-core-2","lv":17,"ac":39,"hp":380,"pc":30,"sz":"large","tp":"fiend","f":"pathfinder-monster-core-2/ximtal.json","li":"ORC"},{"n":"Xin Yue","s":"season-of-ghosts-bestiary","lv":7,"ac":25,"hp":90,"pc":15,"sz":"medium","tp":"undead","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/xin-yue.json","li":"ORC"},{"n":"Xiuh Coatl","s":"pathfinder-monster-core-2","lv":12,"ac":33,"hp":220,"pc":23,"sz":"large","tp":"beast","f":"pathfinder-monster-core-2/xiuh-coatl.json","li":"ORC"},{"n":"Xiuli Cachu","s":"stolen-fate-bestiary","lv":13,"ac":34,"hp":235,"pc":25,"sz":"medium","tp":"humanoid","f":"stolen-fate-bestiary/book-2-the-destiny-war/xiuli-cachu.json","li":"OGL"},{"n":"Xoarian","s":"pathfinder-monster-core","lv":8,"ac":26,"hp":130,"pc":16,"sz":"small","tp":"aberration","f":"pathfinder-monster-core/xoarian.json","li":"ORC"},{"n":"Xotani, The Firebleeder","s":"age-of-ashes-bestiary","lv":20,"ac":48,"hp":385,"pc":39,"sz":"gargantuan","tp":"beast","f":"age-of-ashes-bestiary/book-6-broken-promises/xotani-the-firebleeder.json","li":"OGL"},{"n":"Xotanispawn","s":"age-of-ashes-bestiary","lv":17,"ac":40,"hp":340,"pc":29,"sz":"large","tp":"animal","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/xotanispawn.json","li":"OGL"},{"n":"Xulgath Army","s":"battlecry-bestiary","lv":6,"ac":23,"hp":99,"pc":14,"sz":"gargantuan","tp":"humanoid","f":"battlecry-bestiary/xulgath-army.json","li":"ORC"},{"n":"Xulgath Bilebearer","s":"extinction-curse-bestiary","lv":2,"ac":18,"hp":30,"pc":6,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-1-the-show-must-go-on/xulgath-bilebearer.json","li":"OGL"},{"n":"Xulgath Bomber","s":"extinction-curse-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/xulgath-bomber.json","li":"OGL"},{"n":"Xulgath Deepmouth","s":"extinction-curse-bestiary","lv":12,"ac":33,"hp":215,"pc":26,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/xulgath-deepmouth.json","li":"OGL"},{"n":"Xulgath Demon-Caller","s":"extinction-curse-bestiary","lv":5,"ac":22,"hp":80,"pc":11,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/xulgath-demon-caller.json","li":"OGL"},{"n":"Xulgath Dinosaur Cavalry","s":"battlecry-bestiary","lv":13,"ac":33,"hp":240,"pc":23,"sz":"gargantuan","tp":"animal","f":"battlecry-bestiary/xulgath-dinosaur-cavalry.json","li":"ORC"},{"n":"Xulgath Gutrager","s":"extinction-curse-bestiary","lv":10,"ac":28,"hp":190,"pc":19,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/xulgath-gutrager.json","li":"OGL"},{"n":"Xulgath Hardscale","s":"extinction-curse-bestiary","lv":12,"ac":32,"hp":215,"pc":21,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/xulgath-hardscale.json","li":"OGL"},{"n":"Xulgath Herd-Tender","s":"extinction-curse-bestiary","lv":8,"ac":27,"hp":135,"pc":17,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/xulgath-herd-tender.json","li":"OGL"},{"n":"Xulgath Leader","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":44,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/xulgath-leader.json","li":"ORC"},{"n":"Xulgath Leader (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":18,"hp":44,"pc":9,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/xulgath-leader-bb.json","li":"ORC"},{"n":"Xulgath Mage","s":"extinction-curse-bestiary","lv":7,"ac":23,"hp":115,"pc":12,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/xulgath-mage.json","li":"OGL"},{"n":"Xulgath Ravening","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":72,"pc":11,"sz":"gargantuan","tp":"humanoid","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/xulgath-ravening.json","li":"OGL"},{"n":"Xulgath Roughrider","s":"extinction-curse-bestiary","lv":11,"ac":31,"hp":195,"pc":21,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/xulgath-roughrider.json","li":"OGL"},{"n":"Xulgath Skirmisher","s":"extinction-curse-bestiary","lv":6,"ac":24,"hp":95,"pc":15,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/xulgath-skirmisher.json","li":"OGL"},{"n":"Xulgath Skulker","s":"pathfinder-monster-core","lv":2,"ac":17,"hp":28,"pc":7,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/xulgath-skulker.json","li":"ORC"},{"n":"Xulgath Spinesnapper","s":"extinction-curse-bestiary","lv":5,"ac":21,"hp":95,"pc":11,"sz":"large","tp":"humanoid","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/xulgath-spinesnapper.json","li":"OGL"},{"n":"Xulgath Stoneliege","s":"extinction-curse-bestiary","lv":8,"ac":26,"hp":135,"pc":14,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/xulgath-stoneliege.json","li":"OGL"},{"n":"Xulgath Thoughtmaw","s":"extinction-curse-bestiary","lv":15,"ac":36,"hp":280,"pc":30,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-6-the-apocalypse-prophet/xulgath-thoughtmaw.json","li":"OGL"},{"n":"Xulgath Warrior","s":"pathfinder-monster-core","lv":1,"ac":14,"hp":21,"pc":6,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/xulgath-warrior.json","li":"ORC"},{"n":"Xulgath Warrior (BB)","s":"menace-under-otari-bestiary","lv":1,"ac":14,"hp":21,"pc":6,"sz":"medium","tp":"humanoid","f":"menace-under-otari-bestiary/xulgath-warrior-bb.json","li":"ORC"},{"n":"Yabin (White Serpent Form)","s":"fists-of-the-ruby-phoenix-bestiary","lv":18,"ac":39,"hp":256,"pc":28,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/yabin-white-serpent-form.json","li":"OGL"},{"n":"Yabin the Just (Level 13)","s":"fists-of-the-ruby-phoenix-bestiary","lv":13,"ac":33,"hp":175,"pc":23,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/yabin-the-just-level-13.json","li":"OGL"},{"n":"Yabin the Just (Level 9)","s":"fists-of-the-ruby-phoenix-bestiary","lv":9,"ac":27,"hp":130,"pc":18,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-1-despair-on-danger-island/yabin-the-just-level-9.json","li":"OGL"},{"n":"Yaganty","s":"extinction-curse-bestiary","lv":10,"ac":29,"hp":200,"pc":20,"sz":"large","tp":"fey","f":"extinction-curse-bestiary/book-3-lifes-long-shadows/yaganty.json","li":"OGL"},{"n":"Yagrekash","s":"triumph-of-the-tusk-bestiary","lv":10,"ac":26,"hp":175,"pc":17,"sz":"medium","tp":"monitor","f":"triumph-of-the-tusk-bestiary/book-3-destroyers-doom/yagrekash.json","li":"ORC"},{"n":"Yaiafineti","s":"gatewalkers-bestiary","lv":8,"ac":24,"hp":170,"pc":16,"sz":"large","tp":"plant","f":"gatewalkers-bestiary/book-3-dreamers-of-the-nameless-spires/yaiafineti.json","li":"ORC"},{"n":"Yamah","s":"pathfinder-monster-core-2","lv":5,"ac":21,"hp":75,"pc":12,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/yamah.json","li":"ORC"},{"n":"Yamaraj","s":"pathfinder-monster-core","lv":20,"ac":45,"hp":375,"pc":37,"sz":"huge","tp":"monitor","f":"pathfinder-monster-core/yamaraj.json","li":"ORC"},{"n":"Yana No-trail","s":"quest-for-the-frozen-flame-bestiary","lv":7,"ac":25,"hp":110,"pc":13,"sz":"medium","tp":"humanoid","f":"quest-for-the-frozen-flame-bestiary/book-3-burning-tundra/yana-no-trail.json","li":"OGL"},{"n":"Yarrika Mulandez","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":37,"hp":250,"pc":27,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-2-ready-fight/yarrika-mulandez.json","li":"OGL"},{"n":"Yasmenei","s":"myth-speaker-bestiary","lv":5,"ac":21,"hp":62,"pc":12,"sz":"medium","tp":"humanoid","f":"myth-speaker-bestiary/book-1-the-acropolis-pyre/yasmenei.json","li":"ORC"},{"n":"Yeast Ooze","s":"outlaws-of-alkenstar-bestiary","lv":2,"ac":12,"hp":60,"pc":6,"sz":"large","tp":"ooze","f":"outlaws-of-alkenstar-bestiary/book-1-punks-in-a-powder-keg/yeast-ooze.json","li":"OGL"},{"n":"Yeongno","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":120,"pc":17,"sz":"large","tp":"celestial","f":"lost-omens-bestiary/tian-xia-world-guide/yeongno.json","li":"ORC"},{"n":"Yeti","s":"pathfinder-monster-core","lv":5,"ac":21,"hp":115,"pc":15,"sz":"large","tp":"humanoid","f":"pathfinder-monster-core/yeti.json","li":"ORC"},{"n":"Ygrik","s":"crown-of-the-kobold-king-bestiary","lv":2,"ac":17,"hp":30,"pc":7,"sz":"small","tp":"humanoid","f":"crown-of-the-kobold-king-bestiary/ygrik.json","li":"OGL"},{"n":"Yianyin","s":"malevolence-bestiary","lv":7,"ac":25,"hp":115,"pc":16,"sz":"medium","tp":"monitor","f":"malevolence-bestiary/yianyin.json","li":"OGL"},{"n":"Yniesse Zenderholm","s":"shadows-at-sundown-bestiary","lv":7,"ac":25,"hp":120,"pc":16,"sz":"medium","tp":"humanoid","f":"shadows-at-sundown-bestiary/yniesse-zenderholm.json","li":"OGL"},{"n":"Yobnobby","s":"shades-of-blood-bestiary","lv":3,"ac":19,"hp":44,"pc":8,"sz":"tiny","tp":"fey","f":"shades-of-blood-bestiary/book-2-the-broken-palace/yobnobby.json","li":"ORC"},{"n":"Yoh Souran","s":"fists-of-the-ruby-phoenix-bestiary","lv":15,"ac":38,"hp":265,"pc":25,"sz":"medium","tp":"humanoid","f":"fists-of-the-ruby-phoenix-bestiary/book-3-king-of-the-mountain/yoh-souran.json","li":"OGL"},{"n":"Yonsuu","s":"strength-of-thousands-bestiary","lv":11,"ac":31,"hp":200,"pc":21,"sz":"medium","tp":"humanoid","f":"strength-of-thousands-bestiary/book-3-hurricanes-howl/yonsuu.json","li":"OGL"},{"n":"Yorulu","s":"strength-of-thousands-bestiary","lv":4,"ac":21,"hp":60,"pc":10,"sz":"small","tp":"humanoid","f":"strength-of-thousands-bestiary/book-2-spoken-on-the-song-wind/yorulu.json","li":"OGL"},{"n":"Young Linnorm","s":"lost-omens-bestiary","lv":7,"ac":25,"hp":115,"pc":15,"sz":"large","tp":"dragon","f":"lost-omens-bestiary/monsters-of-myth/young-linnorm.json","li":"OGL"},{"n":"Young Monitor Lizard","s":"standalone-adventures","lv":1,"ac":15,"hp":24,"pc":6,"sz":"medium","tp":"animal","f":"standalone-adventures/adventure-1-mystery-at-the-old-mill/young-monitor-lizard.json","li":"ORC"},{"n":"Yshula","s":"blood-lords-bestiary","lv":8,"ac":26,"hp":125,"pc":17,"sz":"medium","tp":"fiend","f":"blood-lords-bestiary/book-3-field-of-maidens/yshula.json","li":"OGL"},{"n":"Ysondkhelir","s":"abomination-vaults-bestiary","lv":8,"ac":27,"hp":100,"pc":17,"sz":"medium","tp":"aberration","f":"abomination-vaults-bestiary/book-2-hands-of-the-devil/ysondkhelir.json","li":"OGL"},{"n":"Yulthruk","s":"blood-lords-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-3-field-of-maidens/yulthruk.json","li":"OGL"},{"n":"Yuni","s":"season-of-ghosts-bestiary","lv":7,"ac":23,"hp":82,"pc":15,"sz":"medium","tp":"spirit","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/yuni.json","li":"ORC"},{"n":"Yurgak","s":"blood-lords-bestiary","lv":14,"ac":36,"hp":240,"pc":29,"sz":"medium","tp":"undead","f":"blood-lords-bestiary/book-4-the-ghouls-hunger/yurgak.json","li":"OGL"},{"n":"Zaiho","s":"prey-for-death-bestiary","lv":16,"ac":39,"hp":265,"pc":24,"sz":"medium","tp":"humanoid","f":"prey-for-death-bestiary/zaiho.json","li":"ORC"},{"n":"Zaiox","s":"rusthenge-bestiary","lv":4,"ac":21,"hp":50,"pc":7,"sz":"small","tp":"humanoid","f":"rusthenge-bestiary/zaiox.json","li":"OGL"},{"n":"Zalavexus","s":"seven-dooms-for-sandpoint-bestiary","lv":10,"ac":30,"hp":148,"pc":19,"sz":"medium","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/zalavexus.json","li":"OGL"},{"n":"Zashathal Head-Taker","s":"extinction-curse-bestiary","lv":15,"ac":36,"hp":250,"pc":27,"sz":"medium","tp":"humanoid","f":"extinction-curse-bestiary/book-4-siege-of-the-dinosaurs/zashathal-head-taker.json","li":"OGL"},{"n":"Zashuvin","s":"stolen-fate-bestiary","lv":11,"ac":32,"hp":170,"pc":21,"sz":"large","tp":"fiend","f":"stolen-fate-bestiary/book-1-the-choosing/zashuvin.json","li":"OGL"},{"n":"Zasir","s":"wardens-of-wildwood-bestiary","lv":8,"ac":25,"hp":175,"pc":17,"sz":"huge","tp":"animal","f":"wardens-of-wildwood-bestiary/book-2-severed-at-the-root/zasir.json","li":"ORC"},{"n":"Zauglagaul","s":"spore-war-bestiary","lv":19,"ac":44,"hp":355,"pc":33,"sz":"gargantuan","tp":"dragon","f":"spore-war-bestiary/book-2-the-secret-of-deathstalk-tower/zauglagaul.json","li":"ORC"},{"n":"Zdagren Half-Ear","s":"triumph-of-the-tusk-bestiary","lv":8,"ac":26,"hp":110,"pc":16,"sz":"medium","tp":"humanoid","f":"triumph-of-the-tusk-bestiary/book-2-hoof-cinder-and-storm/zdagren-half-ear.json","li":"ORC"},{"n":"Zeal-damned Ghoul","s":"agents-of-edgewatch-bestiary","lv":10,"ac":29,"hp":175,"pc":21,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/zeal-damned-ghoul.json","li":"OGL"},{"n":"Zealborn","s":"agents-of-edgewatch-bestiary","lv":12,"ac":33,"hp":210,"pc":23,"sz":"medium","tp":"undead","f":"agents-of-edgewatch-bestiary/book-5-belly-of-the-black-whale/zealborn.json","li":"OGL"},{"n":"Zealot of Asmodeus","s":"pathfinder-npc-core","lv":4,"ac":22,"hp":60,"pc":9,"sz":"medium","tp":"humanoid","f":"pathfinder-npc-core/devotee/zealot-of-asmodeus.json","li":"ORC"},{"n":"Zebub","s":"pathfinder-monster-core-2","lv":3,"ac":18,"hp":30,"pc":12,"sz":"small","tp":"fiend","f":"pathfinder-monster-core-2/zebub.json","li":"ORC"},{"n":"Zecui","s":"pathfinder-monster-core","lv":6,"ac":23,"hp":110,"pc":14,"sz":"medium","tp":"aberration","f":"pathfinder-monster-core/zecui.json","li":"ORC"},{"n":"Zecui Horde","s":"battlecry-bestiary","lv":11,"ac":30,"hp":195,"pc":21,"sz":"gargantuan","tp":"aberration","f":"battlecry-bestiary/zecui-horde.json","li":"ORC"},{"n":"Zellara Esmeranda","s":"stolen-fate-bestiary","lv":14,"ac":36,"hp":195,"pc":27,"sz":"medium","tp":"spirit","f":"stolen-fate-bestiary/book-3-worst-of-all-possible-worlds/zellara-esmeranda.json","li":"OGL"},{"n":"Zephyr Guard","s":"age-of-ashes-bestiary","lv":14,"ac":36,"hp":255,"pc":24,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-5-against-the-scarlet-triad/zephyr-guard.json","li":"OGL"},{"n":"Zephyr Hawk","s":"pathfinder-monster-core","lv":3,"ac":18,"hp":36,"pc":7,"sz":"small","tp":"elemental","f":"pathfinder-monster-core/zephyr-hawk.json","li":"ORC"},{"n":"Zephyr Hawk (BB)","s":"menace-under-otari-bestiary","lv":3,"ac":18,"hp":36,"pc":7,"sz":"small","tp":"elemental","f":"menace-under-otari-bestiary/zephyr-hawk-bb.json","li":"ORC"},{"n":"Zephyr, The West Wind","s":"rage-of-elements-bestiary","lv":18,"ac":43,"hp":310,"pc":33,"sz":"medium","tp":"elemental","f":"rage-of-elements-bestiary/zephyr-the-west-wind.json","li":"OGL"},{"n":"Zer","s":"shades-of-blood-bestiary","lv":6,"ac":23,"hp":95,"pc":12,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/zer.json","li":"ORC"},{"n":"Zhang Yong","s":"blog-bestiary","lv":14,"ac":37,"hp":251,"pc":23,"sz":"medium","tp":"humanoid","f":"blog-bestiary/zhang-yong.json","li":"OGL"},{"n":"Zhi Hui","s":"season-of-ghosts-bestiary","lv":7,"ac":23,"hp":85,"pc":18,"sz":"medium","tp":"spirit","f":"season-of-ghosts-bestiary/book-2-let-the-leaves-fall/zhi-hui.json","li":"ORC"},{"n":"Zhuraita","s":"pathfinder-monster-core-2","lv":15,"ac":37,"hp":280,"pc":28,"sz":"medium","tp":"celestial","f":"pathfinder-monster-core-2/zhuraita.json","li":"ORC"},{"n":"Ziberae","s":"spore-war-bestiary","lv":20,"ac":45,"hp":465,"pc":34,"sz":"large","tp":"fiend","f":"spore-war-bestiary/book-3-a-voice-in-the-blight/ziberae.json","li":"ORC"},{"n":"Zibik","s":"wardens-of-wildwood-bestiary","lv":24,"ac":51,"hp":525,"pc":42,"sz":"medium","tp":"fungus","f":"wardens-of-wildwood-bestiary/book-3-shepherd-of-decay/zibik.json","li":"ORC"},{"n":"Zikritrax","s":"one-shot-bestiary","lv":13,"ac":33,"hp":220,"pc":23,"sz":"huge","tp":"dragon","f":"one-shot-bestiary/the-scourge-of-sheerleaf/zikritrax.json","li":"ORC"},{"n":"Zimiezek","s":"curtain-call-bestiary","lv":18,"ac":41,"hp":335,"pc":33,"sz":"large","tp":"aberration","f":"curtain-call-bestiary/book-3-bring-the-house-down/zimiezek.json","li":"ORC"},{"n":"Zinba","s":"lost-omens-bestiary","lv":10,"ac":28,"hp":220,"pc":20,"sz":"large","tp":"beast","f":"lost-omens-bestiary/mwangi-expanse/zinba.json","li":"OGL"},{"n":"Zinogyvaz","s":"extinction-curse-bestiary","lv":16,"ac":39,"hp":240,"pc":28,"sz":"large","tp":"undead","f":"extinction-curse-bestiary/book-5-lord-of-the-black-sands/zinogyvaz.json","li":"OGL"},{"n":"Zintaya Calbieste","s":"night-of-the-gray-death-bestiary","lv":14,"ac":36,"hp":255,"pc":26,"sz":"medium","tp":"aberration","f":"night-of-the-gray-death-bestiary/zintaya-calbieste.json","li":"OGL"},{"n":"Ziondriel","s":"seven-dooms-for-sandpoint-bestiary","lv":9,"ac":28,"hp":154,"pc":19,"sz":"large","tp":"aberration","f":"seven-dooms-for-sandpoint-bestiary/ziondriel.json","li":"OGL"},{"n":"Ziradini","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":27,"hp":137,"pc":18,"sz":"small","tp":"humanoid","f":"seven-dooms-for-sandpoint-bestiary/ziradini.json","li":"OGL"},{"n":"Zivzeb","s":"sky-kings-tomb-bestiary","lv":4,"ac":20,"hp":75,"pc":9,"sz":"medium","tp":"aberration","f":"sky-kings-tomb-bestiary/book-1-mantle-of-gold/zivzeb.json","li":"OGL"},{"n":"Zoaem","s":"pathfinder-monster-core","lv":1,"ac":16,"hp":20,"pc":6,"sz":"small","tp":"celestial","f":"pathfinder-monster-core/zoaem.json","li":"ORC"},{"n":"Zombie Bear","s":"claws-of-the-tyrant-bestiary","lv":3,"ac":17,"hp":75,"pc":8,"sz":"large","tp":"undead","f":"claws-of-the-tyrant-bestiary/1-gravelands-survivors/zombie-bear.json","li":"ORC"},{"n":"Zombie Brown Bear","s":"triumph-of-the-tusk-bestiary","lv":3,"ac":18,"hp":92,"pc":12,"sz":"large","tp":"undead","f":"triumph-of-the-tusk-bestiary/book-1-the-resurrection-flood/zombie-brown-bear.json","li":"ORC"},{"n":"Zombie Brute","s":"pathfinder-monster-core","lv":2,"ac":15,"hp":70,"pc":4,"sz":"large","tp":"undead","f":"pathfinder-monster-core/zombie-brute.json","li":"ORC"},{"n":"Zombie Chuul","s":"blood-lords-bestiary","lv":7,"ac":22,"hp":200,"pc":11,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-2-graveclaw/zombie-chuul.json","li":"OGL"},{"n":"Zombie Desecrator","s":"claws-of-the-tyrant-bestiary","lv":17,"ac":40,"hp":395,"pc":23,"sz":"medium","tp":"undead","f":"claws-of-the-tyrant-bestiary/3-of-blood-and-faith/zombie-desecrator.json","li":"ORC"},{"n":"Zombie Dragon","s":"pathfinder-monster-core-2","lv":9,"ac":27,"hp":210,"pc":16,"sz":"huge","tp":"dragon","f":"pathfinder-monster-core-2/zombie-dragon.json","li":"ORC"},{"n":"Zombie Giant Bat","s":"hellbreakers-bestiary","lv":2,"ac":15,"hp":70,"pc":5,"sz":"large","tp":"undead","f":"hellbreakers-bestiary/zombie-giant-bat.json","li":"ORC"},{"n":"Zombie Horse","s":"blood-lords-bestiary","lv":1,"ac":13,"hp":50,"pc":3,"sz":"large","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/zombie-horse.json","li":"OGL"},{"n":"Zombie Hound","s":"blood-lords-bestiary","lv":-1,"ac":13,"hp":18,"pc":1,"sz":"small","tp":"undead","f":"blood-lords-bestiary/book-1-zombie-feast/zombie-hound.json","li":"OGL"},{"n":"Zombie Hulk","s":"pathfinder-monster-core","lv":6,"ac":21,"hp":160,"pc":8,"sz":"huge","tp":"undead","f":"pathfinder-monster-core/zombie-hulk.json","li":"ORC"},{"n":"Zombie Lord","s":"book-of-the-dead-bestiary","lv":4,"ac":20,"hp":80,"pc":13,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/zombie-lord.json","li":"OGL"},{"n":"Zombie Mammoth","s":"book-of-the-dead-bestiary","lv":11,"ac":27,"hp":290,"pc":17,"sz":"huge","tp":"undead","f":"book-of-the-dead-bestiary/zombie-mammoth.json","li":"OGL"},{"n":"Zombie Mammoth","s":"quest-for-the-frozen-flame-bestiary","lv":8,"ac":18,"hp":200,"pc":13,"sz":"huge","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/zombie-mammoth.json","li":"OGL"},{"n":"Zombie Megaloceros","s":"quest-for-the-frozen-flame-bestiary","lv":4,"ac":21,"hp":100,"pc":10,"sz":"large","tp":"undead","f":"quest-for-the-frozen-flame-bestiary/book-2-lost-mammoth-valley/zombie-megaloceros.json","li":"OGL"},{"n":"Zombie Owlbear","s":"book-of-the-dead-bestiary","lv":3,"ac":16,"hp":85,"pc":8,"sz":"large","tp":"undead","f":"book-of-the-dead-bestiary/zombie-owlbear.json","li":"OGL"},{"n":"Zombie Rival Necromancer","s":"blood-lords-bestiary","lv":16,"ac":36,"hp":315,"pc":28,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-6-ghost-kings-rage/zombie-rival-necromancer.json","li":"OGL"},{"n":"Zombie Shambler","s":"pathfinder-monster-core","lv":-1,"ac":12,"hp":20,"pc":0,"sz":"medium","tp":"undead","f":"pathfinder-monster-core/zombie-shambler.json","li":"ORC"},{"n":"Zombie Shambler (BB)","s":"menace-under-otari-bestiary","lv":-1,"ac":12,"hp":20,"pc":0,"sz":"medium","tp":"undead","f":"menace-under-otari-bestiary/zombie-shambler-bb.json","li":"ORC"},{"n":"Zombie Snake","s":"book-of-the-dead-bestiary","lv":0,"ac":13,"hp":35,"pc":2,"sz":"medium","tp":"undead","f":"book-of-the-dead-bestiary/zombie-snake.json","li":"OGL"},{"n":"Zoog","s":"seven-dooms-for-sandpoint-bestiary","lv":1,"ac":16,"hp":20,"pc":7,"sz":"tiny","tp":"beast","f":"seven-dooms-for-sandpoint-bestiary/zoog.json","li":"OGL"},{"n":"Zoog Swarm","s":"seven-dooms-for-sandpoint-bestiary","lv":8,"ac":24,"hp":100,"pc":16,"sz":"large","tp":"beast","f":"seven-dooms-for-sandpoint-bestiary/zoog-swarm.json","li":"OGL"},{"n":"Zorek","s":"kingmaker-bestiary","lv":12,"ac":32,"hp":220,"pc":25,"sz":"medium","tp":"humanoid","f":"kingmaker-bestiary/zorek.json","li":"OGL"},{"n":"Zoudou the Zealous","s":"season-of-ghosts-bestiary","lv":3,"ac":19,"hp":45,"pc":8,"sz":"medium","tp":"aberration","f":"season-of-ghosts-bestiary/book-1-the-summer-that-never-was/zoudou-the-zealous.json","li":"ORC"},{"n":"Zovi","s":"shades-of-blood-bestiary","lv":7,"ac":24,"hp":115,"pc":10,"sz":"small","tp":"humanoid","f":"shades-of-blood-bestiary/book-3-to-blot-out-the-sun/zovi.json","li":"ORC"},{"n":"Zridi","s":"the-enmity-cycle-bestiary","lv":8,"ac":26,"hp":125,"pc":16,"sz":"medium","tp":"fiend","f":"the-enmity-cycle-bestiary/zridi.json","li":"OGL"},{"n":"Zrukbat","s":"agents-of-edgewatch-bestiary","lv":2,"ac":18,"hp":30,"pc":7,"sz":"small","tp":"fey","f":"agents-of-edgewatch-bestiary/book-1-devil-at-the-dreaming-palace/zrukbat.json","li":"OGL"},{"n":"Zuferian","s":"age-of-ashes-bestiary","lv":15,"ac":36,"hp":265,"pc":26,"sz":"medium","tp":"humanoid","f":"age-of-ashes-bestiary/book-4-fires-of-the-haunted-city/zuferian.json","li":"OGL"},{"n":"Zuhra","s":"rage-of-elements-bestiary","lv":8,"ac":26,"hp":125,"pc":15,"sz":"large","tp":"elemental","f":"rage-of-elements-bestiary/zuhra.json","li":"OGL"},{"n":"Zuhra Shuyookh","s":"rage-of-elements-bestiary","lv":13,"ac":34,"hp":212,"pc":23,"sz":"huge","tp":"elemental","f":"rage-of-elements-bestiary/zuhra-shuyookh.json","li":"OGL"},{"n":"Zuipnyrn","s":"extinction-curse-bestiary","lv":3,"ac":20,"hp":35,"pc":9,"sz":"small","tp":"aberration","f":"extinction-curse-bestiary/book-2-legacy-of-the-lost-god/zuipnyrn.json","li":"OGL"},{"n":"Zuishin","s":"pathfinder-monster-core-2","lv":10,"ac":30,"hp":180,"pc":21,"sz":"medium","tp":"spirit","f":"pathfinder-monster-core-2/zuishin.json","li":"ORC"},{"n":"Zungur","s":"standalone-adventures","lv":3,"ac":18,"hp":40,"pc":11,"sz":"medium","tp":"humanoid","f":"standalone-adventures/adventure-3-a-dirge-for-dunmire/zungur.json","li":"ORC"},{"n":"Zuntishan Guard","s":"blood-lords-bestiary","lv":6,"ac":22,"hp":120,"pc":15,"sz":"medium","tp":"humanoid","f":"blood-lords-bestiary/book-3-field-of-maidens/zuntishan-guard.json","li":"OGL"},{"n":"Zyss Serpentfolk","s":"pathfinder-monster-core","lv":2,"ac":18,"hp":25,"pc":8,"sz":"medium","tp":"humanoid","f":"pathfinder-monster-core/zyss-serpentfolk.json","li":"ORC"}]} \ No newline at end of file diff --git a/packages/domain/src/creature-types.ts b/packages/domain/src/creature-types.ts index 90485ab..199f48c 100644 --- a/packages/domain/src/creature-types.ts +++ b/packages/domain/src/creature-types.ts @@ -134,7 +134,9 @@ export interface Pf2eCreature { readonly saveFort: number; readonly saveRef: number; readonly saveWill: number; + readonly saveConditional?: string; readonly hp: number; + readonly hpDetails?: string; readonly immunities?: string; readonly resistances?: string; readonly weaknesses?: string; diff --git a/scripts/generate-pf2e-bestiary-index.mjs b/scripts/generate-pf2e-bestiary-index.mjs index 03a08eb..3167d6a 100644 --- a/scripts/generate-pf2e-bestiary-index.mjs +++ b/scripts/generate-pf2e-bestiary-index.mjs @@ -1,123 +1,103 @@ import { readdirSync, readFileSync, writeFileSync } from "node:fs"; -import { join } from "node:path"; +import { join, relative } from "node:path"; -// Usage: node scripts/generate-pf2e-bestiary-index.mjs +// Usage: node scripts/generate-pf2e-bestiary-index.mjs // -// Requires a local clone/checkout of https://github.com/Pf2eToolsOrg/Pf2eTools (dev branch) -// with at least data/bestiary/. +// Requires a local clone of https://github.com/foundryvtt/pf2e (v13-dev branch). // // Example: -// git clone --depth 1 --branch dev --sparse https://github.com/Pf2eToolsOrg/Pf2eTools.git /tmp/pf2etools -// cd /tmp/pf2etools && git sparse-checkout set data/bestiary data -// node scripts/generate-pf2e-bestiary-index.mjs /tmp/pf2etools +// git clone --depth 1 --branch v13-dev https://github.com/foundryvtt/pf2e.git /tmp/foundry-pf2e +// node scripts/generate-pf2e-bestiary-index.mjs /tmp/foundry-pf2e -const TOOLS_ROOT = process.argv[2]; -if (!TOOLS_ROOT) { +const FOUNDRY_ROOT = process.argv[2]; +if (!FOUNDRY_ROOT) { console.error( - "Usage: node scripts/generate-pf2e-bestiary-index.mjs ", + "Usage: node scripts/generate-pf2e-bestiary-index.mjs ", ); process.exit(1); } const PROJECT_ROOT = join(import.meta.dirname, ".."); -const BESTIARY_DIR = join(TOOLS_ROOT, "data/bestiary"); +const PACKS_DIR = join(FOUNDRY_ROOT, "packs/pf2e"); const OUTPUT_PATH = join(PROJECT_ROOT, "data/bestiary/pf2e-index.json"); -// --- Source display names --- -// Pf2eTools doesn't have a single books.json with all adventure paths. -// We map known source codes to display names here. -const SOURCE_NAMES = { - B1: "Bestiary", - B2: "Bestiary 2", - B3: "Bestiary 3", - CRB: "Core Rulebook", - GMG: "Gamemastery Guide", - LOME: "Lost Omens: The Mwangi Expanse", - LOMM: "Lost Omens: Monsters of Myth", - LOIL: "Lost Omens: Impossible Lands", - LOCG: "Lost Omens: Character Guide", - LOSK: "Lost Omens: Knights of Lastwall", - LOTXWG: "Lost Omens: Travel Guide", - LOACLO: "Lost Omens: Absalom, City of Lost Omens", - LOHh: "Lost Omens: Highhelm", - AoA1: "Age of Ashes #1: Hellknight Hill", - AoA2: "Age of Ashes #2: Cult of Cinders", - AoA3: "Age of Ashes #3: Tomorrow Must Burn", - AoA4: "Age of Ashes #4: Fires of the Haunted City", - AoA5: "Age of Ashes #5: Against the Scarlet Triad", - AoA6: "Age of Ashes #6: Broken Promises", - AoE1: "Agents of Edgewatch #1", - AoE2: "Agents of Edgewatch #2", - AoE3: "Agents of Edgewatch #3", - AoE4: "Agents of Edgewatch #4", - AoE5: "Agents of Edgewatch #5", - AoE6: "Agents of Edgewatch #6", - EC1: "Extinction Curse #1", - EC2: "Extinction Curse #2", - EC3: "Extinction Curse #3", - EC4: "Extinction Curse #4", - EC5: "Extinction Curse #5", - EC6: "Extinction Curse #6", - AV1: "Abomination Vaults #1", - AV2: "Abomination Vaults #2", - AV3: "Abomination Vaults #3", - FRP1: "Fists of the Ruby Phoenix #1", - FRP2: "Fists of the Ruby Phoenix #2", - FRP3: "Fists of the Ruby Phoenix #3", - SoT1: "Strength of Thousands #1", - SoT2: "Strength of Thousands #2", - SoT3: "Strength of Thousands #3", - SoT4: "Strength of Thousands #4", - SoT5: "Strength of Thousands #5", - SoT6: "Strength of Thousands #6", - OoA1: "Outlaws of Alkenstar #1", - OoA2: "Outlaws of Alkenstar #2", - OoA3: "Outlaws of Alkenstar #3", - BotD: "Book of the Dead", - DA: "Dark Archive", - FoP: "The Fall of Plaguestone", - LTiBA: "Little Trouble in Big Absalom", - Sli: "The Slithering", - TiO: "Troubles in Otari", - NGD: "Night of the Gray Death", - BB: "Beginner Box", - SoG1: "Sky King's Tomb #1", - SoG2: "Sky King's Tomb #2", - SoG3: "Sky King's Tomb #3", - GW1: "Gatewalkers #1", - GW2: "Gatewalkers #2", - GW3: "Gatewalkers #3", - WoW1: "Wardens of Wildwood #1", - WoW2: "Wardens of Wildwood #2", - WoW3: "Wardens of Wildwood #3", - SF1: "Season of Ghosts #1", - SF2: "Season of Ghosts #2", - SF3: "Season of Ghosts #3", - POS1: "Pathfinder One-Shots", - AFoF: "A Fistful of Flowers", - TaL: "Threshold of Knowledge", - ToK: "Threshold of Knowledge", - DaLl: "Dinner at Lionlodge", - MotM: "Monsters of the Multiverse", - Mal: "Malevolence", - TEC: "The Enmity Cycle", - SaS: "Shadows at Sundown", - Rust: "Rusthenge", - CotT: "Crown of the Kobold King", - SoM: "Secrets of Magic", -}; - -// --- Size extraction from traits --- -const SIZES = new Set([ - "tiny", - "small", - "medium", - "large", - "huge", - "gargantuan", +// Legacy bestiaries superseded by Monster Core / Monster Core 2 +const EXCLUDED_PACKS = new Set([ + "pathfinder-bestiary", + "pathfinder-bestiary-2", + "pathfinder-bestiary-3", ]); -// Creature type traits (PF2e types are lowercase in the traits array) +// PFS (Pathfinder Society) scenario packs — organized play content not on +// Archives of Nethys, mostly reskinned variants for specific scenarios. +const isPfsPack = (name) => name.startsWith("pfs-"); + +// Pack directory → display name mapping. Foundry pack directories are stable +// identifiers; new ones are added ~2-3 times per year with new AP volumes. +// Run the script with an unknown pack to see unmapped entries in the output. +const SOURCE_NAMES = { + "abomination-vaults-bestiary": "Abomination Vaults", + "age-of-ashes-bestiary": "Age of Ashes", + "agents-of-edgewatch-bestiary": "Agents of Edgewatch", + "battlecry-bestiary": "Battlecry!", + "blog-bestiary": "Pathfinder Blog", + "blood-lords-bestiary": "Blood Lords", + "book-of-the-dead-bestiary": "Book of the Dead", + "claws-of-the-tyrant-bestiary": "Claws of the Tyrant", + "crown-of-the-kobold-king-bestiary": "Crown of the Kobold King", + "curtain-call-bestiary": "Curtain Call", + "extinction-curse-bestiary": "Extinction Curse", + "fall-of-plaguestone": "The Fall of Plaguestone", + "fists-of-the-ruby-phoenix-bestiary": "Fists of the Ruby Phoenix", + "gatewalkers-bestiary": "Gatewalkers", + "hellbreakers-bestiary": "Hellbreakers", + "howl-of-the-wild-bestiary": "Howl of the Wild", + "kingmaker-bestiary": "Kingmaker", + "lost-omens-bestiary": "Lost Omens", + "malevolence-bestiary": "Malevolence", + "menace-under-otari-bestiary": "Beginner Box", + "myth-speaker-bestiary": "Myth Speaker", + "night-of-the-gray-death-bestiary": "Night of the Gray Death", + "npc-gallery": "NPC Gallery", + "one-shot-bestiary": "One-Shots", + "outlaws-of-alkenstar-bestiary": "Outlaws of Alkenstar", + "pathfinder-dark-archive": "Dark Archive", + "pathfinder-monster-core": "Monster Core", + "pathfinder-monster-core-2": "Monster Core 2", + "pathfinder-npc-core": "NPC Core", + "prey-for-death-bestiary": "Prey for Death", + "quest-for-the-frozen-flame-bestiary": "Quest for the Frozen Flame", + "rage-of-elements-bestiary": "Rage of Elements", + "revenge-of-the-runelords-bestiary": "Revenge of the Runelords", + "rusthenge-bestiary": "Rusthenge", + "season-of-ghosts-bestiary": "Season of Ghosts", + "seven-dooms-for-sandpoint-bestiary": "Seven Dooms for Sandpoint", + "shades-of-blood-bestiary": "Shades of Blood", + "shadows-at-sundown-bestiary": "Shadows at Sundown", + "sky-kings-tomb-bestiary": "Sky King's Tomb", + "spore-war-bestiary": "Spore War", + "standalone-adventures": "Standalone Adventures", + "stolen-fate-bestiary": "Stolen Fate", + "strength-of-thousands-bestiary": "Strength of Thousands", + "the-enmity-cycle-bestiary": "The Enmity Cycle", + "the-slithering-bestiary": "The Slithering", + "triumph-of-the-tusk-bestiary": "Triumph of the Tusk", + "troubles-in-otari-bestiary": "Troubles in Otari", + "war-of-immortals-bestiary": "War of Immortals", + "wardens-of-wildwood-bestiary": "Wardens of Wildwood", +}; + +// Size code mapping from Foundry abbreviations to full names +const SIZE_MAP = { + tiny: "tiny", + sm: "small", + med: "medium", + lg: "large", + huge: "huge", + grg: "gargantuan", +}; + +// Creature type traits const CREATURE_TYPES = new Set([ "aberration", "animal", @@ -143,64 +123,99 @@ const CREATURE_TYPES = new Set([ "undead", ]); -function extractSize(traits) { - if (!Array.isArray(traits)) return "medium"; - const found = traits.find((t) => SIZES.has(t.toLowerCase())); - return found ? found.toLowerCase() : "medium"; -} +// --- Helpers --- -function extractType(traits) { - if (!Array.isArray(traits)) return ""; - const found = traits.find((t) => CREATURE_TYPES.has(t.toLowerCase())); - return found ? found.toLowerCase() : ""; +/** Recursively collect all .json files (excluding _*.json metadata files). */ +function collectJsonFiles(dir) { + const results = []; + for (const entry of readdirSync(dir, { withFileTypes: true })) { + if (entry.name.startsWith("_")) continue; + const full = join(dir, entry.name); + if (entry.isDirectory()) { + results.push(...collectJsonFiles(full)); + } else if (entry.name.endsWith(".json")) { + results.push(full); + } + } + return results; } // --- Main --- -const files = readdirSync(BESTIARY_DIR).filter( - (f) => f.startsWith("creatures-") && f.endsWith(".json"), -); +const packDirs = readdirSync(PACKS_DIR, { withFileTypes: true }) + .filter( + (d) => d.isDirectory() && !EXCLUDED_PACKS.has(d.name) && !isPfsPack(d.name), + ) + .map((d) => d.name) + .sort(); const creatures = []; -const seenSources = new Set(); +const sources = {}; +const missingData = []; -for (const file of files.sort()) { - const raw = JSON.parse(readFileSync(join(BESTIARY_DIR, file), "utf-8")); - const entries = raw.creature ?? []; +for (const packDir of packDirs) { + const packPath = join(PACKS_DIR, packDir); + let files; + try { + files = collectJsonFiles(packPath).sort(); + } catch { + continue; + } - for (const c of entries) { - // Skip copies/references - if (c._copy) continue; + for (const filePath of files) { + let raw; + try { + raw = JSON.parse(readFileSync(filePath, "utf-8")); + } catch { + continue; + } - const source = c.source ?? ""; - seenSources.add(source); + // Only include NPC-type creatures + if (raw.type !== "npc") continue; - const ac = c.defenses?.ac?.std ?? 0; - const hp = c.defenses?.hp?.[0]?.hp ?? 0; - const perception = c.perception?.std ?? 0; + const system = raw.system; + if (!system) continue; + + const name = raw.name; + const level = system.details?.level?.value ?? 0; + const ac = system.attributes?.ac?.value ?? 0; + const hp = system.attributes?.hp?.max ?? 0; + const perception = system.perception?.mod ?? 0; + const sizeCode = system.traits?.size?.value ?? "med"; + const size = SIZE_MAP[sizeCode] ?? "medium"; + const traits = system.traits?.value ?? []; + const type = + traits.find((t) => CREATURE_TYPES.has(t.toLowerCase()))?.toLowerCase() ?? + ""; + const relativePath = relative(PACKS_DIR, filePath); + const license = system.details?.publication?.license ?? ""; + + if (!name || ac === 0 || hp === 0) { + missingData.push(`${relativePath}: name=${name} ac=${ac} hp=${hp}`); + } creatures.push({ - n: c.name, - s: source, - lv: c.level ?? 0, + n: name, + s: packDir, + lv: level, ac, hp, pc: perception, - sz: extractSize(c.traits), - tp: extractType(c.traits), + sz: size, + tp: type, + f: relativePath, + li: license, }); } + + if (creatures.some((c) => c.s === packDir)) { + sources[packDir] = SOURCE_NAMES[packDir] ?? packDir; + } } // Sort by name then source for stable output creatures.sort((a, b) => a.n.localeCompare(b.n) || a.s.localeCompare(b.s)); -// Build source map from seen sources -const sources = {}; -for (const code of [...seenSources].sort()) { - sources[code] = SOURCE_NAMES[code] ?? code; -} - const output = { sources, creatures }; writeFileSync(OUTPUT_PATH, JSON.stringify(output)); @@ -209,7 +224,19 @@ console.log(`Sources: ${Object.keys(sources).length}`); console.log(`Creatures: ${creatures.length}`); console.log(`Output size: ${(rawSize / 1024).toFixed(1)} KB`); -const unmapped = [...seenSources].filter((s) => !SOURCE_NAMES[s]); +const unmapped = Object.keys(sources).filter((s) => !SOURCE_NAMES[s]); if (unmapped.length > 0) { - console.log(`Unmapped sources: ${unmapped.sort().join(", ")}`); + console.log( + `\nUnmapped packs (using directory name as-is): ${unmapped.join(", ")}`, + ); +} + +if (missingData.length > 0) { + console.log(`\nCreatures with missing data (${missingData.length}):`); + for (const msg of missingData.slice(0, 20)) { + console.log(` ${msg}`); + } + if (missingData.length > 20) { + console.log(` ... and ${missingData.length - 20} more`); + } } diff --git a/specs/004-bestiary/spec.md b/specs/004-bestiary/spec.md index f78db04..751249f 100644 --- a/specs/004-bestiary/spec.md +++ b/specs/004-bestiary/spec.md @@ -8,7 +8,7 @@ ## Overview -The Bestiary feature provides creature search across pre-indexed creature libraries: 3,312+ D&D creatures from 102+ sources and ~2,700+ Pathfinder 2e creatures from 79 Pf2eTools sources. The active game system setting (see `specs/003-combatant-state/spec.md`, FR-096) determines which index the search operates against. Stat block display, source management, and creature pre-fill all adapt to the active game system. +The Bestiary feature provides creature search across pre-indexed creature libraries: 3,312+ D&D creatures from 102+ sources and 2,500+ Pathfinder 2e creatures from the Foundry VTT PF2e system (remaster-era content: Monster Core, Monster Core 2, and post-remaster books). The active game system setting (see `specs/003-combatant-state/spec.md`, FR-096) determines which index the search operates against. Stat block display, source management, and creature pre-fill all adapt to the active game system. The feature also includes full creature reference via stat block display during combat, source data management via on-demand fetch or file upload, and a dual-panel UX with collapse/expand and pin capabilities. Creatures can be added individually or in batch from a search dropdown, with stats pre-filled from the index. @@ -113,8 +113,8 @@ As a DM using the app on different devices, I want the layout to adapt between s - **FR-064**: PF2e stat blocks MUST display level in place of challenge rating. Level MUST appear in the stat block header. - **FR-065**: PF2e stat blocks MUST display three saving throws (Fortitude, Reflex, Will) instead of D&D's six ability-based saves. - **FR-066**: PF2e stat blocks MUST display ability modifiers directly (e.g., "Str +4") rather than ability scores with derived modifiers. -- **FR-067**: PF2e stat blocks MUST organize abilities into three sections: top (above defenses), mid (reactions and auras), and bot (active abilities), matching the Pf2eTools source structure. -- **FR-068**: PF2e stat blocks MUST strip Pf2eTools markup tags (e.g., `{@damage 1d8+7}`, `{@condition frightened}`) and render them as plain readable text, using the same tag-stripping approach as D&D (FR-019). +- **FR-067**: PF2e stat blocks MUST organize abilities into three sections: top (above defenses), mid (reactions and auras), and bot (active abilities), matching the Foundry VTT PF2e item categorization. +- **FR-068**: PF2e stat blocks MUST strip HTML tags from Foundry VTT ability descriptions and render them as plain readable text. The HTML-to-text conversion serves the same role as the D&D tag-stripping approach (FR-019). - **FR-062**: Bestiary-linked combatant rows MUST display a small book icon (Lucide `BookOpen`) as the dedicated stat block trigger. The icon MUST have a tooltip ("View stat block") and an `aria-label="View stat block"` for accessibility. The book icon is the only way to manually open a stat block from the tracker — clicking the combatant name always enters inline rename mode. Non-bestiary combatant rows MUST NOT display the book icon. ### Acceptance Scenarios @@ -176,7 +176,7 @@ A DM wants to see which sources are cached, find a specific source, clear a spec - **FR-034**: An import button (Lucide Import icon) in the top bar MUST open the stat block side panel with the bulk import prompt. - **FR-035**: The bulk import prompt MUST show a descriptive text explaining the operation, including approximate data volume (~12.5 MB) and the dynamic number of sources derived from the bestiary index at runtime. - **FR-036**: The system MUST pre-fill a base URL that the user can edit. -- **FR-037**: The system MUST construct individual fetch URLs by appending the appropriate filename pattern to the base URL: `bestiary-{sourceCode}.json` for D&D sources, `creatures-{sourceCode}.json` for PF2e sources (matching the Pf2eTools naming convention). +- **FR-037**: The system MUST construct individual fetch URLs by appending the appropriate filename pattern to the base URL: `bestiary-{sourceCode}.json` for D&D sources, and the Foundry VTT PF2e per-creature file pattern for PF2e sources. - **FR-038**: All fetch requests during bulk import MUST fire concurrently (browser handles connection pooling). - **FR-039**: Already-cached sources MUST be skipped during bulk import. - **FR-040**: The system MUST show a text counter ("Loading sources... N/T") and progress bar during bulk import. @@ -189,10 +189,14 @@ A DM wants to see which sources are cached, find a specific source, clear a spec - **FR-047**: The app MUST provide a management UI showing cached sources with a filter input for searching by display name and options to clear individual sources or all cached data. - **FR-048**: The normalization adapter and tag-stripping utility MUST remain the canonical pipeline for all fetched and uploaded data. - **FR-049**: The distributed app bundle MUST contain zero copyrighted prose content — only mechanical facts and creature names in the search index. -- **FR-069**: The system MUST use a separate normalization pipeline for PF2e source data, mapping the Pf2eTools JSON structure to the PF2e creature type. Both pipelines (D&D and PF2e) MUST use the canonical tag-stripping utility. +- **FR-069**: The system MUST use a separate normalization pipeline for PF2e source data, mapping the Foundry VTT PF2e JSON structure (`system.*` fields and `items[]` array) to the PF2e creature type. Both pipelines (D&D and PF2e) MUST use the canonical tag-stripping utility (HTML-to-text for PF2e, markup-to-text for D&D). - **FR-070**: The source cache MUST be scoped by game system. D&D and PF2e sources MUST NOT collide in IndexedDB (e.g., both may have a source code "B1" but they are different sources). -- **FR-071**: The bulk import prompt MUST adapt to the active game system: showing the correct source count, base URL (Pf2eTools for PF2e, 5etools for D&D), and approximate data volume for the active system. +- **FR-071**: The bulk import prompt MUST adapt to the active game system: showing the correct source count, base URL (Foundry VTT PF2e repo for PF2e, 5etools for D&D), and approximate data volume for the active system. - **FR-072**: The source management UI MUST show only sources for the active game system. +- **FR-073**: The PF2e index generation script MUST read Foundry VTT PF2e one-file-per-creature JSON from the `packs/pf2e/` directory structure. +- **FR-074**: The PF2e index MUST exclude legacy/pre-remaster creatures based on the `publication.remaster` field — only remaster-era content is included by default. +- **FR-075**: PF2e creature abilities MUST have complete descriptive text in stat blocks. Stubs, generic feat references, and unresolved copy entries are not acceptable. +- **FR-076**: The PF2e index SHOULD carry per-creature license tagging (ORC/OGL) derived from the Foundry VTT source data. ### Acceptance Scenarios @@ -215,7 +219,7 @@ A DM wants to see which sources are cached, find a specific source, clear a spec 17. **Given** the source management UI is open, **When** the DM clears a single source, **Then** that source's data is removed; stat blocks for its creatures require re-fetching, while other cached sources remain. 18. **Given** the source management UI is open, **When** the DM clears all cached data, **Then** all source data is removed and all stat blocks require re-fetching. 19. **Given** many sources are cached, **When** the DM types a partial name in the filter input, **Then** only sources whose display name matches (case-insensitive) are shown. -20. **Given** the game system is Pathfinder 2e, **When** the user clicks the import button, **Then** the bulk import prompt shows the PF2e source count (~79), a Pf2eTools-based URL, and a PF2e-appropriate data volume estimate. +20. **Given** the game system is Pathfinder 2e, **When** the user clicks the import button, **Then** the bulk import prompt shows the PF2e source count, a Foundry VTT PF2e-based URL, and a PF2e-appropriate data volume estimate. 21. **Given** the game system is Pathfinder 2e and a PF2e source is cached, **When** the user opens a PF2e creature's stat block from that source, **Then** the PF2e stat block renders correctly from cached data. ### Edge Cases @@ -306,7 +310,7 @@ As a DM with a creature pinned, I want to collapse the right (browse) panel inde ## Success Criteria *(mandatory)* -- **SC-001**: All indexed creatures for the active game system (3,312+ D&D or ~2,700+ PF2e) are searchable immediately on app load, with search results appearing within 100ms of typing. +- **SC-001**: All indexed creatures for the active game system (3,312+ D&D or 2,500+ PF2e) are searchable immediately on app load, with search results appearing within 100ms of typing. - **SC-002**: Adding a creature from search to the encounter completes without any network request and within 200ms. - **SC-003**: After a source is cached, stat blocks for any creature from that source display within 200ms with no additional prompt. - **SC-004**: The distributed app bundle contains zero copyrighted prose content — only mechanical facts and creature names in the search index. @@ -323,7 +327,7 @@ As a DM with a creature pinned, I want to collapse the right (browse) panel inde - **SC-015**: Users can pin a creature and browse a different creature's stat block simultaneously, without any additional navigation steps. - **SC-016**: The pinned panel is never visible on screens narrower than the dual-panel breakpoint, ensuring mobile usability is not degraded. - **SC-017**: All collapse/expand and pin/unpin interactions are discoverable through visible button controls without requiring documentation or tooltips. -- **SC-018**: All ~2,700+ PF2e indexed creatures are searchable when PF2e is the active game system, with search results appearing within 100ms of typing. +- **SC-018**: All 2,500+ PF2e indexed creatures (remaster-era content from Foundry VTT PF2e) are searchable when PF2e is the active game system, with search results appearing within 100ms of typing. - **SC-019**: PF2e stat blocks render the correct layout (level, three saves, ability modifiers, ability sections) for all PF2e creatures — no D&D-specific fields (CR, ability scores, legendary actions) are shown. - **SC-020**: Switching game system immediately changes which creatures appear in search — no page reload required. - **SC-021**: Both D&D and PF2e search indexes ship bundled with the app; no network fetch is required to search creatures in either system.