Ejemplo n.º 1
0
        public Armour(Armour a, Item i)
        {
            this.Item = i;
            this.Part = a.Part;
            this.Mult = a.Mult;

            this.Stand = a.Stand;
            this.Attack = a.Attack;
        }
Ejemplo n.º 2
0
 public void setLegs(Armour a)
 {
     Legs = (a != null) ? a : Armour.NONE;
 }
Ejemplo n.º 3
0
 public void setHead(Armour a)
 {
     Head = (a != null) ? a : Armour.NONE;
 }
Ejemplo n.º 4
0
 public void setBody(Armour a)
 {
     Body = (a != null) ? a : Armour.NONE;
 }