Merge branch 'main' of https://github.com/Foundryborne/daggerheart into feature/chat-message-styles

This commit is contained in:
moliloo 2025-08-01 01:14:23 -03:00
commit b53ad2d3ca
121 changed files with 5488 additions and 788 deletions

View file

@ -342,4 +342,17 @@ export default class DHBaseAction extends ActionMixin(foundry.abstract.DataModel
});
}
}
/**
* Generates a list of localized tags for this action.
* @returns {string[]} An array of localized tag strings.
*/
_getTags() {
const tags = [
game.i18n.localize(`DAGGERHEART.ACTIONS.TYPES.${this.type}.name`),
game.i18n.localize(`DAGGERHEART.CONFIG.ActionType.${this.actionType}`)
];
return tags;
}
}