mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
* Updated SystemSettings to V2 and organized some * Corrected distance measuring labels * Raised system.json foundry version
11 lines
449 B
JavaScript
11 lines
449 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 })
|
|
};
|
|
}
|
|
}
|