getRaceAttributs = (race) => {
let attributs = [];
switch(race) {
case 'goblin':
attributs = [7, 12, Object({strength:0, decterity:0,constitution:0, intelligence:0, wisdom:0, charism:0})];
break;
case 'dwarf':
attributs = [7, 12, Object({strength:0, decterity:0,constitution:0, intelligence:0, wisdom:0, charism:0})];
break;
case 'elf':
attributs = [7, 14, Object({strength:0, decterity:0,constitution:0, intelligence:0, wisdom:0, charism:0})];
break;
default:
attributs = [7, 14, Object({strength:0, decterity:0,constitution:0, intelligence:0, wisdom:0, charism:0})];
}
return attributs
}