Added a separation of system effects and generic effects on token status effects. Can be turned off in settings. (#317)

This commit is contained in:
WBHarry 2025-07-11 21:53:22 +02:00 committed by GitHub
parent d4cc8e5a49
commit 5b9db88d50
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 199 additions and 5 deletions

View file

@ -40,6 +40,10 @@ export default class DhAppearance extends foundry.abstract.DataModel {
outline: new fields.ColorField({ required: true, initial: '#ffffff' }),
edge: new fields.ColorField({ required: true, initial: '#000000' })
})
}),
showGenericStatusEffects: new fields.BooleanField({
initial: true,
label: 'DAGGERHEART.SETTINGS.Appearance.FIELDS.showGenericStatusEffects.label'
})
};
}