Implement the 021-bestiary-statblock feature that adds a searchable D&D 2024 Monster Manual creature library with inline autocomplete suggestions, full stat block display in a fixed side panel, auto-numbering of duplicate creature names, HP/AC pre-fill from bestiary data, and automatic stat block display on turn change for wide viewports

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Lukas
2026-03-09 11:01:07 +01:00
parent 04a4f18f98
commit fa078be2f9
30 changed files with 66221 additions and 56 deletions

View File

@@ -1,12 +1,24 @@
export { type AddCombatantSuccess, addCombatant } from "./add-combatant.js";
export { type AdjustHpSuccess, adjustHp } from "./adjust-hp.js";
export { advanceTurn } from "./advance-turn.js";
export { resolveCreatureName } from "./auto-number.js";
export {
CONDITION_DEFINITIONS,
type ConditionDefinition,
type ConditionId,
VALID_CONDITION_IDS,
} from "./conditions.js";
export {
type BestiarySource,
type Creature,
type CreatureId,
creatureId,
type DailySpells,
type LegendaryBlock,
proficiencyBonus,
type SpellcastingBlock,
type TraitBlock,
} from "./creature-types.js";
export {
type EditCombatantSuccess,
editCombatant,