mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-15 05:01:08 +01:00
[Feature] Add Default Icons for Document Subtypes (#584)
Fixes #458 Co-authored-by: Joaquin Pereyra <joaquinpereyra98@users.noreply.github.com>
This commit is contained in:
parent
481652bf3f
commit
0feec77512
34 changed files with 206 additions and 13 deletions
|
|
@ -19,10 +19,26 @@ export default class DHAncestry extends BaseDataItem {
|
|||
};
|
||||
}
|
||||
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
||||
/**@override */
|
||||
static DEFAULT_ICON = 'systems/daggerheart/assets/icons/documents/items/family-tree.svg';
|
||||
|
||||
/* -------------------------------------------- */
|
||||
|
||||
/**
|
||||
* Gets the primary feature.
|
||||
* @type {foundry.documents.Item|null} Returns the item of the first feature with type "primary" or null if none is found.
|
||||
*/
|
||||
get primaryFeature() {
|
||||
return this.features.find(x => x.type === CONFIG.DH.ITEM.featureSubTypes.primary)?.item;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the secondary feature.
|
||||
* @type {foundry.documents.Item|null} Returns the item of the first feature with type "secondary" or null if none is found.
|
||||
*/
|
||||
get secondaryFeature() {
|
||||
return this.features.find(x => x.type === CONFIG.DH.ITEM.featureSubTypes.secondary)?.item;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue