24 lines
649 B
JavaScript
24 lines
649 B
JavaScript
export const SHADOWRUN_6 = {};
|
|
|
|
/**
|
|
* The set of Ability Scores used within the system.
|
|
* @type {Object}
|
|
*/
|
|
SHADOWRUN_6.abilities = {
|
|
str: 'SHADOWRUN_6.Ability.Str.long',
|
|
dex: 'SHADOWRUN_6.Ability.Dex.long',
|
|
con: 'SHADOWRUN_6.Ability.Con.long',
|
|
int: 'SHADOWRUN_6.Ability.Int.long',
|
|
wis: 'SHADOWRUN_6.Ability.Wis.long',
|
|
cha: 'SHADOWRUN_6.Ability.Cha.long',
|
|
};
|
|
|
|
SHADOWRUN_6.abilityAbbreviations = {
|
|
str: 'SHADOWRUN_6.Ability.Str.abbr',
|
|
dex: 'SHADOWRUN_6.Ability.Dex.abbr',
|
|
con: 'SHADOWRUN_6.Ability.Con.abbr',
|
|
int: 'SHADOWRUN_6.Ability.Int.abbr',
|
|
wis: 'SHADOWRUN_6.Ability.Wis.abbr',
|
|
cha: 'SHADOWRUN_6.Ability.Cha.abbr',
|
|
};
|