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