mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-11 19:25:21 +01:00
[PR][Feature] Actor Sizes (#1433)
* Added support for adversary actor sizes * . * . * Finished token implementation * Fixed token-config * Updated SRD adversaries * . * Added size to Beastform tokenData * Fixed sizing for evolved beastforms * Beastform compendium update * .
This commit is contained in:
parent
7926c614e3
commit
8178fa5738
176 changed files with 1198 additions and 203 deletions
|
|
@ -211,6 +211,44 @@ export const adversaryTraits = {
|
|||
}
|
||||
};
|
||||
|
||||
export const tokenSize = {
|
||||
custom: {
|
||||
id: 'custom',
|
||||
value: 0,
|
||||
label: 'DAGGERHEART.GENERAL.custom'
|
||||
},
|
||||
tiny: {
|
||||
id: 'tiny',
|
||||
value: 1,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.tiny'
|
||||
},
|
||||
small: {
|
||||
id: 'small',
|
||||
value: 2,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.small'
|
||||
},
|
||||
medium: {
|
||||
id: 'medium',
|
||||
value: 3,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.medium'
|
||||
},
|
||||
large: {
|
||||
id: 'large',
|
||||
value: 4,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.large'
|
||||
},
|
||||
huge: {
|
||||
id: 'huge',
|
||||
value: 5,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.huge'
|
||||
},
|
||||
gargantuan: {
|
||||
id: 'gargantuan',
|
||||
value: 6,
|
||||
label: 'DAGGERHEART.CONFIG.TokenSize.gargantuan'
|
||||
}
|
||||
};
|
||||
|
||||
export const levelChoices = {
|
||||
attributes: {
|
||||
name: 'attributes',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue