From de2a877d65e48472d59663834abfb4122f37d18f Mon Sep 17 00:00:00 2001 From: silverwizard Date: Mon, 23 Dec 2019 22:22:29 -0500 Subject: [PATCH] Added Artisan's tools to all dwarves and +1 HP to Hill dwarves --- character.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/character.c b/character.c index 6eb1525..d6e63fe 100644 --- a/character.c +++ b/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;