mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Fixed translation of TrackedAttributeChoices * Styling improvements * Added hints * fix autocomplete style, fix tagify style, fix magical and physical tag style and fix lang in details adversary settings * Removed commented out code * Some companion fixes --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com>
20 lines
1,003 B
JavaScript
20 lines
1,003 B
JavaScript
export default class DhTokenConfig extends foundry.applications.sheets.TokenConfig {
|
|
/** @inheritDoc */
|
|
async _prepareResourcesTab() {
|
|
const token = this.token;
|
|
const usesTrackableAttributes = !foundry.utils.isEmpty(CONFIG.Actor.trackableAttributes);
|
|
const attributeSource =
|
|
this.actor?.system instanceof foundry.abstract.DataModel && usesTrackableAttributes
|
|
? this.actor?.type
|
|
: this.actor?.system;
|
|
const TokenDocument = foundry.utils.getDocumentClass('Token');
|
|
const attributes = TokenDocument.getTrackedAttributes(attributeSource);
|
|
return {
|
|
barAttributes: TokenDocument.getTrackedAttributeChoices(attributes, attributeSource),
|
|
bar1: token.getBarAttribute?.('bar1'),
|
|
bar2: token.getBarAttribute?.('bar2'),
|
|
turnMarkerModes: DhTokenConfig.TURN_MARKER_MODES,
|
|
turnMarkerAnimations: CONFIG.Combat.settings.turnMarkerAnimations
|
|
};
|
|
}
|
|
}
|