diff --git a/src/main/java/com/comandante/creeper/Items/ItemType.java b/src/main/java/com/comandante/creeper/Items/ItemType.java
index 3d122bd6934048b3f1854f526e6127df336c0370..a2dbb4ddc92e688d1cb56f2ecfe0eadb46a0b2fa 100755
--- a/src/main/java/com/comandante/creeper/Items/ItemType.java
+++ b/src/main/java/com/comandante/creeper/Items/ItemType.java
@@ -1169,8 +1169,118 @@ public enum ItemType {
             60,
             false,
             Rarity.LEGENDARY,
-            4000000, Sets.<TimeTracker.TimeOfDay>newHashSet());
+            4000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
 
+    JADE_FLASK(106, Arrays.asList("jade flask", "jade", "flask", "j", "f"),
+            Color.BOLD_ON + Color.GREEN + "jade" + Color.RESET + Color.WHITE + " flask" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.GREEN + "jade" + Color.RESET + Color.WHITE + " flask" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.GREEN + "jade" + Color.RESET + Color.WHITE + " flask" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    HYCIANTHIS_FLUTE(107, Arrays.asList("hycianthis flute", "flute", "h", "f", "hycianthis"),
+            Color.BOLD_ON + Color.GREEN + "hycianthis" + Color.RESET + Color.RED + " flute" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.GREEN + "hycianthis" + Color.RESET + Color.RED + " flute" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.GREEN + "hycianthis" + Color.RESET + Color.RED + " flute" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    CURSED_MIRROR(108, Arrays.asList("cursed", "mirror", "m", "c", "cursed mirror"),
+            Color.BOLD_ON + Color.RED + "cursed" + Color.RESET + Color.CYAN + " mirror" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.RED + "cursed" + Color.RESET + Color.CYAN + " mirror" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.RED + "cursed" + Color.RESET + Color.CYAN + " mirror" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    IVORY_DART(109, Arrays.asList("ivory dart", "dart", "i", "d", "ivory"),
+            Color.BOLD_ON + Color.WHITE + "ivory" + Color.RESET + Color.MAGENTA + " dart" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.WHITE + "ivory" + Color.RESET + Color.MAGENTA + " dart" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.WHITE + "ivory" + Color.RESET + Color.MAGENTA + " dart" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    VULCERIUM_ICEAXE(110, Arrays.asList("vulcerium ice axe", "ice axe", "axe", "v", "ice", "a"),
+            Color.BOLD_ON + Color.RED + "vulcerium" + Color.RESET + Color.CYAN + " ice " + Color.RESET + "axe",
+            "a " + Color.BOLD_ON + Color.RED + "vulcerium" + Color.RESET + Color.CYAN + " ice " + Color.RESET + "axe is on the ground.",
+            "a " + Color.BOLD_ON + Color.RED + "vulcerium" + Color.RESET + Color.CYAN + " ice " + Color.RESET + "axe",
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    HELGIS_POTION(111, Arrays.asList("Helgi's potion", "potion", "Helgi's", "H", "p"),
+            Color.BOLD_ON + Color.RED + "Helgi's" + Color.RESET + Color.MAGENTA + Color.BOLD_ON + " potion" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.RED + "Helgi's" + Color.RESET + Color.MAGENTA + Color.BOLD_ON + " potion" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.RED + "Helgi's" + Color.RESET + Color.MAGENTA + Color.BOLD_ON + " potion" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    CELESTIAL_DIAL(112, Arrays.asList("celestial dial", "dial", "c", "d", "celestial"),
+            Color.BOLD_ON + Color.CYAN + "celestial" + Color.RESET + Color.WHITE + Color.BOLD_ON + " dial" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.CYAN + "celestial" + Color.RESET + Color.WHITE + Color.BOLD_ON + " dial" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.CYAN + "celestial" + Color.RESET + Color.WHITE + Color.BOLD_ON + " dial" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    THORS_LANTERN(113, Arrays.asList("Thor's lantern", "lantern", "Thor's", "T", "l"),
+            Color.BOLD_ON + Color.RED + "Thor's" + Color.RESET + Color.YELLOW + " lantern" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.RED + "Thor's" + Color.RESET + Color.YELLOW + " lantern" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.RED + "Thor's" + Color.RESET + Color.YELLOW + " lantern" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    ORNATE_CROWN(114, Arrays.asList("ornate crown", "crown", "o", "c", "ornate"),
+            Color.BOLD_ON + Color.MAGENTA + "ornate" + Color.RESET + Color.YELLOW + " crown" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.MAGENTA + "ornate" + Color.RESET + Color.YELLOW + " crown" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.MAGENTA + "ornate" + Color.RESET + Color.YELLOW + " crown" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()),
+            
+    PYAMITE_COMPASS(115, Arrays.asList("pyamite compass", "compass", "p", "c", "pyamite"),
+            Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " compass" + Color.RESET,
+            "a " + Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " compass" + Color.RESET + " is on the ground.",
+            "a " + Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " compass" + Color.RESET,
+            false,
+            0,
+            60,
+            false,
+            Rarity.LEGENDARY,
+            8000000, Sets.<TimeTracker.TimeOfDay>newHashSet());
+            
     private final Integer itemTypeCode;
     private final List<String> itemTriggers;
     private final String restingName;