[Feature] Trigger System (#1500)

* Initial

* .

* Added StrangePattern trigger

* Set command codeblock to expandable

* Added automation setting

* Added ferocity trigger

* Improved StrangePatterns trigger to handle multiple matches
This commit is contained in:
WBHarry 2026-01-11 11:51:05 +01:00 committed by GitHub
parent 0b343c9f52
commit 454507ba7b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
20 changed files with 450 additions and 15 deletions

View file

@ -173,6 +173,13 @@ export default class DhAutomation extends foundry.abstract.DataModel {
label: 'DAGGERHEART.GENERAL.player.plurial'
})
})
}),
triggers: new fields.SchemaField({
enabled: new fields.BooleanField({
nullable: false,
initial: true,
label: 'DAGGERHEART.SETTINGS.Automation.FIELDS.triggers.enabled.label'
})
})
};
}