Beispiel #1
0
 public Elf(string name) : base(name)
 {
     Health = 4;
     Attacks.Add("Elven special", 2.5);
     Defends.Add("Potion", 2.5);
     Defends.Add("Confusion", 3);
 }
Beispiel #2
0
 public Wizard(string name) : base(name)
 {
     Health = 3;
     Attacks.Add("Wizard special", 2.5);
     Defends.Add("Summon", 2);
     Defends.Add("wand wave", 1.5);
 }