Added the shell of the Countdown application

This commit is contained in:
WBHarry 2025-06-09 08:28:59 +02:00
parent 7799f4f1eb
commit db7ecf0c2f
8 changed files with 197 additions and 0 deletions

View file

@ -311,3 +311,14 @@ export const abilityCosts = {
label: 'Stress'
}
};
export const countdownTypes = {
spotlight: {
id: 'spotlight',
label: 'DAGGERHEART.Countdown.Type.Spotlight'
},
custom: {
id: 'custom',
label: 'DAGGERHEART.Countdown.Type.Custom'
}
};

View file

@ -33,6 +33,7 @@ export const gameSettings = {
},
DualityRollColor: 'DualityRollColor',
LevelTiers: 'LevelTiers',
Countdowns: 'Countdowns',
appearance: 'Appearance',
variantRules: 'VariantRules'
};