mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Removed ChatTheme from settings * 0 or blank loadoutSize now means unlimited * Added Homebrew maxDomains
104 lines
4.6 KiB
JavaScript
104 lines
4.6 KiB
JavaScript
import { defaultRestOptions } from '../../config/generalConfig.mjs';
|
|
import { ActionsField } from '../fields/actionField.mjs';
|
|
|
|
export default class DhHomebrew extends foundry.abstract.DataModel {
|
|
static LOCALIZATION_PREFIXES = ['DAGGERHEART.SETTINGS.Homebrew']; // Doesn't work for some reason
|
|
|
|
static defineSchema() {
|
|
const fields = foundry.data.fields;
|
|
return {
|
|
maxFear: new fields.NumberField({
|
|
required: true,
|
|
integer: true,
|
|
min: 0,
|
|
initial: 12,
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.FIELDS.maxFear.label'
|
|
}),
|
|
maxLoadout: new fields.NumberField({
|
|
required: true,
|
|
integer: true,
|
|
min: 0,
|
|
initial: 5,
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.FIELDS.maxLoadout.label'
|
|
}),
|
|
maxDomains: new fields.NumberField({
|
|
required: true,
|
|
integer: true,
|
|
min: 1,
|
|
initial: 2,
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.FIELDS.maxDomains.label'
|
|
}),
|
|
traitArray: new fields.ArrayField(new fields.NumberField({ required: true, integer: true }), {
|
|
initial: () => [2, 1, 1, 0, 0, -1]
|
|
}),
|
|
currency: new fields.SchemaField({
|
|
enabled: new fields.BooleanField({
|
|
required: true,
|
|
initial: false,
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.enabled'
|
|
}),
|
|
title: new fields.StringField({
|
|
required: true,
|
|
initial: 'Gold',
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.currencyName'
|
|
}),
|
|
coins: new fields.StringField({
|
|
required: true,
|
|
initial: 'Coins',
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.coinName'
|
|
}),
|
|
handfulls: new fields.StringField({
|
|
required: true,
|
|
initial: 'Handfulls',
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.handfullName'
|
|
}),
|
|
bags: new fields.StringField({
|
|
required: true,
|
|
initial: 'Bags',
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.bagName'
|
|
}),
|
|
chests: new fields.StringField({
|
|
required: true,
|
|
initial: 'Chests',
|
|
label: 'DAGGERHEART.SETTINGS.Homebrew.currency.chestName'
|
|
})
|
|
}),
|
|
restMoves: new fields.SchemaField({
|
|
longRest: new fields.SchemaField({
|
|
nrChoices: new fields.NumberField({ required: true, integer: true, min: 1, initial: 2 }),
|
|
moves: new fields.TypedObjectField(
|
|
new fields.SchemaField({
|
|
name: new fields.StringField({ required: true }),
|
|
icon: new fields.StringField({ required: true }),
|
|
img: new fields.FilePathField({
|
|
initial: 'icons/magic/life/cross-worn-green.webp',
|
|
categories: ['IMAGE'],
|
|
base64: false
|
|
}),
|
|
description: new fields.HTMLField(),
|
|
actions: new ActionsField()
|
|
}),
|
|
{ initial: defaultRestOptions.longRest() }
|
|
)
|
|
}),
|
|
shortRest: new fields.SchemaField({
|
|
nrChoices: new fields.NumberField({ required: true, integer: true, min: 1, initial: 2 }),
|
|
moves: new fields.TypedObjectField(
|
|
new fields.SchemaField({
|
|
name: new fields.StringField({ required: true }),
|
|
icon: new fields.StringField({ required: true }),
|
|
img: new fields.FilePathField({
|
|
initial: 'icons/magic/life/cross-worn-green.webp',
|
|
categories: ['IMAGE'],
|
|
base64: false
|
|
}),
|
|
description: new fields.HTMLField(),
|
|
actions: new ActionsField()
|
|
}),
|
|
{ initial: defaultRestOptions.shortRest() }
|
|
)
|
|
})
|
|
})
|
|
};
|
|
}
|
|
}
|