Ejemplo n.º 1
0
 public Turtle()
 {
     health = 120;
     currentHealth = health;
     strength = 15;
     armor = 5;
     drop = new StrengthPot ();
 }
Ejemplo n.º 2
0
 public Ogre()
 {
     health = 150;
     currentHealth = health;
     strength = 10;
     armor = 5;
     drop = new StrengthPot ();
 }