You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
634 B
JavaScript
24 lines
634 B
JavaScript
export const WANDERHOME = {};
|
|
|
|
/**
|
|
* The set of Ability Scores used within the system.
|
|
* @type {Object}
|
|
*/
|
|
WANDERHOME.abilities = {
|
|
str: 'WANDERHOME.Ability.Str.long',
|
|
dex: 'WANDERHOME.Ability.Dex.long',
|
|
con: 'WANDERHOME.Ability.Con.long',
|
|
int: 'WANDERHOME.Ability.Int.long',
|
|
wis: 'WANDERHOME.Ability.Wis.long',
|
|
cha: 'WANDERHOME.Ability.Cha.long',
|
|
};
|
|
|
|
WANDERHOME.abilityAbbreviations = {
|
|
str: 'WANDERHOME.Ability.Str.abbr',
|
|
dex: 'WANDERHOME.Ability.Dex.abbr',
|
|
con: 'WANDERHOME.Ability.Con.abbr',
|
|
int: 'WANDERHOME.Ability.Int.abbr',
|
|
wis: 'WANDERHOME.Ability.Wis.abbr',
|
|
cha: 'WANDERHOME.Ability.Cha.abbr',
|
|
};
|