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