Compare commits

...

1 Commits

Author SHA1 Message Date
silverwizard de2a877d65 Added Artisan's tools to all dwarves and +1 HP to Hill dwarves 4 years ago
  1. 2
      character.c

@ -144,9 +144,11 @@ void genRace(){
addLanguage(DWARVISH);
stats[CON]+=2;
subrace = arc4random_uniform(2);
strlcat(otherprofs, "Artisan Tools, ", sizeof(otherprofs));
if(subrace == 0){
race = "Hill Dwarf";
stats[WIS]+=1;
hp = hp + 1;
}else{
race = "Mountain Dwarf";
stats[STR]+=2;

Loading…
Cancel
Save