Example #1
0
 public static bool IsArmor(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Armor"));
 }
Example #2
0
 public static bool IsOffhand(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Offhand"));
 }
Example #3
0
 public static bool IsDye(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Dye"));
 }
Example #4
0
 public static bool IsWeapon(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Weapon"));
 }
Example #5
0
 public static bool IsJournalOrScroll(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Scroll") || ItemGroup.IsSubType(itemType, "Book"));
 }
Example #6
0
 public static bool IsRuneOrJewel(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Gem") || ItemGroup.IsSubType(itemType, "SpellRune"));
 }
Example #7
0
 public static bool IsAccessory(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Jewelry"));
 }
Example #8
0
 public static bool IsGold(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "Gold"));
 }
Example #9
0
 public static bool IsHealthGlobe(ItemTypeTable itemType)
 {
     return(ItemGroup.IsSubType(itemType, "HealthGlyph"));
 }