Ejemplo n.º 1
0
 protected virtual void RemoveItemEffects(Item item)
 {
     this.HealthPoints -= item.HealthEffect;
     this.DefensePoints -= item.DefenseEffect;
     if (this.HealthPoints < 0)
     {
         this.HealthPoints = 1;
     }
 }
Ejemplo n.º 2
0
 public abstract void RemoveFromInventory(Item item);
Ejemplo n.º 3
0
 protected virtual void ApplyItemEffects(Item item)
 {
     this.HealthPoints += item.HealthEffect;
     this.DefensePoints += item.DefenseEffect;
 }
Ejemplo n.º 4
0
 public abstract void AddToInventory(Item item);
Ejemplo n.º 5
0
 protected override void RemoveItemEffects(Item item)
 {
     base.RemoveItemEffects(item);
     this.AttackPoints -= item.AttackEffect;
 }
Ejemplo n.º 6
0
 protected override void ApplyItemEffects(Item item)
 {
     base.ApplyItemEffects(item);
     this.AttackPoints += item.AttackEffect;
 }
Ejemplo n.º 7
0
 public override void RemoveFromInventory(Item item)
 {
     this.Inventory.Remove(item);
     this.RemoveItemEffects(item);
 }
Ejemplo n.º 8
0
 public override void AddToInventory(Item item)
 {
     this.Inventory.Add(item);
     this.ApplyItemEffects(item);
 }