Ejemplo n.º 1
0
 public static void EmptyPopulatedSlots(this ArmorSet armorSet)
 {
     armorSet.GetArmor(ArmorType.Head)?.EmptyPopulatedSlots();
     armorSet.GetArmor(ArmorType.Torso)?.EmptyPopulatedSlots();
     armorSet.GetArmor(ArmorType.Arm)?.EmptyPopulatedSlots();
     armorSet.GetArmor(ArmorType.Waist)?.EmptyPopulatedSlots();
     armorSet.GetArmor(ArmorType.Leg)?.EmptyPopulatedSlots();
     armorSet.EmptyWeaponSlots();
     armorSet.EmptyCharmSlots();
     armorSet.EmptyTotals();
 }
Ejemplo n.º 2
0
 public LegArmor(ArmorSet set, ArmorType armorType = ArmorType.Leg) : base(set, armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }
Ejemplo n.º 3
0
 public WaistArmor(ArmorSet set, ArmorType armorType = ArmorType.Waist) : base(set, armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }
Ejemplo n.º 4
0
 public Armor(ArmorSet set, ArmorType armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }
Ejemplo n.º 5
0
 public ArmArmor(ArmorSet set, ArmorType armorType = ArmorType.Arm) : base(set, armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }
Ejemplo n.º 6
0
 public TorsoArmor(ArmorSet set, ArmorType armorType = ArmorType.Torso) : base(set, armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }
Ejemplo n.º 7
0
 public HeadArmor(ArmorSet set, ArmorType armorType = ArmorType.Head) : base(set, armorType)
 {
     ArmorType        = armorType;
     OriginalArmorSet = set;
 }