mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* Small random fixes * Added use of ItemLinkFields * Multiclass levelup fixes * Fixed our onCreate methods unintentionally being run on all clients * Remade apps handling * Added for all class items and subclass * Restored foreignDocumentUuidField * Improved * PR fxies * Fixed tooltip enrichment * . * Reverted silly change
163 lines
6.1 KiB
JavaScript
163 lines
6.1 KiB
JavaScript
import { updateActorTokens } from '../../helpers/utils.mjs';
|
|
import ForeignDocumentUUIDArrayField from '../fields/foreignDocumentUUIDArrayField.mjs';
|
|
import BaseDataItem from './base.mjs';
|
|
|
|
export default class DHBeastform extends BaseDataItem {
|
|
static LOCALIZATION_PREFIXES = ['DAGGERHEART.ITEMS.Beastform'];
|
|
|
|
/** @inheritDoc */
|
|
static get metadata() {
|
|
return foundry.utils.mergeObject(super.metadata, {
|
|
label: 'TYPES.Item.beastform',
|
|
type: 'beastform',
|
|
hasDescription: false
|
|
});
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
...super.defineSchema(),
|
|
beastformType: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.ITEM.beastformTypes,
|
|
initial: CONFIG.DH.ITEM.beastformTypes.normal.id
|
|
}),
|
|
tier: new fields.NumberField({
|
|
required: true,
|
|
integer: true,
|
|
choices: CONFIG.DH.GENERAL.tiers,
|
|
initial: CONFIG.DH.GENERAL.tiers[1].id
|
|
}),
|
|
tokenImg: new fields.FilePathField({
|
|
initial: 'icons/svg/mystery-man.svg',
|
|
categories: ['IMAGE'],
|
|
base64: false
|
|
}),
|
|
tokenRingImg: new fields.FilePathField({
|
|
initial: 'icons/svg/mystery-man.svg',
|
|
categories: ['IMAGE'],
|
|
base64: false
|
|
}),
|
|
tokenSize: new fields.SchemaField({
|
|
height: new fields.NumberField({ integer: true, min: 1, initial: null, nullable: true }),
|
|
width: new fields.NumberField({ integer: true, min: 1, initial: null, nullable: true })
|
|
}),
|
|
mainTrait: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.ACTOR.abilities,
|
|
initial: CONFIG.DH.ACTOR.abilities.agility.id
|
|
}),
|
|
examples: new fields.StringField(),
|
|
advantageOn: new fields.TypedObjectField(
|
|
new fields.SchemaField({
|
|
value: new fields.StringField()
|
|
})
|
|
),
|
|
features: new ForeignDocumentUUIDArrayField({ type: 'Item' }),
|
|
evolved: new fields.SchemaField({
|
|
maximumTier: new fields.NumberField({
|
|
integer: true,
|
|
choices: CONFIG.DH.GENERAL.tiers
|
|
}),
|
|
mainTraitBonus: new fields.NumberField({
|
|
required: true,
|
|
integer: true,
|
|
min: 0,
|
|
initial: 0
|
|
})
|
|
}),
|
|
hybrid: new fields.SchemaField({
|
|
maximumTier: new fields.NumberField({
|
|
integer: true,
|
|
choices: CONFIG.DH.GENERAL.tiers,
|
|
label: 'DAGGERHEART.ITEMS.Beastform.FIELDS.evolved.maximumTier.label'
|
|
}),
|
|
beastformOptions: new fields.NumberField({ required: true, integer: true, initial: 2, min: 2 }),
|
|
advantages: new fields.NumberField({ required: true, integer: true, initial: 2, min: 2 }),
|
|
features: new fields.NumberField({ required: true, integer: true, initial: 2, min: 2 })
|
|
})
|
|
};
|
|
}
|
|
|
|
async _preCreate() {
|
|
if (!this.actor) return;
|
|
|
|
if (this.actor.type !== 'character') {
|
|
ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.beastformInapplicable'));
|
|
return false;
|
|
}
|
|
|
|
if (this.actor.items.find(x => x.type === 'beastform')) {
|
|
ui.notifications.error(game.i18n.localize('DAGGERHEART.UI.Notifications.beastformAlreadyApplied'));
|
|
return false;
|
|
}
|
|
|
|
const features = await this.parent.parent.createEmbeddedDocuments(
|
|
'Item',
|
|
this.features.map(x => x.toObject())
|
|
);
|
|
|
|
const extraEffects = await this.parent.parent.createEmbeddedDocuments(
|
|
'ActiveEffect',
|
|
this.parent.effects.filter(x => x.type !== 'beastform').map(x => x.toObject())
|
|
);
|
|
|
|
const beastformEffect = this.parent.effects.find(x => x.type === 'beastform');
|
|
await beastformEffect.updateSource({
|
|
changes: [
|
|
...beastformEffect.changes,
|
|
{
|
|
key: 'system.advantageSources',
|
|
mode: 2,
|
|
value: Object.values(this.advantageOn)
|
|
.map(x => x.value)
|
|
.join(', ')
|
|
}
|
|
],
|
|
system: {
|
|
characterTokenData: {
|
|
tokenImg: this.parent.parent.prototypeToken.texture.src,
|
|
tokenRingImg: this.parent.parent.prototypeToken.ring.subject.texture,
|
|
tokenSize: {
|
|
height: this.parent.parent.prototypeToken.height,
|
|
width: this.parent.parent.prototypeToken.width
|
|
}
|
|
},
|
|
advantageOn: this.advantageOn,
|
|
featureIds: features.map(x => x.id),
|
|
effectIds: extraEffects.map(x => x.id)
|
|
}
|
|
});
|
|
|
|
await this.parent.parent.createEmbeddedDocuments('ActiveEffect', [beastformEffect.toObject()]);
|
|
|
|
await updateActorTokens(this.parent.parent, {
|
|
height: this.tokenSize.height,
|
|
width: this.tokenSize.width,
|
|
texture: {
|
|
src: this.tokenImg
|
|
},
|
|
ring: {
|
|
subject: {
|
|
texture: this.tokenRingImg
|
|
}
|
|
}
|
|
});
|
|
|
|
return false;
|
|
}
|
|
|
|
_onCreate(_data, _options, userId) {
|
|
if (userId !== game.user.id) return;
|
|
|
|
this.parent.createEmbeddedDocuments('ActiveEffect', [
|
|
{
|
|
type: 'beastform',
|
|
name: game.i18n.localize('DAGGERHEART.ITEMS.Beastform.beastformEffect'),
|
|
img: 'icons/creatures/abilities/paw-print-pair-purple.webp'
|
|
}
|
|
]);
|
|
}
|
|
}
|