Added Quantity as a possible cost

This commit is contained in:
WBHarry 2025-08-28 01:08:03 +02:00
parent fa0fa1f9ee
commit 26ce421d9c
7 changed files with 89 additions and 53 deletions

View file

@ -561,6 +561,19 @@ export const refreshTypes = {
}
};
export const itemAbilityCosts = {
resource: {
id: 'resource',
label: 'DAGGERHEART.GENERAL.resource',
group: 'Global'
},
quantity: {
id: 'quantity',
label: 'DAGGERHEART.GENERAL.quantity',
group: 'Global'
}
};
export const abilityCosts = {
hitPoints: {
id: 'hitPoints',
@ -587,16 +600,7 @@ export const abilityCosts = {
label: 'Fear',
group: 'TYPES.Actor.adversary'
},
resource: {
id: 'resource',
label: 'DAGGERHEART.GENERAL.resource',
group: 'Global'
},
quantity: {
id: 'quantity',
label: 'DAGGERHEART.GENERAL.quantity',
group: 'Global'
}
resource: itemAbilityCosts.resource
};
export const countdownTypes = {