[Feature] Add Default Icons for Document Subtypes

Fixes #458
This commit is contained in:
Joaquin Pereyra 2025-08-04 22:36:04 -03:00
parent b590ee881a
commit dc5b8fe8e8
34 changed files with 206 additions and 13 deletions

View file

@ -13,10 +13,15 @@ export default class DHCommunity extends BaseDataItem {
/** @inheritDoc */
static defineSchema() {
const fields = foundry.data.fields;
return {
...super.defineSchema(),
features: new ForeignDocumentUUIDArrayField({ type: 'Item' })
};
}
/* -------------------------------------------- */
/**@override */
static DEFAULT_ICON = 'systems/daggerheart/assets/icons/documents/items/village.svg';
}