Esempio n. 1
0
 public static bool IsFootwear(this ItemSpec item)
 {
     return(item.CanBeWornOnLocation(ArmourWearLocation.Feet));
 }
Esempio n. 2
0
 public static bool IsBodywear(this ItemSpec item)
 {
     return(item.CanBeWornOnLocation(ArmourWearLocation.Body));
 }
Esempio n. 3
0
 public static bool IsLegwear(this ItemSpec item)
 {
     return(item.CanBeWornOnLocation(ArmourWearLocation.Legs));
 }
Esempio n. 4
0
 public static bool IsHeadwear(this ItemSpec item)
 {
     return(item.CanBeWornOnLocation(ArmourWearLocation.Head));
 }