mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 06:26:13 +01:00
.
This commit is contained in:
parent
4aab5d315a
commit
bafc53488f
11 changed files with 270 additions and 4 deletions
|
|
@ -916,3 +916,48 @@ export const activeEffectDurations = {
|
|||
label: 'DAGGERHEART.CONFIG.ActiveEffectDuration.custom'
|
||||
}
|
||||
};
|
||||
|
||||
export const activeEffectConditionalTarget = {
|
||||
self: {
|
||||
id: 'self',
|
||||
label: 'DAGGERHEART.CONFIG.ActiveEffectConditionalTarget.self'
|
||||
}
|
||||
// target: {
|
||||
// id: 'target',
|
||||
// label: 'DAGGERHEART.CONFIG.ActiveEffectConditionalTarget.target'
|
||||
// }
|
||||
};
|
||||
|
||||
export const activeEffectConditionalType = {
|
||||
attribute: {
|
||||
id: 'attribute',
|
||||
label: 'Attribute'
|
||||
},
|
||||
status: {
|
||||
id: 'status',
|
||||
label: 'Status'
|
||||
}
|
||||
};
|
||||
|
||||
export const comparator = {
|
||||
eq: {
|
||||
id: 'eq',
|
||||
label: 'DAGGERHEART.CONFIG.Comparator.eq'
|
||||
},
|
||||
gt: {
|
||||
id: 'gt',
|
||||
label: 'DAGGERHEART.CONFIG.Comparator.gt'
|
||||
},
|
||||
gte: {
|
||||
id: 'gte',
|
||||
label: 'DAGGERHEART.CONFIG.Comparator.gte'
|
||||
},
|
||||
lt: {
|
||||
id: 'lt',
|
||||
label: 'DAGGERHEART.CONFIG.Comparator.lt'
|
||||
},
|
||||
lte: {
|
||||
id: 'lte',
|
||||
label: 'DAGGERHEART.CONFIG.Comparator.lte'
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue