boilerplate

This commit is contained in:
François-Xavier Guillois
2023-04-19 17:10:01 +02:00
parent 479024b536
commit fa8e32f4dd
46 changed files with 11418 additions and 80 deletions
+23
View File
@@ -0,0 +1,23 @@
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"
};