23 lines
532 B
JavaScript
23 lines
532 B
JavaScript
export const TOTEM = {};
|
|
|
|
/**
|
|
* The set of Ability Scores used within the sytem.
|
|
* @type {Object}
|
|
*/
|
|
TOTEM.abilities = {
|
|
"str": "TOTEM.AbilityStr",
|
|
"dex": "TOTEM.AbilityDex",
|
|
"con": "TOTEM.AbilityCon",
|
|
"int": "TOTEM.AbilityInt",
|
|
"wis": "TOTEM.AbilityWis",
|
|
"cha": "TOTEM.AbilityCha"
|
|
};
|
|
|
|
TOTEM.abilityAbbreviations = {
|
|
"str": "TOTEM.AbilityStrAbbr",
|
|
"dex": "TOTEM.AbilityDexAbbr",
|
|
"con": "TOTEM.AbilityConAbbr",
|
|
"int": "TOTEM.AbilityIntAbbr",
|
|
"wis": "TOTEM.AbilityWisAbbr",
|
|
"cha": "TOTEM.AbilityChaAbbr"
|
|
}; |