mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-18 16:09:03 +01:00
Added Quantity as a possible cost
This commit is contained in:
parent
fa0fa1f9ee
commit
26ce421d9c
7 changed files with 89 additions and 53 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue