mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
154 lines
6.2 KiB
JavaScript
154 lines
6.2 KiB
JavaScript
import AttachableItem from './attachableItem.mjs';
|
|
import { armorFeatures } from '../../config/itemConfig.mjs';
|
|
|
|
export default class DHArmor extends AttachableItem {
|
|
/** @inheritDoc */
|
|
static get metadata() {
|
|
return foundry.utils.mergeObject(super.metadata, {
|
|
label: 'TYPES.Item.armor',
|
|
type: 'armor',
|
|
hasDescription: true,
|
|
isInventoryItem: true,
|
|
hasActions: true
|
|
});
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
...super.defineSchema(),
|
|
tier: new fields.NumberField({ required: true, integer: true, initial: 1, min: 1 }),
|
|
equipped: new fields.BooleanField({ initial: false }),
|
|
baseScore: new fields.NumberField({ integer: true, initial: 0 }),
|
|
armorFeatures: new fields.ArrayField(
|
|
new fields.SchemaField({
|
|
value: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.ITEM.armorFeatures,
|
|
blank: true
|
|
}),
|
|
effectIds: new fields.ArrayField(new fields.StringField({ required: true })),
|
|
actionIds: new fields.ArrayField(new fields.StringField({ required: true }))
|
|
})
|
|
),
|
|
marks: new fields.SchemaField({
|
|
value: new fields.NumberField({ initial: 0, integer: true })
|
|
}),
|
|
baseThresholds: new fields.SchemaField({
|
|
major: new fields.NumberField({ integer: true, initial: 0 }),
|
|
severe: new fields.NumberField({ integer: true, initial: 0 })
|
|
})
|
|
};
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/**@override */
|
|
static DEFAULT_ICON = 'systems/daggerheart/assets/icons/documents/items/chest-armor.svg';
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
get customActions() {
|
|
return this.actions.filter(
|
|
action => !this.armorFeatures.some(feature => feature.actionIds.includes(action.id))
|
|
);
|
|
}
|
|
|
|
/**@inheritdoc */
|
|
async _preUpdate(changes, options, user) {
|
|
const allowed = await super._preUpdate(changes, options, user);
|
|
if (allowed === false) return false;
|
|
|
|
if (changes.system?.armorFeatures) {
|
|
const removed = this.armorFeatures.filter(x => !changes.system.armorFeatures.includes(x));
|
|
const added = changes.system.armorFeatures.filter(x => !this.armorFeatures.includes(x));
|
|
|
|
const effectIds = [];
|
|
const actionIds = [];
|
|
for (var feature of removed) {
|
|
effectIds.push(...feature.effectIds);
|
|
actionIds.push(...feature.actionIds);
|
|
}
|
|
await this.parent.deleteEmbeddedDocuments('ActiveEffect', effectIds);
|
|
changes.system.actions = actionIds.reduce((acc, id) => {
|
|
acc[`-=${id}`] = null;
|
|
return acc;
|
|
}, {});
|
|
|
|
for (const feature of added) {
|
|
const featureData = armorFeatures[feature.value];
|
|
if (featureData.effects?.length > 0) {
|
|
const embeddedItems = await this.parent.createEmbeddedDocuments(
|
|
'ActiveEffect',
|
|
featureData.effects.map(effect => ({
|
|
...effect,
|
|
name: game.i18n.localize(effect.name),
|
|
description: game.i18n.localize(effect.description)
|
|
}))
|
|
);
|
|
feature.effectIds = embeddedItems.map(x => x.id);
|
|
}
|
|
|
|
const newActions = {};
|
|
if (featureData.actions?.length > 0) {
|
|
for (let action of featureData.actions) {
|
|
const embeddedEffects = await this.parent.createEmbeddedDocuments(
|
|
'ActiveEffect',
|
|
(action.effects ?? []).map(effect => ({
|
|
...effect,
|
|
transfer: false,
|
|
name: game.i18n.localize(effect.name),
|
|
description: game.i18n.localize(effect.description)
|
|
}))
|
|
);
|
|
feature.effectIds = [...(feature.effectIds ?? []), ...embeddedEffects.map(x => x.id)];
|
|
|
|
const cls = game.system.api.models.actions.actionsTypes[action.type];
|
|
const actionId = foundry.utils.randomID();
|
|
newActions[actionId] = new cls(
|
|
{
|
|
...cls.getSourceConfig(this),
|
|
...action,
|
|
_id: actionId,
|
|
name: game.i18n.localize(action.name),
|
|
description: game.i18n.localize(action.description),
|
|
effects: embeddedEffects.map(x => ({ _id: x.id }))
|
|
},
|
|
{ parent: this }
|
|
);
|
|
}
|
|
}
|
|
|
|
changes.system.actions = newActions;
|
|
feature.actionIds = Object.keys(newActions);
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generates a list of localized tags based on this item's type-specific properties.
|
|
* @returns {string[]} An array of localized tag strings.
|
|
*/
|
|
_getTags() {
|
|
const tags = [
|
|
`${game.i18n.localize('DAGGERHEART.ITEMS.Armor.baseScore')}: ${this.baseScore}`,
|
|
`${game.i18n.localize('DAGGERHEART.ITEMS.Armor.baseThresholds.base')}: ${this.baseThresholds.major} / ${this.baseThresholds.severe}`
|
|
];
|
|
|
|
return tags;
|
|
}
|
|
|
|
/**
|
|
* Generate a localized label array for this item subtype.
|
|
* @returns {(string | { value: string, icons: string[] })[]} An array of localized strings and damage label objects.
|
|
*/
|
|
_getLabels() {
|
|
const labels = [`${game.i18n.localize('DAGGERHEART.ITEMS.Armor.baseScore')}: ${this.baseScore}`];
|
|
return labels;
|
|
}
|
|
|
|
get itemFeatures() {
|
|
return this.armorFeatures;
|
|
}
|
|
}
|