Added rashemi to races

This commit is contained in:
Jack
2020-02-02 13:53:06 -05:00
parent 82f3d2588a
commit 4131691da1
+6 -2
View File
@@ -138,7 +138,7 @@ class StoutHalfling(_Halfling):
# Humans
class Human(Race):
class _Human(Race):
name = "Human"
size = "medium"
speed = 30
@@ -151,6 +151,10 @@ class Human(Race):
languages = ("Common", '[choose one]')
class Rashemi(_Human):
name = 'Rashemi'
# Dragonborn
class Dragonborn(Race):
name = "Dragonborn"
@@ -416,7 +420,7 @@ class WaterGenasi(_Genasi):
PHB_races = [HillDwarf, MountainDwarf, HighElf, WoodElf, DarkElf,
LightfootHalfling, StoutHalfling, Human, Dragonborn,
LightfootHalfling, StoutHalfling, Rashemi, Dragonborn,
ForestGnome, RockGnome, HalfElf, HalfOrc, Tiefling]
VOLO_races = [ProtectorAasimar, ScourgeAasimar, FallenAasimar,