49 lines
1.1 KiB
JavaScript
49 lines
1.1 KiB
JavaScript
export const MONSTER_CHARACTERISTICS = Object.freeze({
|
|
int: {
|
|
id: "int",
|
|
label: "LETHALFANTASY.Character.int.label"
|
|
},
|
|
dex: {
|
|
id: "dex",
|
|
label: "LETHALFANTASY.Character.dex.label"
|
|
},
|
|
})
|
|
|
|
export const MONSTER_RESIST = Object.freeze({
|
|
resistTorture: {
|
|
id: "resistTorture",
|
|
label: "LETHALFANTASY.Character.resistTorture.label"
|
|
},
|
|
resistPerformance: {
|
|
id: "resistPerformance",
|
|
label: "LETHALFANTASY.Character.resistPerformance.label"
|
|
},
|
|
resistIntimidation: {
|
|
id: "resistIntimidation",
|
|
label: "LETHALFANTASY.Character.resistIntimidation.label"
|
|
}
|
|
})
|
|
|
|
export const MONSTER_SAVES = Object.freeze({
|
|
will: {
|
|
id: "will",
|
|
label: "LETHALFANTASY.Character.will.label"
|
|
},
|
|
dodge: {
|
|
id: "dodge",
|
|
label: "LETHALFANTASY.Character.dodge.label"
|
|
},
|
|
toughness: {
|
|
id: "toughness",
|
|
label: "LETHALFANTASY.Character.toughness.label"
|
|
},
|
|
contagion: {
|
|
id: "contagion",
|
|
label: "LETHALFANTASY.Character.contagion.label"
|
|
},
|
|
poison: {
|
|
id: "poison",
|
|
label: "LETHALFANTASY.Character.poison.label"
|
|
}
|
|
})
|