From fba0288e0a33306b7da2abc8ff4528b17d4d2218 Mon Sep 17 00:00:00 2001 From: BLAZECRAFT <n3vs@yahoo.com> Date: Thu, 27 Aug 2015 21:36:53 -0400 Subject: [PATCH] Update ItemType.java --- .../comandante/creeper/Items/ItemType.java | 66 +++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/src/main/java/com/comandante/creeper/Items/ItemType.java b/src/main/java/com/comandante/creeper/Items/ItemType.java index 2ee534ba..162168f1 100755 --- a/src/main/java/com/comandante/creeper/Items/ItemType.java +++ b/src/main/java/com/comandante/creeper/Items/ItemType.java @@ -1290,6 +1290,72 @@ public enum ItemType { 60, false, Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + IRON_LOCKPICKING_SET(117, Arrays.asList("iron lockpicking set", "lockpicking set", "set", "lockpicking", "i", "l", "s"), + Color.WHITE + "iron" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set", + "an " + Color.WHITE + "iron" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set is on the ground.", + "an " + Color.WHITE + "iron" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set", + false, + 0, + 60, + false, + Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + PYAMITE_LOCKPICKING_SET(118, Arrays.asList("pyamite lockpicking set", "lockpicking set", "set", "lockpicking", "p", "l", "s"), + Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set", + "a " + Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set is on the ground.", + "a " + Color.BOLD_ON + Color.GREEN + "pyamite" + Color.RESET + Color.CYAN + " lockpicking " + Color.RESET + "set", + false, + 0, + 60, + false, + Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + SPOOL_OF_CLIMBING_ROPE(119, Arrays.asList("spool of climbing rope", "spool", "climbing rope", "rope", "s", "r"), + Color.WHITE + "spool of" + Color.RESET + Color.CYAN + " climbing " + Color.RESET + "rope", + "a " + Color.WHITE + "spool of" + Color.RESET + Color.CYAN + " climbing " + Color.RESET + "rope is on the ground.", + "a " + Color.WHITE + "spool of" + Color.RESET + Color.CYAN + " climbing " + Color.RESET + "rope", + false, + 0, + 60, + false, + Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + BLACK_CLOAK(120, Arrays.asList("black cloak", "black", "cloak", "b", "c"), + Color.BOLD_ON + Color.BLACK + "black" + Color.RESET + Color.CYAN + " cloak" + Color.RESET, + "a " + Color.BOLD_ON + Color.BLACK + "black" + Color.RESET + Color.CYAN + " cloak " + Color.RESET + "is on the ground.", + "a " + Color.BOLD_ON + Color.BLACK + "black" + Color.RESET + Color.CYAN + " cloak " + Color.RESET, + false, + 0, + 60, + false, + Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + SMELTING_CRUCIBLE(121, Arrays.asList("smelting crucible", "crucible", "smelting", "s", "c"), + Color.WHITE + "smelting" + Color.RESET + Color.CYAN + " crucible " + Color.RESET, + "a " + Color.WHITE + "smelting" + Color.RESET + Color.CYAN + " crucible " + Color.RESET + "is on the ground.", + "a " + Color.WHITE + "smelting" + Color.RESET + Color.CYAN + " crucible " + Color.RESET, + false, + 0, + 60, + false, + Rarity.LEGENDARY, + 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()), + + LEATHER_SHOES(122, Arrays.asList("leather shoes", "leather", "shoes", "l", "s"), + Color.WHITE + "leather" + Color.RESET + Color.CYAN + " shoes" + Color.RESET, + "some " + Color.WHITE + "leather" + Color.RESET + Color.CYAN + " shoes " + Color.RESET + "are on the ground.", + "some " + Color.WHITE + "leather" + Color.RESET + Color.CYAN + " shoes " + Color.RESET, + false, + 0, + 60, + false, + Rarity.LEGENDARY, 8000000, Sets.<TimeTracker.TimeOfDay>newHashSet()); private final Integer itemTypeCode; -- GitLab