Hill Dwarf

The hill and mountain dwarves are essentially small genetic differences within the dwarven bloodline, but at this point in Azgaarnoth's history they are essentially meaningless as cultural differentiators--hill dwarves often work in the hills as part of their guild/clan, and mountain dwarves are often found in mountains for similar reasons. In fact, it's more common to see them in cities than in hills or mountains. Most non-dwarves can't even tell the difference between them.

  • Ability Score Increase. Your Wisdom score increases by 1.

  • Dwarven Toughness. Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.

name = 'Hill'
description = "***Subrace: Hill Dwarf.*** The hill and mountain dwarves are essentially small genetic differences within the dwarven bloodline, but at this point in Azgaarnoth's history they are essentially meaningless as cultural differentiators--hill dwarves often work in the hills as part of their guild/clan, and mountain dwarves are often found in mountains for similar reasons. In fact, it's more common to see them in cities than in hills or mountains. Most non-dwarves can't even tell the difference between them."

def level0(npc): 
    npc.WIS += 1

def level1(npc): npc.hitpoints += 1
def level2(npc): npc.hitpoints += 1
def level3(npc): npc.hitpoints += 1
def level4(npc): npc.hitpoints += 1
def level5(npc): npc.hitpoints += 1
def level6(npc): npc.hitpoints += 1
def level7(npc): npc.hitpoints += 1
def level8(npc): npc.hitpoints += 1
def level9(npc): npc.hitpoints += 1
def level10(npc): npc.hitpoints += 1
def level11(npc): npc.hitpoints += 1
def level12(npc): npc.hitpoints += 1
def level13(npc): npc.hitpoints += 1
def level14(npc): npc.hitpoints += 1
def level15(npc): npc.hitpoints += 1
def level16(npc): npc.hitpoints += 1
def level17(npc): npc.hitpoints += 1
def level18(npc): npc.hitpoints += 1
def level19(npc): npc.hitpoints += 1
def level20(npc): npc.hitpoints += 1