mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 07:59:03 +01:00
9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
import DHDamageAction from './damageAction.mjs';
|
|
|
|
export default class DHHealingAction extends DHDamageAction {
|
|
static extraSchemas = [...super.extraSchemas, 'roll'];
|
|
|
|
static getRollType(parent) {
|
|
return 'spellcast';
|
|
}
|
|
}
|