Example #1
0
 public Elf(ArmorDecoratorBase armor)
 {
     this.Health = armor.GetHealth() + 100;
     Console.WriteLine(this.GetType().Name.ToString() + " Easy clothed " + armor.HealthDisplay());
     acceleratesBehavior    = new StrongAccelerate();
     base.TreatEstablished += this.IncreaseHealth;
 }
Example #2
0
 public Orc()
 {
     this.Health            = 100;
     acceleratesBehavior    = new StrongAccelerate();
     base.TreatEstablished += this.IncreaseHealth;
 }