- Add Dodge roll under Reflex save (auto-hindered by heavy armor) - Add Block roll under Endure save (hindered vs ranged attacks toggle) - Create DodgeRollDialog and BlockRollDialog with templates - Display defense rolls as indented sub-rows on Main tab - Block row visually dimmed when no shield equipped, shows notification on click 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
705 B
JavaScript
15 lines
705 B
JavaScript
/**
|
|
* Application classes for Vagabond RPG
|
|
* @module applications
|
|
*/
|
|
|
|
export { default as VagabondRollDialog } from "./base-roll-dialog.mjs";
|
|
export { default as SkillCheckDialog } from "./skill-check-dialog.mjs";
|
|
export { default as AttackRollDialog } from "./attack-roll-dialog.mjs";
|
|
export { default as SaveRollDialog } from "./save-roll-dialog.mjs";
|
|
export { default as DodgeRollDialog } from "./dodge-roll-dialog.mjs";
|
|
export { default as BlockRollDialog } from "./block-roll-dialog.mjs";
|
|
export { default as SpellCastDialog } from "./spell-cast-dialog.mjs";
|
|
export { default as FavorHinderDebug } from "./favor-hinder-debug.mjs";
|
|
export { default as LevelUpDialog } from "./level-up-dialog.mjs";
|