Change stress cap

This commit is contained in:
walcutt 2025-01-17 15:00:22 -05:00
parent ece263c69e
commit 60021edefc
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ export class HenchDataModel extends foundry.abstract.TypeDataModel {
levelThree: cappedArrayField(markableField(), 1, { marked: false, description: "" }),
levelFour: cappedArrayField(markableField(), 1, { marked: false, description: "" }),
}),
stress: new NumberField({ required: true, integer: true, min: 0, initial: 0, max: 12 }),
stress: new NumberField({ required: true, integer: true, min: 0, initial: 3, max: 8 }),
moves: cappedArrayField(moveField(), 5),
customMove: moveField(),

View File

@ -17,7 +17,7 @@ export class HenchActorSheet extends ActorSheet {
context.storylineKeys = storylineKeys.map((k) => ({ key: k, selected: k === this.actor.system.storyline}));
// TODO define system constants for these
context.maxStress = 12;
context.maxStress = 8;
context.maxExp = 5;
context.maxHeat = 18;