mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-13 20:21:06 +01:00
Added Looping
This commit is contained in:
parent
9e21aa177b
commit
6536e84afe
13 changed files with 237 additions and 94 deletions
|
|
@ -611,7 +611,7 @@ export const abilityCosts = {
|
|||
resource: itemAbilityCosts.resource
|
||||
};
|
||||
|
||||
export const countdownTypes = {
|
||||
export const countdownProgressionTypes = {
|
||||
spotlight: {
|
||||
id: 'spotlight',
|
||||
label: 'DAGGERHEART.CONFIG.CountdownType.spotlight'
|
||||
|
|
@ -681,6 +681,25 @@ export const countdownBaseTypes = {
|
|||
}
|
||||
};
|
||||
|
||||
export const countdownLoopingTypes = {
|
||||
noLooping: {
|
||||
id: 'noLooping',
|
||||
label: 'DAGGERHEART.APPLICATIONS.Countdown.loopingTypes.noLooping'
|
||||
},
|
||||
looping: {
|
||||
id: 'looping',
|
||||
label: 'DAGGERHEART.APPLICATIONS.Countdown.loopingTypes.looping'
|
||||
},
|
||||
increasing: {
|
||||
id: 'increasing',
|
||||
label: 'DAGGERHEART.APPLICATIONS.Countdown.loopingTypes.increasing'
|
||||
},
|
||||
decreasing: {
|
||||
id: 'decreasing',
|
||||
label: 'DAGGERHEART.APPLICATIONS.Countdown.loopingTypes.decreasing'
|
||||
}
|
||||
};
|
||||
|
||||
export const countdownAppMode = {
|
||||
textIcon: 'text-icon',
|
||||
iconOnly: 'icon-only'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue