Beispiel #1
0
 public void HalfingReturnBad2Str()
 {
     Halfing race = new Halfing();
     int actual = race.StrRacialMod;
     int expected = -2;
     Assert.AreEqual(expected, actual);
 }
 public void Init()
 {
     Halfing halfing = new Halfing();
     Halfing = halfing;
 }
Beispiel #3
0
 public void CreatePlayerRace(string race)
 {
     switch (race)
     {
         case "Elf":
             Race = new Elf();
             break;
         case "Human":
             Race = new Human();
             break;
         case "Dwarf":
             Race = new Dwarf();
             break;
         case "Gnome":
             Race = new Gnome();
             break;
         case "Half-Elf":
             Race = new HalfElf();
             break;
         case "Half-Orc":
             Race = new HalfOrc();
             break;
         case "Halfing":
             Race = new Halfing();
             break;
     }
 }