mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
15 lines
387 B
JavaScript
15 lines
387 B
JavaScript
import DHBaseAction from './baseAction.mjs';
|
|
|
|
export default class DhCountdownAction extends DHBaseAction {
|
|
static extraSchemas = [...super.extraSchemas, 'countdown'];
|
|
|
|
get defaultValues() {
|
|
return {
|
|
...super.defaultValues,
|
|
countdown: {
|
|
name: this.parent.parent.name,
|
|
img: this.img
|
|
}
|
|
};
|
|
}
|
|
}
|