mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
- Made constants for special conditions - Added touch attacks to spells
12 lines
515 B
JavaScript
12 lines
515 B
JavaScript
// Buttons describing how to rule on special conditions.
|
|
// The buttons are defined in dm-screen.html
|
|
// The buttons for roll templates are defined in rolltemplate-buttons.html
|
|
const BLINDNESS = "blindness";
|
|
const DEAFNESS = "deafness";
|
|
const INVISIBILITY = "invisibility";
|
|
const CONTINUING_DAMAGE = "continuing-damage";
|
|
const MAGICAL_AGING = "magical-aging";
|
|
const CHARM = "charm";
|
|
const TOUCH_ATTACKS = "touch-attacks";
|
|
// This is an action button defined in the sheetWorkers.js
|
|
const GRENADE_LIKE= "grenade-miss" |