Add monsetr sheet
This commit is contained in:
48
module/config/monster.mjs
Normal file
48
module/config/monster.mjs
Normal file
@@ -0,0 +1,48 @@
|
||||
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"
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user