mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Organized language * Organized high level folders * Some deeper organization * More org. That's enough ._. * Capitalized initial system localization categories
12 lines
534 B
JavaScript
12 lines
534 B
JavaScript
export default class DhAutomation extends foundry.abstract.DataModel {
|
|
static LOCALIZATION_PREFIXES = ['DAGGERHEART.SETTINGS.Automation']; // Doesn't work for some reason
|
|
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
hope: new fields.BooleanField({ required: true, initial: false }),
|
|
actionPoints: new fields.BooleanField({ required: true, initial: false }),
|
|
countdowns: new fields.BooleanField({ requireD: true, initial: false })
|
|
};
|
|
}
|
|
}
|