mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
44 lines
1.9 KiB
JavaScript
44 lines
1.9 KiB
JavaScript
export default class BaseEffect extends foundry.abstract.TypeDataModel {
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
|
|
return {
|
|
conditional: new fields.SchemaField({
|
|
andOr: new fields.BooleanField({ initial: true }),
|
|
condition: new fields.ArrayField(
|
|
new fields.SchemaField({
|
|
field: new fields.StringField({required: true, nullable: true}),
|
|
operator: new fields.StringField({required: true, choices: CONFIG.DH.EFFECTS.conditionalTypes(), initial: 'equals'}),
|
|
value: new fields.StringField({required: true}),
|
|
negate: new fields.BooleanField({initial: false})
|
|
})
|
|
)
|
|
}),
|
|
rangeDependence: new fields.SchemaField({
|
|
enabled: new fields.BooleanField({
|
|
required: true,
|
|
initial: false,
|
|
label: 'DAGGERHEART.GENERAL.enabled'
|
|
}),
|
|
type: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.GENERAL.rangeInclusion,
|
|
initial: CONFIG.DH.GENERAL.rangeInclusion.withinRange.id,
|
|
label: 'DAGGERHEART.GENERAL.type'
|
|
}),
|
|
target: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.GENERAL.otherTargetTypes,
|
|
initial: CONFIG.DH.GENERAL.otherTargetTypes.hostile.id,
|
|
label: 'DAGGERHEART.GENERAL.Target.single'
|
|
}),
|
|
range: new fields.StringField({
|
|
required: true,
|
|
choices: CONFIG.DH.GENERAL.range,
|
|
initial: CONFIG.DH.GENERAL.range.melee.id,
|
|
label: 'DAGGERHEART.GENERAL.range'
|
|
})
|
|
})
|
|
};
|
|
}
|
|
}
|