Downtime can now display both ShortRest and LongRest options depending on character rules

This commit is contained in:
WBHarry 2025-07-17 15:35:27 +02:00
parent ab56f2c23e
commit 475a63f120
8 changed files with 161 additions and 55 deletions

View file

@ -122,12 +122,9 @@ export default class DhCharacter extends BaseDataActor {
label: 'DAGGERHEART.GENERAL.Range.other'
})
}),
rally: new fields.ArrayField(
new fields.StringField(),
{
label: 'DAGGERHEART.CLASS.Feature.rallyDice'
}
)
rally: new fields.ArrayField(new fields.StringField(), {
label: 'DAGGERHEART.CLASS.Feature.rallyDice'
})
}),
companion: new ForeignDocumentUUIDField({ type: 'Actor', nullable: true, initial: null }),
rules: new fields.SchemaField({
@ -174,6 +171,44 @@ export default class DhCharacter extends BaseDataActor {
*/
flipMinDiceValue: new fields.BooleanField({ intial: false })
}),
rest: new fields.SchemaField({
shortRest: new fields.SchemaField({
shortMoves: new fields.NumberField({
required: true,
integer: true,
min: 1,
initial: 2,
label: 'DAGGERHEART.GENERAL.Rules.rest.shortRest.shortRestMoves.label',
hint: 'DAGGERHEART.GENERAL.Rules.rest.shortRest.shortRestMoves.hint'
}),
longMoves: new fields.NumberField({
required: true,
integer: true,
min: 0,
initial: 0,
label: 'DAGGERHEART.GENERAL.Rules.rest.shortRest.longRestMoves.label',
hint: 'DAGGERHEART.GENERAL.Rules.rest.shortRest.longRestMoves.hint'
})
}),
longRest: new fields.SchemaField({
shortMoves: new fields.NumberField({
required: true,
integer: true,
min: 0,
initial: 0,
label: 'DAGGERHEART.GENERAL.Rules.rest.longRest.shortRestMoves.label',
hint: 'DAGGERHEART.GENERAL.Rules.rest.longRest.shortRestMoves.hint'
}),
longMoves: new fields.NumberField({
required: true,
integer: true,
min: 1,
initial: 2,
label: 'DAGGERHEART.GENERAL.Rules.rest.longRest.longRestMoves.label',
hint: 'DAGGERHEART.GENERAL.Rules.rest.longRest.longRestMoves.hint'
})
})
}),
runeWard: new fields.BooleanField({ initial: false })
})
};