Пример #1
0
 public static bool IsQuestItem(this ItemID type)
 {
     ItemIDHelpers.Initialize();
     return(ItemIDHelpers.s_QuestItem.Contains(type));
 }
Пример #2
0
 public static bool IsFallen(this ItemID type)
 {
     ItemIDHelpers.Initialize();
     return(ItemIDHelpers.s_Fallen.Contains(type));
 }
Пример #3
0
 public static bool IsTree(this ItemID type)
 {
     ItemIDHelpers.Initialize();
     return(ItemIDHelpers.s_Tree.Contains(type));
 }
Пример #4
0
 public static bool IsLeaf(this ItemID type)
 {
     ItemIDHelpers.Initialize();
     return(ItemIDHelpers.s_Leaf.Contains(type));
 }
Пример #5
0
 public static bool IsPlant(this ItemID type)
 {
     ItemIDHelpers.Initialize();
     return(ItemIDHelpers.s_Plants.Contains(type));
 }