diff options
author | Roman / Linnea Gräf <nea@nea.moe> | 2023-06-23 11:38:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-23 19:38:42 +1000 |
commit | 7c9262c3ec4cd17ca18bc464d8adf10d36f592e4 (patch) | |
tree | 67718e67176589f5970bc90c3e4db2fa3c51a2ee | |
parent | 38a2c295289dae2cf5de3e6c40694a76156cb54a (diff) | |
download | NotEnoughUpdates-REPO-7c9262c3ec4cd17ca18bc464d8adf10d36f592e4.tar.gz NotEnoughUpdates-REPO-7c9262c3ec4cd17ca18bc464d8adf10d36f592e4.tar.bz2 NotEnoughUpdates-REPO-7c9262c3ec4cd17ca18bc464d8adf10d36f592e4.zip |
Rift (#944)
Co-authored-by: jani270 <jani270@gmx.de>
293 files changed, 7508 insertions, 177 deletions
@@ -1,3 +1,4 @@ .vscode/* -#!.vscode/settings.json +!.vscode/settings.json +!.vscode/json.code-snippets .idea
\ No newline at end of file diff --git a/.vscode/json.code-snippets b/.vscode/json.code-snippets new file mode 100644 index 00000000..cd008738 --- /dev/null +++ b/.vscode/json.code-snippets @@ -0,0 +1,20 @@ +{ + "Player Skull Item": { + "body": [ + "{", + " \"itemid\": \"minecraft:skull\",", + " \"displayname\": \"$1\",", + " \"nbttag\": \"{HideFlags:254,SkullOwner:{Id:\\\"00000000-0000-0000-0000-000000000000\\\",Properties:{textures:[0:{Value:\\\"$2\\\"}]}}}\",", + " \"damage\": 3,", + " \"lore\": [\"\"],", + " \"internalname\": \"$TM_FILENAME_BASE\",", + " \"crafttext\": \"\",", + " \"clickcommand\": \"\",", + " \"modver\": \"2.1.1-PRE\",", + " \"infoType\": \"\"", + "}" + ], + "prefix": "playerhead", + "description": "Generate a player head with minimal data.\nMake sure to reload through NEU after creation to fix nbttag." + } +}
\ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..9b5ac1e7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,16 @@ +{ + "json.schemas": [ + { + "fileMatch": [ + "/mobs/*.json" + ], + "url": "http://notenoughupdates.org/schemas/mobs.schema.json" + }, + { + "fileMatch": [ + "/items/*.json" + ], + "url": "http://notenoughupdates.org/schemas/items.schema.json" + } + ] +}
\ No newline at end of file diff --git a/constants/enchants.json b/constants/enchants.json index 13c57923..301cd818 100644 --- a/constants/enchants.json +++ b/constants/enchants.json @@ -217,7 +217,8 @@ "ferocious_mana", "hecatomb", "ultimate_habanero_tactics", - "ultimate_bobbin_time" + "ultimate_bobbin_time", + "transylvanian" ], "CHESTPLATE": [ "protection", @@ -240,7 +241,8 @@ "mana_vampire", "ferocious_mana", "ultimate_habanero_tactics", - "ultimate_bobbin_time" + "ultimate_bobbin_time", + "reflection" ], "LEGGINGS": [ "protection", @@ -395,7 +397,8 @@ "NECKLACE": [ "cayenne", "prosperity", - "green_thumb" + "green_thumb", + "quantum" ], "BRACELET": [ "cayenne", @@ -1320,6 +1323,22 @@ 30, 100 ], + "quantum": [ + 50, + 50, + 100 + ], + "reflection": [ + 20, + 40, + 60, + 80, + 100 + ], + "transylvanian": [ + 100, + 150 + ], "one_for_all": [ 50 ], diff --git a/constants/fairy_souls.json b/constants/fairy_souls.json index 7f44e5eb..b88f6053 100644 --- a/constants/fairy_souls.json +++ b/constants/fairy_souls.json @@ -1,6 +1,6 @@ { "//": "If you would like to contribute to this list please ensure that you: take the coordinates of the soul its self and not where you stand.", - "Max Souls": 240, + "Max Souls": 242, "hub": [ "138,66,129", "169,60,129", diff --git a/constants/islands.json b/constants/islands.json index d3527275..fa357c31 100644 --- a/constants/islands.json +++ b/constants/islands.json @@ -14,11 +14,19 @@ "dungeon": "Dungeon", "dungeon_hub": "Dungeon Hub", "crystal_hollows": "Crystal Hollows", - "garden": "The Garden" + "garden": "The Garden", + "rift": "Rift" }, "teleporters": [ { "from": "hub", + "to": "rift", + "x": 42, + "y": 123, + "z": 72 + }, + { + "from": "hub", "to": "foraging_1", "x": -221, "y": 75, @@ -305,6 +313,13 @@ "x": 91, "y": 75, "z": 173 + }, + { + "warp": "wizard", + "mode": "hub", + "x": 42, + "y": 122, + "z": 69 } ] }
\ No newline at end of file diff --git a/constants/leveling.json b/constants/leveling.json index 460dc438..99edcbb8 100644 --- a/constants/leveling.json +++ b/constants/leveling.json @@ -158,6 +158,13 @@ 100000, 400000, 1000000 + ], + "vampire": [ + 20, + 75, + 240, + 840, + 2400 ] }, "slayer_boss_xp": [ @@ -172,14 +179,16 @@ "Tarantula Broodfather": 4, "Sven Packmaster": 4, "Voidgloom Seraph": 4, - "Inferno Demonlord": 4 + "Inferno Demonlord": 4, + "Riftstalker Bloodfiend": 5 }, "slayer_to_highest_tier": { "zombie": 5, "spider": 4, "wolf": 4, "enderman": 4, - "blaze": 4 + "blaze": 4, + "vampire": 5 }, "slayer_tier_colors": [ "§a", diff --git a/constants/misc.json b/constants/misc.json index c6a5e15a..16ae66e4 100644 --- a/constants/misc.json +++ b/constants/misc.json @@ -77,7 +77,8 @@ "dungeon_hub": "Dungeon Hub", "crystal_hollows": "Crystal Hollows", "instanced": "Kuudra's End", - "garden": "The Garden" + "garden": "The Garden", + "rift": "Rift" }, "talisman_upgrades": { "WOLF_TALISMAN": [ @@ -1340,6 +1341,13 @@ "PARTY_HAT_CRAB_RED_ANIMATED", "PARTY_HAT_CRAB_AQUA_ANIMATED", "PARTY_HAT_CRAB_YELLOW_ANIMATED" + ], + "BLOOD_DONOR_TALISMAN": [ + "BLOOD_DONOR_RING", + "BLOOD_DONOR_ARTIFACT" + ], + "BLOOD_DONOR_RING": [ + "BLOOD_DONOR_ARTIFACT" ] }, "special_bois": [ @@ -1639,7 +1647,8 @@ "HARD_STONE_GENERATOR": 12, "RED_SAND_GENERATOR": 12, "MYCELIUM_GENERATOR": 12, - "INFERNO_GENERATOR": 11 + "INFERNO_GENERATOR": 11, + "VAMPIRE_GENERATOR": 11 }, "credits": { "itemid": "writable_book", diff --git a/constants/parents.json b/constants/parents.json index 67150c84..1f686b3d 100644 --- a/constants/parents.json +++ b/constants/parents.json @@ -969,7 +969,8 @@ "OCELOT;1", "OCELOT;0" ], - "GUARDIAN;4": [ + "GUARDIAN;5": [ + "GUARDIAN;4", "GUARDIAN;3", "GUARDIAN;2", "GUARDIAN;1", @@ -1069,7 +1070,8 @@ "SKELETON;1", "SKELETON;0" ], - "SPIDER;4": [ + "SPIDER;5": [ + "SPIDER;4", "SPIDER;3", "SPIDER;2", "SPIDER;1", @@ -1120,7 +1122,8 @@ "SPIRIT;4": [ "SPIRIT;3" ], - "TARANTULA;4": [ + "TARANTULA;5": [ + "TARANTULA;4", "TARANTULA;3" ], "TURTLE;4": [ @@ -3206,5 +3209,50 @@ ], "DANTE_TALISMAN": [ "DANTE_RING" + ], + "CRUX_TALISMAN_6": [ + "CRUX_TALISMAN_5", + "CRUX_TALISMAN_4", + "CRUX_TALISMAN_3", + "CRUX_TALISMAN_2", + "CRUX_TALISMAN_1" + ], + "AGARIMOO_ARTIFACT": [ + "AGARIMOO_RING", + "AGARIMOO_TALISMAN" + ], + "LUSH_ARTIFACT": [ + "LUSH_RING", + "LUSH_TALISMAN" + ], + "REFLECTION;1": [ + "REFLECTION;2", + "REFLECTION;3", + "REFLECTION;4", + "REFLECTION;5" + ], + "QUANTUM;3": [ + "QUANTUM;4", + "QUANTUM;5" + ], + "BLOOD_DONOR_ARTIFACT": [ + "BLOOD_DONOR_RING", + "BLOOD_DONOR_TALISMAN" + ], + "VAMPIRE_GENERATOR_1": [ + "VAMPIRE_GENERATOR_2", + "VAMPIRE_GENERATOR_3", + "VAMPIRE_GENERATOR_4", + "VAMPIRE_GENERATOR_5", + "VAMPIRE_GENERATOR_6", + "VAMPIRE_GENERATOR_7", + "VAMPIRE_GENERATOR_8", + "VAMPIRE_GENERATOR_9", + "VAMPIRE_GENERATOR_10", + "VAMPIRE_GENERATOR_11", + "VAMPIRE_GENERATOR_12" + ], + "TRANSYLVANIAN;4": [ + "TRANSYLVANIAN;5" ] }
\ No newline at end of file diff --git a/constants/petnums.json b/constants/petnums.json index 16a3e00f..1092d7fc 100644 --- a/constants/petnums.json +++ b/constants/petnums.json @@ -1963,6 +1963,32 @@ "INTELLIGENCE": 100.0 } } + }, + "MYTHIC": { + "1": { + "otherNums": [ + 1.2, + 0.3, + 0.3, + 0.1 + ], + "statNums": { + "DEFENSE": 0.0, + "INTELLIGENCE": 1.0 + } + }, + "100": { + "otherNums": [ + 120, + 30, + 30, + 7.0 + ], + "statNums": { + "DEFENSE": 50.0, + "INTELLIGENCE": 100.0 + } + } } }, "GOLDEN_DRAGON": { @@ -3468,6 +3494,28 @@ } } }, + "RIFT_FERRET": { + "EPIC": { + "1": { + "otherNums": [ + 10 + ], + "statNums": { + "SPEED": 0.5, + "INTELLIGENCE": 0.02 + } + }, + "100": { + "otherNums": [ + 10 + ], + "statNums": { + "SPEED": 5, + "INTELLIGENCE": 2 + } + } + } + }, "ROCK": { "COMMON": { "1": { @@ -4126,6 +4174,30 @@ "STRENGTH": 10.0 } } + }, + "MYTHIC": { + "1": { + "otherNums": [ + 0.1, + 0.4, + 0.3 + ], + "statNums": { + "CRIT_CHANCE": 0.1, + "STRENGTH": 0.1 + } + }, + "100": { + "otherNums": [ + 10, + 40, + 30 + ], + "statNums": { + "CRIT_CHANCE": 10.0, + "STRENGTH": 10.0 + } + } } }, "SPIRIT": { @@ -4518,7 +4590,7 @@ "otherNums": [ 0.3, 0.5, - 0.5 + 1 ], "statNums": { "CRIT_CHANCE": 0.0, @@ -4530,7 +4602,33 @@ "otherNums": [ 30, 50, - 50 + 1.5 + ], + "statNums": { + "CRIT_CHANCE": 10.0, + "CRIT_DAMAGE": 30.0, + "STRENGTH": 10.0 + } + } + }, + "MYTHIC": { + "1": { + "otherNums": [ + 0.3, + 0.5, + 1 + ], + "statNums": { + "CRIT_CHANCE": 0.0, + "CRIT_DAMAGE": 0.0, + "STRENGTH": 0.0 + } + }, + "100": { + "otherNums": [ + 30, + 50, + 1.5 ], "statNums": { "CRIT_CHANCE": 10.0, diff --git a/constants/reforgestones.json b/constants/reforgestones.json index 0edd3f96..593f5797 100644 --- a/constants/reforgestones.json +++ b/constants/reforgestones.json @@ -907,6 +907,61 @@ } } }, + "FULL_JAW_FANGING_KIT": { + "internalName": "FULL_JAW_FANGING_KIT", + "reforgeName": "Fanged", + "reforgeType": "blacksmith/reforge_stone", + "itemTypes": "SWORD", + "requiredRarities": [ + "COMMON", + "UNCOMMON", + "RARE", + "EPIC", + "LEGENDARY", + "MYTHIC" + ], + "reforgeCosts": { + "COMMON": 10000, + "UNCOMMON": 12500, + "RARE": 25000, + "EPIC": 50000, + "LEGENDARY": 100000, + "MYTHIC": 250000 + }, + "reforgeAbility": "Every 7th melee hit on an enemy deals +100% damage.", + "reforgeStats": { + "COMMON": { + "strength": 30, + "bonus_attack_speed": 2, + "crit_chance": 3 + }, + "UNCOMMON": { + "strength": 35, + "bonus_attack_speed": 3, + "crit_chance": 4 + }, + "RARE": { + "strength": 40, + "bonus_attack_speed": 4, + "crit_chance": 5 + }, + "EPIC": { + "strength": 50, + "bonus_attack_speed": 6, + "crit_chance": 7 + }, + "LEGENDARY": { + "strength": 60, + "bonus_attack_speed": 9, + "crit_chance": 8 + }, + "MYTHIC": { + "strength": 65, + "bonus_attack_speed": 10, + "crit_chance": 10 + } + } + }, "GIANT_TOOTH": { "internalName": "GIANT_TOOTH", "reforgeName": "Giant", @@ -1935,6 +1990,67 @@ } } }, + "PRESUMED_GALLON_OF_RED_PAINT": { + "internalName": "PRESUMED_GALLON_OF_RED_PAINT", + "reforgeName": "Blood-Soaked", + "reforgeType": "blacksmith/reforge_stone", + "itemTypes": "EQUIPMENT", + "requiredRarities": [ + "COMMON", + "UNCOMMON", + "RARE", + "EPIC", + "LEGENDARY", + "MYTHIC" + ], + "reforgeCosts": { + "COMMON": 7500, + "UNCOMMON": 15000, + "RARE": 30000, + "EPIC": 75000, + "LEGENDARY": 150000, + "MYTHIC": 300000, + "DIVINE": 400000 + }, + "reforgeAbility": "Heal 1.15x more from Vampirism and Lifesteal.", + "reforgeStats": { + "COMMON": { + "health": 6, + "defense": 1, + "vitality": 1 + }, + "UNCOMMON": { + "health": 8, + "defense": 2, + "vitality": 1 + }, + "RARE": { + "health": 8, + "defense": 3, + "vitality": 2 + }, + "EPIC": { + "health": 9, + "defense": 4, + "vitality": 2 + }, + "LEGENDARY": { + "health": 10, + "defense": 5, + "vitality": 3 + }, + "MYTHIC": { + "health": 12, + "defense": 6, + "vitality": 3 + }, + "DIVINE": { + "health": 14, + "defense": 7, + "vitality": 4 + } + } + }, "PURE_MITHRIL": { "internalName": "PURE_MITHRIL", "reforgeName": "Mithraic", diff --git a/constants/rngscore.json b/constants/rngscore.json index 34cdfadb..edd1295e 100644 --- a/constants/rngscore.json +++ b/constants/rngscore.json @@ -391,6 +391,16 @@ "WILSON_ENGINEERING_PLANS": 578941, "SUBZERO_INVERTER": 578941, "POTION": 17700 + }, + "Riftstalker Bloodfiend": { + "ENCHANTED_BOOK_BUNDLE_QUANTUM": 3750, + "SOULTWIST_RUNE;1": 4250, + "BUBBA_BLISTER": 5000, + "CHOCOLATE_CHIP": 5000, + "GUARDIAN_LUCKY_BLOCK": 8000, + "MCGRUBBER_BURGER": 41000, + "UNFANGED_VAMPIRE_PART": 41000, + "ENCHANTED_BOOK_BUNDLE_THE_ONE": 27833 } } }
\ No newline at end of file diff --git a/items/AATROX_BADPHONE.json b/items/AATROX_BADPHONE.json new file mode 100644 index 00000000..078868b4 --- /dev/null +++ b/items/AATROX_BADPHONE.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Maddox Badphone", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d14d5e12-9e98-3a67-a701-be84468a74c0\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3Njk2Njc2NDgwNywKICAicHJvZmlsZUlkIiA6ICI2ZTIyNjYxZmNlMTI0MGE0YWE4OTA0NDA0NTFiYjBiNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJncnZleWFyZCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lMDQwMTI0ZjIyYTg0Mjk2NmJlYjU1YzllNjk4ZmUzYTJjOGI3MTMxOTBjMjZlMDNkMzdmNDA3NGJkNTAzMDMxIgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§6Ability: Wasssaaaaa? §e§lRIGHT CLICK\",1:\"§7Instantly calls §5Maddox§7!\",2:\"\",3:\"§8§l* §8Co-op Soulbound §8§l*\",4:\"§9§lRARE\"],Name:\"§9Maddox Badphone\"},ExtraAttributes:{id:\"AATROX_BADPHONE\"}}", + "damage": 3, + "lore": [ + "§6Ability: Wasssaaaaa? §e§lRIGHT CLICK", + "§7Instantly calls §5Maddox§7!", + "", + "§8§l* §8Co-op Soulbound §8§l*", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "COVEN_SEAL:2", + "A3": "COVEN_SEAL:2", + "B1": "", + "B2": "", + "B3": "AATROX_BATPHONE:1", + "C1": "", + "C2": "COVEN_SEAL:2", + "C3": "COVEN_SEAL:2" + }, + "internalname": "AATROX_BADPHONE", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Maddox_Badphone" + ] +}
\ No newline at end of file diff --git a/items/AATROX_BATPHONE.json b/items/AATROX_BATPHONE.json index 75150045..daeb3379 100644 --- a/items/AATROX_BATPHONE.json +++ b/items/AATROX_BATPHONE.json @@ -1,14 +1,16 @@ { "itemid": "minecraft:skull", "displayname": "§aMaddox Batphone", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"cf814560-079b-3f43-98ce-d440ba66f2b3\",Properties:{textures:[0:{Value:\"eyJ0aW1lc3RhbXAiOjE1Njc5OTg1NDE4MDYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzMzZkN2NjOTVjYmY2Njg5ZjVlOGM5NTQyOTRlYzhkMWVmYzQ5NGE0MDMxMzI1YmI0MjdiYzgxZDU2YTQ4NGQifX19\"}]}},display:{Lore:[0:\"§6Ability: Whassup? §e§lRIGHT CLICK\",1:\"§7Lets you call §5Maddox§7, when\",2:\"§7he\u0027s not busy.\",3:\"\",4:\"§4☠ §cRequires §5Wolf Slayer 3§c.\",5:\"§a§lUNCOMMON\"],Name:\"§aMaddox Batphone\"},ExtraAttributes:{id:\"AATROX_BATPHONE\"}}", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"cf814560-079b-3f43-98ce-d440ba66f2b3\",Properties:{textures:[0:{Value:\"eyJ0aW1lc3RhbXAiOjE1Njc5OTg1NDE4MDYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzkzMzZkN2NjOTVjYmY2Njg5ZjVlOGM5NTQyOTRlYzhkMWVmYzQ5NGE0MDMxMzI1YmI0MjdiYzgxZDU2YTQ4NGQifX19\"}]}},display:{Lore:[0:\"§6Ability: Whassup? §e§lRIGHT CLICK\",1:\"§7Lets you call §5Maddox§7, when\",2:\"§7he\u0027s not busy.\",3:\"\",4:\"§7§4☠ §cRequires §5Wolf Slayer 3§c.\",5:\"§8§l* §8Co-op Soulbound §8§l*\",6:\"§5§kX§5 Rift-Transferable §kX\",7:\"§a§lUNCOMMON\"],Name:\"§aMaddox Batphone\"},ExtraAttributes:{id:\"AATROX_BATPHONE\"}}", "damage": 3, "lore": [ "§6Ability: Whassup? §e§lRIGHT CLICK", "§7Lets you call §5Maddox§7, when", "§7he\u0027s not busy.", "", - "§4☠ §cRequires §5Wolf Slayer 3§c.", + "§7§4☠ §cRequires §5Wolf Slayer 3§c.", + "§8§l* §8Co-op Soulbound §8§l*", + "§5§kX§5 Rift-Transferable §kX", "§a§lUNCOMMON" ], "recipe": { diff --git a/items/AGARICUS_CAP.json b/items/AGARICUS_CAP.json new file mode 100644 index 00000000..996960de --- /dev/null +++ b/items/AGARICUS_CAP.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§fAgaricus Cap", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"43e884b2-633e-3c87-b601-62d18c11683f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGNlMGEyMzBhY2Q2NDM2YWJjODZmMTNiZTcyZTliYTk0NTM3ZWU1NGYwMzI1YmI4NjI1NzdhMWUwNjJmMzcifX19\"}]}},display:{Lore:[0:\"§f§lCOMMON\"],Name:\"§fAgaricus Cap\"},ExtraAttributes:{id:\"AGARICUS_CAP\"}}", + "damage": 3, + "lore": [ + "§f§lCOMMON" + ], + "internalname": "AGARICUS_CAP", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agaricus_Cap", + "https://wiki.hypixel.net/Agaricus_Cap" + ] +}
\ No newline at end of file diff --git a/items/AGARICUS_CAP_BUNCH.json b/items/AGARICUS_CAP_BUNCH.json new file mode 100644 index 00000000..db852390 --- /dev/null +++ b/items/AGARICUS_CAP_BUNCH.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aAgaricus Cap Bunch", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"a987444b-d160-32a7-adfd-fcb693e6023a\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY2NjAwMjAyNDYwNSwKICAicHJvZmlsZUlkIiA6ICI1MTY4ZjZlMjIyM2E0Y2FjYjdiN2QyZjYyZWMxZGFhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZWZfbm90X2FzaCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9hZmI5YjkzYjRjMzczN2EwMTBkMDI0NjViOTkwZDE0NTYyN2Y4ZTYzZTc3OTU2ZTBkZjRiYTYxZTE1N2E0MjljIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7It\u0027s one nether of a cap!\",1:\"\",2:\"§a§lUNCOMMON\"],Name:\"§aAgaricus Cap Bunch\"},ExtraAttributes:{id:\"AGARICUS_CAP_BUNCH\"}}", + "damage": 3, + "lore": [ + "§7It\u0027s one nether of a cap!", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "AGARICUS_CAP:4", + "A3": "", + "B1": "AGARICUS_CAP:4", + "B2": "AGARICUS_CAP:4", + "B3": "AGARICUS_CAP:4", + "C1": "", + "C2": "AGARICUS_CAP:4", + "C3": "" + }, + "internalname": "AGARICUS_CAP_BUNCH", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Agaricus Cap I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agaricus_Cap_Bunch", + "https://wiki.hypixel.net/Agaricus_Cap_Bunch" + ] +}
\ No newline at end of file diff --git a/items/AGARICUS_CAP_CAP.json b/items/AGARICUS_CAP_CAP.json new file mode 100644 index 00000000..0dd467db --- /dev/null +++ b/items/AGARICUS_CAP_CAP.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Agaricus Cap Cap", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"bf74d86d-f520-312a-9d46-5758f76b4ade\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY2NjAwMjI2MjUyMywKICAicHJvZmlsZUlkIiA6ICJmZTE0M2FhZTVmNGE0YTdiYjM4MzcxM2U1Mjg0YmIxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJKZWZveHk0IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzE4NDQ2ZDQ5ZTJmZTQ1MzM3Yzg1ODc1NzQzN2YwNDg2OTlhMGRmMzUxMDUxODdhMTk3NDEyMmVhZTliZjdlY2MiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+50s\",1:\"§7Intelligence: §a+15\",2:\"\",3:\"§6Ability: Helmets All The Way Down\",4:\"§7Regain §a+2ф §7when killing a\",5:\"§7monster.\",6:\"\",7:\"§9§lRARE HELMET\"],Name:\"§9Agaricus Cap Cap\"},ExtraAttributes:{id:\"AGARICUS_CAP_CAP\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+50s", + "§7Intelligence: §a+15", + "", + "§6Ability: Helmets All The Way Down", + "§7Regain §a+2ф §7when killing a", + "§7monster.", + "", + "§9§lRARE HELMET" + ], + "recipe": { + "A1": "AGARICUS_CAP:10", + "A2": "AGARICUS_CAP:10", + "A3": "AGARICUS_CAP:10", + "B1": "AGARICUS_CAP:10", + "B2": "NOT_DEADGEHOG_MASK:1", + "B3": "AGARICUS_CAP:10", + "C1": "", + "C2": "", + "C3": "" + }, + "internalname": "AGARICUS_CAP_CAP", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Agaricus Cap III", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agaricus_Cap_Cap", + "https://wiki.hypixel.net/Agaricus_Cap_Cap" + ] +}
\ No newline at end of file diff --git a/items/AGARICUS_CHUM_CAP.json b/items/AGARICUS_CHUM_CAP.json new file mode 100644 index 00000000..2b930eec --- /dev/null +++ b/items/AGARICUS_CHUM_CAP.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aAgaricus Chumcap", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"fe1d2ad1-c0a6-3db9-941e-8b9fb1f5d404\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3OTU4NjkxMjQzNywKICAicHJvZmlsZUlkIiA6ICI3ODI2YmJkOTJjZWI0ODVlYmIyZTY3M2Q4Y2E1ZGQxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJEZW1hcmt5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2RlYzEzMjYzZGNkZWIzOTc5MjU2Mjc5MTdkZmZhNzE4MDQ0OTg4NjEzYzhjYTg5MDNjYjg0NDE1YzUyMzdjZGIiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§eRight-click to view recipes!\",1:\"\",2:\"§5§kX§5 Rift-Transferable §kX\",3:\"§a§lUNCOMMON\"],Name:\"§aAgaricus Chumcap\"},ExtraAttributes:{id:\"AGARICUS_CHUM_CAP\"}}", + "damage": 3, + "lore": [ + "§eRight-click to view recipes!", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "AGARICUS_CAP:1", + "A2": "AGARICUS_CAP:1", + "A3": "AGARICUS_CAP:1", + "B1": "AGARICUS_CAP:1", + "B2": "RIFT_BUCKET:1", + "B3": "AGARICUS_CAP:1", + "C1": "AGARICUS_CAP:1", + "C2": "AGARICUS_CAP:1", + "C3": "AGARICUS_CAP:1", + "count": 8 + }, + "internalname": "AGARICUS_CHUM_CAP", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Agaricus Cap IV", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agaricus_Chumcap", + "https://wiki.hypixel.net/Agaricus_Chumcap" + ] +}
\ No newline at end of file diff --git a/items/AGARICUS_SOUP.json b/items/AGARICUS_SOUP.json new file mode 100644 index 00000000..2dbc79ec --- /dev/null +++ b/items/AGARICUS_SOUP.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:rabbit_stew", + "displayname": "§aAgaricus Soup", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Consume to gain §fSpeed I §7for §a60s§7.\",1:\"§8Cooldown: §a60s\",2:\"\",3:\"§eRight-click to consume!\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aAgaricus Soup\"},ExtraAttributes:{id:\"AGARICUS_SOUP\"}}", + "damage": 0, + "lore": [ + "§7Consume to gain §fSpeed I §7for §a60s§7.", + "§8Cooldown: §a60s", + "", + "§eRight-click to consume!", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "AGARICUS_CAP:2", + "A3": "", + "B1": "", + "B2": "AGARICUS_CAP:2", + "B3": "", + "C1": "", + "C2": "RIFT_BUCKET:1", + "C3": "" + }, + "internalname": "AGARICUS_SOUP", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Agaricus Cap II", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agaricus_Soup", + "https://wiki.hypixel.net/Agaricus_Soup" + ] +}
\ No newline at end of file diff --git a/items/AGARIMOO_ARTIFACT.json b/items/AGARIMOO_ARTIFACT.json new file mode 100644 index 00000000..e7e96778 --- /dev/null +++ b/items/AGARIMOO_ARTIFACT.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Agarimoo Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f17c8808-513f-30b9-8e06-e4ba70d0fcb9\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2YzMTMwNDY4YWM0ODBhNDI3ZGIxM2FkMTNlOGNhODUyNmI1MzhhYjdhZDdkNjlmYzk5NTJmM2M1M2FlYThkMSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Farming Wisdom: §a+1\",1:\"§7Fishing Wisdom: §a+1\",2:\"§7Fishing Speed: §a+3\",3:\"\",4:\"§9§lRARE ACCESSORY\"],Name:\"§9Agarimoo Artifact\"},ExtraAttributes:{id:\"AGARIMOO_ARTIFACT\"}}", + "damage": 3, + "lore": [ + "§7Farming Wisdom: §a+1", + "§7Fishing Wisdom: §a+1", + "§7Fishing Speed: §a+3", + "", + "§9§lRARE ACCESSORY" + ], + "recipe": { + "A1": "AGARIMOO_TONGUE:64", + "A2": "AGARIMOO_TONGUE:64", + "A3": "AGARIMOO_TONGUE:64", + "B1": "AGARIMOO_TONGUE:64", + "B2": "AGARIMOO_RING:1", + "B3": "AGARIMOO_TONGUE:64", + "C1": "AGARIMOO_TONGUE:64", + "C2": "AGARIMOO_TONGUE:64", + "C3": "AGARIMOO_TONGUE:64" + }, + "internalname": "AGARIMOO_ARTIFACT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agarimoo_Artifact", + "https://wiki.hypixel.net/Agarimoo_Artifact" + ] +}
\ No newline at end of file diff --git a/items/AGARIMOO_RING.json b/items/AGARIMOO_RING.json new file mode 100644 index 00000000..ee4bc382 --- /dev/null +++ b/items/AGARIMOO_RING.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aAgarimoo Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"6df8413b-10a8-37f5-a95d-37cb71087540\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDNlYmYzOGI0YTcwOGViMDA3NDVkMWZiODdhNTNjYjgxYTdhZjZjYzE3OGQ5YTJjMTExNmMyY2JjZmY5NGZlYSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Fishing Wisdom: §a+1\",1:\"§7Fishing Speed: §a+2\",2:\"\",3:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aAgarimoo Ring\"},ExtraAttributes:{id:\"AGARIMOO_RING\"}}", + "damage": 3, + "lore": [ + "§7Fishing Wisdom: §a+1", + "§7Fishing Speed: §a+2", + "", + "§a§lUNCOMMON ACCESSORY" + ], + "recipe": { + "A1": "AGARIMOO_TONGUE:12", + "A2": "AGARIMOO_TONGUE:12", + "A3": "AGARIMOO_TONGUE:12", + "B1": "AGARIMOO_TONGUE:12", + "B2": "AGARIMOO_TALISMAN:1", + "B3": "AGARIMOO_TONGUE:12", + "C1": "AGARIMOO_TONGUE:12", + "C2": "AGARIMOO_TONGUE:12", + "C3": "AGARIMOO_TONGUE:12" + }, + "internalname": "AGARIMOO_RING", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agarimoo_Ring", + "https://wiki.hypixel.net/Agarimoo_Ring" + ] +}
\ No newline at end of file diff --git a/items/AGARIMOO_TALISMAN.json b/items/AGARIMOO_TALISMAN.json new file mode 100644 index 00000000..7b63a9a3 --- /dev/null +++ b/items/AGARIMOO_TALISMAN.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§fAgarimoo Talisman", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"10a84652-afdd-3f05-812b-5b1a6d9a3050\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2Q1OTdmNzdjZGUzMmM5YWM5YjA2ZjgyZmNmN2M5Y2I1MDBmYWNjMTRiZmYxNjYyMjJiMjRiZTM5OTYyZjBlZiJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Fishing Speed: §a+1\",1:\"\",2:\"§f§lCOMMON ACCESSORY\"],Name:\"§fAgarimoo Talisman\"},ExtraAttributes:{id:\"AGARIMOO_TALISMAN\"}}", + "damage": 3, + "lore": [ + "§7Fishing Speed: §a+1", + "", + "§f§lCOMMON ACCESSORY" + ], + "recipe": { + "A1": "AGARIMOO_TONGUE:1", + "A2": "AGARIMOO_TONGUE:1", + "A3": "AGARIMOO_TONGUE:1", + "B1": "AGARIMOO_TONGUE:1", + "B2": "AGARIMOO_TONGUE:1", + "B3": "AGARIMOO_TONGUE:1", + "C1": "AGARIMOO_TONGUE:1", + "C2": "AGARIMOO_TONGUE:1", + "C3": "AGARIMOO_TONGUE:1" + }, + "internalname": "AGARIMOO_TALISMAN", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agarimoo_Talisman", + "https://wiki.hypixel.net/Agarimoo_Talisman" + ] +}
\ No newline at end of file diff --git a/items/AGARIMOO_TONGUE.json b/items/AGARIMOO_TONGUE.json new file mode 100644 index 00000000..e7729f28 --- /dev/null +++ b/items/AGARIMOO_TONGUE.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:mutton", + "displayname": "§9Agarimoo Tongue", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Agarimoos have five stomachs and\",1:\"§73 tongues. For this specific\",2:\"§7Agarimoo, past tense is more\",3:\"§7accurate.\",4:\"\",5:\"§eRight-click to view recipes!\",6:\"\",7:\"§9§lRARE\"],Name:\"§9Agarimoo Tongue\"},ExtraAttributes:{id:\"AGARIMOO_TONGUE\"}}", + "damage": 0, + "lore": [ + "§7Agarimoos have five stomachs and", + "§73 tongues. For this specific", + "§7Agarimoo, past tense is more", + "§7accurate.", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "AGARIMOO_TONGUE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Agarimoo_Tongue", + "https://wiki.hypixel.net/Agarimoo_Tongue" + ] +}
\ No newline at end of file diff --git a/items/ALABASTER_RIFT_NPC.json b/items/ALABASTER_RIFT_NPC.json new file mode 100644 index 00000000..1cafca75 --- /dev/null +++ b/items/ALABASTER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dAlabaster (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"83ebf2fb-5d26-29ed-be1f-45a014875eac\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UzMzkzODM4Zjk0MjY1NDhmODYwZWI1M2I5Mjg3M2RlNmVlMDA3YzhhYWJlZWUxMGRhZjYzY2ViMTdlODc5YmUifX19\"}]},Name:\"83ebf2fb-5d26-29ed-be1f-45a014875eac\"},display:{Lore:[0:\"\"],Name:\"§dAlabaster (Rift NPC)\"},ExtraAttributes:{id:\"ALABASTER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ALABASTER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -130, + "y": 74, + "z": 167, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ALATAR_RIFT_NPC.json b/items/ALATAR_RIFT_NPC.json new file mode 100644 index 00000000..c7d9f4c9 --- /dev/null +++ b/items/ALATAR_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dAlatar (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"b57dfda0-a189-2e62-a3c2-211ce88461ca\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JkNmFiNjk5ZjZhYjNiNTAwODEzNTdiMjM3ZTg5NDY4OTFlYTVmNGViMzczZTI2NmM3ZWU0ZjJiYTJmYTEwZGEifX19\"}]},Name:\"b57dfda0-a189-2e62-a3c2-211ce88461ca\"},display:{Lore:[0:\"\"],Name:\"§dAlatar (Rift NPC)\"},ExtraAttributes:{id:\"ALATAR_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ALATAR_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -47, + "y": 117, + "z": 70, + "island": "rift" +}
\ No newline at end of file diff --git a/items/ANTI_BITE_SCARF.json b/items/ANTI_BITE_SCARF.json new file mode 100644 index 00000000..f9e7097e --- /dev/null +++ b/items/ANTI_BITE_SCARF.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:carpet", + "displayname": "§6Anti-Bite Scarf", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+100s\",1:\"§7Hearts: §a+1\",2:\"§7Intelligence: §a+20\",3:\"\",4:\"§6Ability: Helmets All The Way Around\",5:\"§7Regain §a+2ф §7when killing a\",6:\"§7monster.\",7:\"\",8:\"§7If you would take §c❤ §7damage,\",9:\"§7take §c0.3❤ §7less.\",10:\"\",11:\"§6§lLEGENDARY HELMET\"],Name:\"§6Anti-Bite Scarf\"},ExtraAttributes:{id:\"ANTI_BITE_SCARF\"}}", + "damage": 14, + "lore": [ + "§7Rift Time: §a+100s", + "§7Hearts: §a+1", + "§7Intelligence: §a+20", + "", + "§6Ability: Helmets All The Way Around", + "§7Regain §a+2ф §7when killing a", + "§7monster.", + "", + "§7If you would take §c❤ §7damage,", + "§7take §c0.3❤ §7less.", + "", + "§6§lLEGENDARY HELMET" + ], + "internalname": "ANTI_BITE_SCARF", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Anti-Bite_Scarf", + "https://wiki.hypixel.net/Anti-Bite_Scarf" + ] +}
\ No newline at end of file diff --git a/items/ANTI_BITE_SCARF_2.json b/items/ANTI_BITE_SCARF_2.json new file mode 100644 index 00000000..7eadffb8 --- /dev/null +++ b/items/ANTI_BITE_SCARF_2.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:carpet", + "displayname": "§dAnti-Bite Scarf", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+110s\",1:\"§7Hearts: §a+1\",2:\"§7Intelligence: §a+22\",3:\"\",4:\"§6Ability: Helmets All The Way Around\",5:\"§7Regain §a+2ф §7when killing a\",6:\"§7monster.\",7:\"\",8:\"§7If you would take §c❤ §7damage,\",9:\"§7take §c0.5❤ §7less.\",10:\"\",11:\"§eHold and left-click to pick color!\",12:\"\",13:\"§d§lMYTHIC HELMET\"],Name:\"§dAnti-Bite Scarf\"},ExtraAttributes:{id:\"ANTI_BITE_SCARF_2\"}}", + "damage": 14, + "lore": [ + "§7Rift Time: §a+110s", + "§7Hearts: §a+1", + "§7Intelligence: §a+22", + "", + "§6Ability: Helmets All The Way Around", + "§7Regain §a+2ф §7when killing a", + "§7monster.", + "", + "§7If you would take §c❤ §7damage,", + "§7take §c0.5❤ §7less.", + "", + "§eHold and left-click to pick color!", + "", + "§d§lMYTHIC HELMET" + ], + "internalname": "ANTI_BITE_SCARF_2", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Anti-Bite_Scarf", + "https://wiki.hypixel.net/Anti-Bite_Scarf" + ] +}
\ No newline at end of file diff --git a/items/ANTI_MORPH_POTION.json b/items/ANTI_MORPH_POTION.json new file mode 100644 index 00000000..afb71d76 --- /dev/null +++ b/items/ANTI_MORPH_POTION.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Anti-Morph Potion", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"872dcc95-ccdd-3af8-b1c2-fe39757d83a7\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWFkZDMwOWVjZWZkYjFkZjE4ZWVmNmY4ZDQwODNiNDdiM2VlMjI3Mjg2YzBmMzc1ZjQ1MzY5ZDgzZmIzMGJkIn19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Right-click to throw the potion\",1:\"§7at §2ugly §7people.\",2:\"\",3:\"§5§lEPIC\"],Name:\"§5Anti-Morph Potion\"},ExtraAttributes:{id:\"ANTI_MORPH_POTION\"}}", + "damage": 3, + "lore": [ + "§7Right-click to throw the potion", + "§7at §2ugly §7people.", + "", + "§5§lEPIC" + ], + "internalname": "ANTI_MORPH_POTION", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Anti-Morph_Potion", + "https://wiki.hypixel.net/Anti-Morph_Potion" + ] +}
\ No newline at end of file diff --git a/items/ARGOFAY_BUGHUNTER_RIFT_NPC.json b/items/ARGOFAY_BUGHUNTER_RIFT_NPC.json new file mode 100644 index 00000000..9d695670 --- /dev/null +++ b/items/ARGOFAY_BUGHUNTER_RIFT_NPC.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Bughunter (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"8d2f936e-ad90-2b99-b4a5-9ae8a59c2d6f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZjYmU3MGMyZDFjNjhmZmFiZDJmYmJiZTNmZmYxNzQ2ZjQyMjI5Mzc4NjU2MDQ3NmVjZGZlYzVhYTI5M2Q3ZmEifX19\"}]},Name:\"8d2f936e-ad90-2b99-b4a5-9ae8a59c2d6f\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Bughunter (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_BUGHUNTER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_BUGHUNTER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -85, + "y": 109, + "z": 97, + "island": "rift", + "crafttext": "", + "infoType": "", + "recipes": [ + { + "type": "npc_shop", + "result": "SILKRIDER_SAFETY_BELT", + "cost": [ + "BOTTLED_ODONATA:8" + ] + } + ] +}
\ No newline at end of file diff --git a/items/ARGOFAY_BUGSHOPPER_RIFT_NPC.json b/items/ARGOFAY_BUGSHOPPER_RIFT_NPC.json new file mode 100644 index 00000000..4237cec3 --- /dev/null +++ b/items/ARGOFAY_BUGSHOPPER_RIFT_NPC.json @@ -0,0 +1,43 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Bugshopper (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"6b6329e4-89fe-227b-8bd1-4ba0f11bd999\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MxZmQ4YjczNGFmMTYwZGNhMzVhODhmMTVkYWVlYjk0ZTA5Y2Q0NmYxMjRiNzE2ZDBjM2JkYjY3MWUwMmJiMjYifX19\"}]},Name:\"6b6329e4-89fe-227b-8bd1-4ba0f11bd999\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Bugshopper (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_BUGSHOPPER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_BUGSHOPPER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -95, + "y": 111, + "z": 95, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "LARVA_HOOK:1.0", + "cost": [ + "SHAME_CRUX:6.0" + ] + }, + { + "type": "npc_shop", + "result": "EMPTY_ODONATA_BOTTLE:1.0", + "cost": [ + "SHAME_CRUX:2.0", + "SKYBLOCK_MOTE:400.0" + ] + }, + { + "type": "npc_shop", + "result": "HARMONIOUS_SURGERY_TOOLKIT:1.0", + "cost": [ + "BOTTLED_ODONATA:1.0", + "SKYBLOCK_MOTE:2000.0" + ] + } + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_SERIALBATHER_RIFT_NPC.json b/items/ARGOFAY_SERIALBATHER_RIFT_NPC.json new file mode 100644 index 00000000..fd92276c --- /dev/null +++ b/items/ARGOFAY_SERIALBATHER_RIFT_NPC.json @@ -0,0 +1,28 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Serialbather (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"03d93c3c-58fe-262f-9fbb-588bf4d1ca59\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MxZmQ4YjczNGFmMTYwZGNhMzVhODhmMTVkYWVlYjk0ZTA5Y2Q0NmYxMjRiNzE2ZDBjM2JkYjY3MWUwMmJiMjYifX19\"}]},Name:\"03d93c3c-58fe-262f-9fbb-588bf4d1ca59\"},display:{Lore:[0:\"§7Renowned Argofay Alchemist\"],Name:\"§dArgofay Serialbather (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_SERIALBATHER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "§7Renowned Argofay Alchemist" + ], + "internalname": "ARGOFAY_SERIALBATHER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -137, + "y": 120, + "z": 116, + "island": "rift", + "crafttext": "", + "infoType": "", + "recipes": [ + { + "type": "npc_shop", + "result": "RIFT_STABILITY_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:1.0" + ] + } + ] + +}
\ No newline at end of file diff --git a/items/ARGOFAY_SONFATHER_RIFT_NPC.json b/items/ARGOFAY_SONFATHER_RIFT_NPC.json new file mode 100644 index 00000000..eb1e9843 --- /dev/null +++ b/items/ARGOFAY_SONFATHER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Sonfather (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"171989e1-95f2-24fc-8f5f-699dd1628384\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZjYmU3MGMyZDFjNjhmZmFiZDJmYmJiZTNmZmYxNzQ2ZjQyMjI5Mzc4NjU2MDQ3NmVjZGZlYzVhYTI5M2Q3ZmEifX19\"}]},Name:\"171989e1-95f2-24fc-8f5f-699dd1628384\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Sonfather (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_SONFATHER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_SONFATHER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -96, + "y": 101, + "z": 156, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TENCOUNTER_RIFT_NPC.json b/items/ARGOFAY_TENCOUNTER_RIFT_NPC.json new file mode 100644 index 00000000..a87f85cf --- /dev/null +++ b/items/ARGOFAY_TENCOUNTER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Tencounter (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b37c8a60-8bdf-2660-a8a0-534772743d52\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2I3ZmJmZjVkZTc2MDBjMjExMWZiNmJiZTNiYWU2ZGJlYjk1ZTQ0MTEwZmFkZDAzZjFiNjkzMzU1Y2E1ZDFkMyJ9fX0\u003d\"}]},Name:\"b37c8a60-8bdf-2660-a8a0-534772743d52\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Tencounter (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TENCOUNTER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TENCOUNTER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -93, + "y": 100, + "z": 95, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_THREEBROTHER_1_RIFT_NPC.json b/items/ARGOFAY_THREEBROTHER_1_RIFT_NPC.json new file mode 100644 index 00000000..712631bb --- /dev/null +++ b/items/ARGOFAY_THREEBROTHER_1_RIFT_NPC.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Threebrother 1 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9774c54c-4766-2f25-8348-02ec8f6d0c66\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzI1ZmU1OTVlMDg1Yzc0MTUwNGQ2ZGM4ZDgyYjMzZWYyNGI5NzQ2MTc0OGU4NDUwNzBlYTQ5ZTA3OTE2NWFmZjUifX19\"}]},Name:\"9774c54c-4766-2f25-8348-02ec8f6d0c66\"},display:{Lore:[0:\"§7Talk to all three brothers to unlock\",1:\"§7the §aWyld Sword\"],Name:\"§dArgofay Threebrother 1 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_THREEBROTHER_1_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "§7Talk to all three brothers to unlock", + "§7the §aWyld Sword" + ], + "internalname": "ARGOFAY_THREEBROTHER_1_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -93, + "y": 77, + "z": 109, + "island": "rift", + "crafttext": "", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_SWORD:1.0", + "cost": [ + "SKYBLOCK_MOTE:333.0", + "SHAME_CRUX:3.0" + ] + } + ], + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Argofay_Threebrother", + "https://wiki.hypixel.net/Argofay_Threebrother" + ] +}
\ No newline at end of file diff --git a/items/ARGOFAY_THREEBROTHER_2_RIFT_NPC.json b/items/ARGOFAY_THREEBROTHER_2_RIFT_NPC.json new file mode 100644 index 00000000..54b1934c --- /dev/null +++ b/items/ARGOFAY_THREEBROTHER_2_RIFT_NPC.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Threebrother 2 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"882784b5-69dd-2f83-a429-d6ce495cdd92\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U4Nzc0Y2FiYWVjYjRhMDVhYTFhYTE2MzVmZGYzNjA3MGVlYmRkMTkyODdkNGJlMGM2ZTI1NjBhM2ZjMDk4NWIifX19\"}]},Name:\"882784b5-69dd-2f83-a429-d6ce495cdd92\"},display:{Lore:[0:\"§7Talk to all three brothers to unlock\",1:\"§7the §aWyld Sword\"],Name:\"§dArgofay Threebrother 2 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_THREEBROTHER_2_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "§7Talk to all three brothers to unlock", + "§7the §aWyld Sword" + ], + "internalname": "ARGOFAY_THREEBROTHER_2_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -98, + "y": 77, + "z": 154, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_SWORD:1.0", + "cost": [ + "SKYBLOCK_MOTE:333.0", + "SHAME_CRUX:3.0" + ] + } + ], + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Argofay_Threebrother", + "https://wiki.hypixel.net/Argofay_Threebrother" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_THREEBROTHER_3_RIFT_NPC.json b/items/ARGOFAY_THREEBROTHER_3_RIFT_NPC.json new file mode 100644 index 00000000..5eaff7a0 --- /dev/null +++ b/items/ARGOFAY_THREEBROTHER_3_RIFT_NPC.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Threebrother 3 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"e4fb07fb-58d3-20f0-8aa5-791c6ef67a05\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZjYmU3MGMyZDFjNjhmZmFiZDJmYmJiZTNmZmYxNzQ2ZjQyMjI5Mzc4NjU2MDQ3NmVjZGZlYzVhYTI5M2Q3ZmEifX19\"}]},Name:\"e4fb07fb-58d3-20f0-8aa5-791c6ef67a05\"},display:{Lore:[0:\"§7Talk to all three brothers to unlock\",1:\"§7the §aWyld Sword\"],Name:\"§dArgofay Threebrother 3 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_THREEBROTHER_3_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "§7Talk to all three brothers to unlock", + "§7the §aWyld Sword" + ], + "internalname": "ARGOFAY_THREEBROTHER_3_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -136, + "y": 76, + "z": 113, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_SWORD:1.0", + "cost": [ + "SKYBLOCK_MOTE:333.0", + "SHAME_CRUX:3.0" + ] + } + ], + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Argofay_Threebrother", + "https://wiki.hypixel.net/Argofay_Threebrother" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TRAFFICKER_1_RIFT_NPC.json b/items/ARGOFAY_TRAFFICKER_1_RIFT_NPC.json new file mode 100644 index 00000000..251a7108 --- /dev/null +++ b/items/ARGOFAY_TRAFFICKER_1_RIFT_NPC.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Trafficker 1 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"cc33f59c-50fd-255f-9ee9-4fe88f198bf1\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MxZmQ4YjczNGFmMTYwZGNhMzVhODhmMTVkYWVlYjk0ZTA5Y2Q0NmYxMjRiNzE2ZDBjM2JkYjY3MWUwMmJiMjYifX19\"}]},Name:\"cc33f59c-50fd-255f-9ee9-4fe88f198bf1\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Trafficker 1 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TRAFFICKER_1_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TRAFFICKER_1_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -92, + "y": 90, + "z": 106, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_LEGGINGS:1.0", + "cost": [ + "SKYBLOCK_MOTE:1000.0" + ] + } + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TRAFFICKER_2_RIFT_NPC.json b/items/ARGOFAY_TRAFFICKER_2_RIFT_NPC.json new file mode 100644 index 00000000..54b3aba2 --- /dev/null +++ b/items/ARGOFAY_TRAFFICKER_2_RIFT_NPC.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Trafficker 2 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"99c07e4d-4015-2859-865a-b7c5bcb75279\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U4Nzc0Y2FiYWVjYjRhMDVhYTFhYTE2MzVmZGYzNjA3MGVlYmRkMTkyODdkNGJlMGM2ZTI1NjBhM2ZjMDk4NWIifX19\"}]},Name:\"99c07e4d-4015-2859-865a-b7c5bcb75279\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Trafficker 2 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TRAFFICKER_2_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TRAFFICKER_2_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -136, + "y": 89, + "z": 114, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_BOOTS:1.0", + "cost": [ + "SKYBLOCK_MOTE:50.0" + ] + } + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TRAFFICKER_3_RIFT_NPC.json b/items/ARGOFAY_TRAFFICKER_3_RIFT_NPC.json new file mode 100644 index 00000000..8abf9415 --- /dev/null +++ b/items/ARGOFAY_TRAFFICKER_3_RIFT_NPC.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Trafficker 3 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"4c2e13e7-4e38-205b-802a-6e504ce46601\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzcwMjU4MjllYTFlYjA1MDQ5Y2MyODFkOGM1MjY2OGRiNzNiZWMwNmYxNGYwMjQ1YzhjNWU5ZjMwOGJhOTczZDQifX19\"}]},Name:\"4c2e13e7-4e38-205b-802a-6e504ce46601\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Trafficker 3 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TRAFFICKER_3_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TRAFFICKER_3_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -138, + "y": 98, + "z": 113, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_CHESTPLATE:1.0", + "cost": [ + "SKYBLOCK_MOTE:2000" + ] + } + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TRAFFICKER_4_RIFT_NPC.json b/items/ARGOFAY_TRAFFICKER_4_RIFT_NPC.json new file mode 100644 index 00000000..b7072b77 --- /dev/null +++ b/items/ARGOFAY_TRAFFICKER_4_RIFT_NPC.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Trafficker 4 (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"fb70bd23-0474-2960-97ff-b532eb80641a\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MxZmQ4YjczNGFmMTYwZGNhMzVhODhmMTVkYWVlYjk0ZTA5Y2Q0NmYxMjRiNzE2ZDBjM2JkYjY3MWUwMmJiMjYifX19\"}]},Name:\"fb70bd23-0474-2960-97ff-b532eb80641a\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Trafficker 4 (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TRAFFICKER_4_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TRAFFICKER_4_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -151, + "y": 113, + "z": 115, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "WYLD_HELMET:1.0", + "cost": [ + "SKYBLOCK_MOTE:1000" + ] + } + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARGOFAY_TRAILBLAZER_RIFT_NPC.json b/items/ARGOFAY_TRAILBLAZER_RIFT_NPC.json new file mode 100644 index 00000000..7939d232 --- /dev/null +++ b/items/ARGOFAY_TRAILBLAZER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArgofay Trailblazer (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"8cce9abc-fd91-294f-9633-605ecbd7dd8b\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ZjYmU3MGMyZDFjNjhmZmFiZDJmYmJiZTNmZmYxNzQ2ZjQyMjI5Mzc4NjU2MDQ3NmVjZGZlYzVhYTI5M2Q3ZmEifX19\"}]},Name:\"8cce9abc-fd91-294f-9633-605ecbd7dd8b\"},display:{Lore:[0:\"\"],Name:\"§dArgofay Trailblazer (Rift NPC)\"},ExtraAttributes:{id:\"ARGOFAY_TRAILBLAZER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARGOFAY_TRAILBLAZER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -97, + "y": 67, + "z": 148, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ARORA_RIFT_NPC.json b/items/ARORA_RIFT_NPC.json new file mode 100644 index 00000000..bc035df1 --- /dev/null +++ b/items/ARORA_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dArora (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"5615d858-9666-274a-8b3c-217f643a9946\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Q0N2ZkZjQ5YzI4MzFiYzI4N2Q1ZThiNGMwMzRiMDk0MzQxODU5ZGZmMDEzOGE0YzU0YTU4ZDgzODI2ZGFmMzYifX19\"}]},Name:\"5615d858-9666-274a-8b3c-217f643a9946\"},display:{Lore:[0:\"\"],Name:\"§dArora (Rift NPC)\"},ExtraAttributes:{id:\"ARORA_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ARORA_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -129, + "y": 74, + "z": 169, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ASHERA_RIFT_NPC.json b/items/ASHERA_RIFT_NPC.json new file mode 100644 index 00000000..5d06aba1 --- /dev/null +++ b/items/ASHERA_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dAshera (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"1e11936d-7490-2964-bfb0-27e1104972ca\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MyMGYyZGIzZjA0YmRjYTc2ZjYzMmQ0NmM2Mjk1NjA5Y2Q2OWY5YjFjZmRmMDUwN2I5MGFiNzM3ZGQ2MDE4OGEifX19\"}]},Name:\"1e11936d-7490-2964-bfb0-27e1104972ca\"},display:{Lore:[0:\"\"],Name:\"§dAshera (Rift NPC)\"},ExtraAttributes:{id:\"ASHERA_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ASHERA_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -131, + "y": 74, + "z": 170, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/AUTONULL_MONSTER.json b/items/AUTONULL_MONSTER.json new file mode 100644 index 00000000..edd09873 --- /dev/null +++ b/items/AUTONULL_MONSTER.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aAutonull (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"67f8f782-f3c0-4f63-89a1-e3142d003a5c\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3Njk2NDE4NDUxMywKICAicHJvZmlsZUlkIiA6ICIzZWUxYWRlMzljZDI0ZjFkOWYwODliYjA2ZTkzNTY5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSdXNvR01SIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ4NWYyMjhiNWM1MTg1YWIyZDczM2RmY2VkOGJmZDliNDE1ODkwOTE1NThmYTI0NDIxZjA4YzE1N2Y5ZGZjNzUiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§c❤ Health§8: §c130\"],Name:\"§aScribe (Monster)\"},ExtraAttributes:{id:\"SCRIBE_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c155" + ], + "internalname": "AUTONULL_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§cAutonull", + "render": "@neurepo:mobs/autonull.json", + "level": 5, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:400", + "chance": "100%" + }, + { + "id": "NULLIFIED_METAL:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/BACTE_FRAGMENT.json b/items/BACTE_FRAGMENT.json new file mode 100644 index 00000000..a608247b --- /dev/null +++ b/items/BACTE_FRAGMENT.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Bacte Fragment", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"db90737c-691f-3bca-ad67-59d91c9489f6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NjE5NTUyNDc5MywKICAicHJvZmlsZUlkIiA6ICI3ZjU2ZjY1MDI2NjY0ZmM1OWFjNWYyYjVjMTNlZGY3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJNYXhBbnRvbnkiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTU4YjA4NjFmMzM3ZWQ3NWQxZmU2YmFkZmMzNWQyZjNhYTViMjRkNDI2MDdmODFmYzg2YWJlNTM4NTU4NzBmNyIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§eRight-click to view recipes!\",1:\"\",2:\"§9§lRARE\"],Name:\"§9Bacte Fragment\"},ExtraAttributes:{id:\"BACTE_FRAGMENT\"}}", + "damage": 3, + "lore": [ + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "BACTE_FRAGMENT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bacte_Fragment", + "https://wiki.hypixel.net/Bacte_Fragment" + ] +}
\ No newline at end of file diff --git a/items/BARKING_WOLF_MONSTER.json b/items/BARKING_WOLF_MONSTER.json new file mode 100644 index 00000000..1f391878 --- /dev/null +++ b/items/BARKING_WOLF_MONSTER.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aBarking Wolf (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7e9af289-f295-3f8c-bd54-58b7667d5759\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjlkMWQzMTEzZWM0M2FjMjk2MWRkNTlmMjgxNzVmYjQ3MTg4NzNjNmM0NDhkZmNhODcyMjMxN2Q2NyJ9fX0\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c150\"],Name:\"§aBarking Wolf (Monster)\"},ExtraAttributes:{id:\"BARKING_WOLF_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c150" + ], + "internalname": "BARKING_WOLF_MONSTER", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Barking_Wolf", + "https://wiki.hypixel.net/Barking_Wolf" + ], + "crafttext": "", + "recipes": [ + { + "name": "§cBarking Wolf", + "render": "Wolf", + "level": 2, + "type": "drops", + "panorama": "hub", + "drops": [ + { + "id": "MUTED_BARK:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/BARRY_PEN.json b/items/BARRY_PEN.json new file mode 100644 index 00000000..109f176b --- /dev/null +++ b/items/BARRY_PEN.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:lever", + "displayname": "§aBarry\u0027s Montgray Pen", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Use at the old election box in\",1:\"§7the back of the HQ.\",2:\"§7\",3:\"§7§8Signature Edition - get it?\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aBarry\u0027s Montgray Pen\"},ExtraAttributes:{id:\"BARRY_PEN\"}}", + "damage": 0, + "lore": [ + "§7Use at the old election box in", + "§7the back of the HQ.", + "§7", + "§7§8Signature Edition - get it?", + "", + "§a§lUNCOMMON" + ], + "internalname": "BARRY_PEN", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Barry%27s_Montgray_Pen", + "https://wiki.hypixel.net/Barry%27s_Montgray_Pen" + ] +}
\ No newline at end of file diff --git a/items/BERBERIS_BLOWGUN.json b/items/BERBERIS_BLOWGUN.json new file mode 100644 index 00000000..ca04fe31 --- /dev/null +++ b/items/BERBERIS_BLOWGUN.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:stick", + "displayname": "§9Berberis Blowgun", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Swhooomp §e§lRIGHT CLICK\",1:\"§7Shoot an arrow. Doesn\u0027t deal\",2:\"§7damage. Except to chickens.\",3:\"§8Mana Cost: §35\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Berberis Blowgun\"},ExtraAttributes:{id:\"BERBERIS_BLOWGUN\"}}", + "damage": 0, + "lore": [ + "§6Ability: Swhooomp §e§lRIGHT CLICK", + "§7Shoot an arrow. Doesn\u0027t deal", + "§7damage. Except to chickens.", + "§8Mana Cost: §35", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "WILTED_BERBERIS:20", + "A3": "", + "B1": "", + "B2": "WILTED_BERBERIS:20", + "B3": "", + "C1": "", + "C2": "WILTED_BERBERIS:20", + "C3": "" + }, + "internalname": "BERBERIS_BLOWGUN", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Wilted Berberis II", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Berberis_Blowgun", + "https://wiki.hypixel.net/Berberis_Blowgun" + ] +}
\ No newline at end of file diff --git a/items/BERBERIS_FUEL_INJECTOR.json b/items/BERBERIS_FUEL_INJECTOR.json new file mode 100644 index 00000000..dccae796 --- /dev/null +++ b/items/BERBERIS_FUEL_INJECTOR.json @@ -0,0 +1,41 @@ +{ + "itemid": "minecraft:trapdoor", + "displayname": "§9Berberis Fuel Injector", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7This item can be used as a\",1:\"§7minion upgrade, only for\",2:\"§7§efarming §7minions.\",3:\"\",4:\"§7Increases the speed of your\",5:\"§7minion by §a15%§7.\",6:\"\",7:\"§7Your minion will occasionally\",8:\"§7generate §aLush Berberis\",9:\"§a§7items.\",10:\"\",11:\"§5§kX§5 Rift-Transferable §kX\",12:\"§9§lRARE\"],Name:\"§9Berberis Fuel Injector\"},ExtraAttributes:{id:\"BERBERIS_FUEL_INJECTOR\"}}", + "damage": 0, + "lore": [ + "§7This item can be used as a", + "§7minion upgrade, only for", + "§7§efarming §7minions.", + "", + "§7Increases the speed of your", + "§7minion by §a15%§7.", + "", + "§7Your minion will occasionally", + "§7generate §aLush Berberis", + "§a§7items.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "WILTED_BERBERIS:48", + "A3": "", + "B1": "WILTED_BERBERIS:48", + "B2": "WILTED_BERBERIS:48", + "B3": "WILTED_BERBERIS:48", + "C1": "WILTED_BERBERIS:48", + "C2": "WILTED_BERBERIS:48", + "C3": "WILTED_BERBERIS:48" + }, + "internalname": "BERBERIS_FUEL_INJECTOR", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Wilted Berberis IV", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Berberis_Fuel_Injector", + "https://wiki.hypixel.net/Berberis_Fuel_Injector" + ] +}
\ No newline at end of file diff --git a/items/BLOODBADGE.json b/items/BLOODBADGE.json new file mode 100644 index 00000000..cb874264 --- /dev/null +++ b/items/BLOODBADGE.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:dye", + "displayname": "§9Bloodbadge", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7You and killing stuff in the\",1:\"§7rift, name a more iconic duo.\",2:\"\",3:\"§9§lRARE\"],Name:\"§9Bloodbadge\"},ExtraAttributes:{id:\"BLOODBADGE\"}}", + "damage": 1, + "lore": [ + "§7You and killing stuff in the", + "§7rift, name a more iconic duo.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "COVEN_SEAL:16", + "A3": "BACTE_FRAGMENT:2", + "B1": "COVEN_SEAL:16", + "B2": "CRUXMOTION:2", + "B3": "COVEN_SEAL:16", + "C1": "LEECH_SUPREME_FRAGMENT:2", + "C2": "COVEN_SEAL:16", + "C3": "" + }, + "internalname": "BLOODBADGE", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bloodbadge", + "https://wiki.hypixel.net/Bloodbadge" + ] +}
\ No newline at end of file diff --git a/items/BLOOD_DONOR_ARTIFACT.json b/items/BLOOD_DONOR_ARTIFACT.json new file mode 100644 index 00000000..b570c9f0 --- /dev/null +++ b/items/BLOOD_DONOR_ARTIFACT.json @@ -0,0 +1,37 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Blood Donor Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"19f1385e-09a8-30c3-88be-62a85922accc\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmY3YmI5NzQ4MGMxMGZkZmViOGZhZTkzOTI5ZTVlZWI0ZjA0OTFkOGNjYTcwZWQwMGI0NWUzZmIyYjc0ZjZjNSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Health Regen: §a+3\",1:\"§7Mana Regen: §a+10%\",2:\"\",3:\"§7The human body produces 2-3\",4:\"§7million red blood cells per\",5:\"§7SECOND.\",6:\"\",7:\"§5§kX§5 Rift-Transferable §kX\",8:\"§9§lRARE ACCESSORY\"],Name:\"§9Blood Donor Artifact\"},ExtraAttributes:{id:\"BLOOD_DONOR_ARTIFACT\"}}", + "damage": 3, + "lore": [ + "§7Health Regen: §a+3", + "§7Mana Regen: §a+10%", + "", + "§7The human body produces 2-3", + "§7million red blood cells per", + "§7SECOND.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE ACCESSORY" + ], + "recipe": { + "A1": "HEMOBOMB:64", + "A2": "HEMOBOMB:64", + "A3": "HEMOBOMB:64", + "B1": "HEMOBOMB:64", + "B2": "BLOOD_DONOR_RING:1", + "B3": "HEMOBOMB:64", + "C1": "HEMOBOMB:64", + "C2": "HEMOBOMB:64", + "C3": "HEMOBOMB:64" + }, + "internalname": "BLOOD_DONOR_ARTIFACT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe IX", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Blood_Donor_Artifact", + "https://wiki.hypixel.net/Blood_Donor_Artifact" + ] +}
\ No newline at end of file diff --git a/items/BLOOD_DONOR_RING.json b/items/BLOOD_DONOR_RING.json new file mode 100644 index 00000000..a39133d1 --- /dev/null +++ b/items/BLOOD_DONOR_RING.json @@ -0,0 +1,35 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aBlood Donor Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"60470646-46ce-3cfd-a4e5-1cc25eb299bb\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTNlOTVjODNmNTRlMjY2MmYwYjBkZjI4N2FmYjVjNDhkOWNhZDJlYWM0NmNiODBjOGNiNGM0ZjQ2OGUxM2MzMyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Health Regen: §a+2\",1:\"§7Mana Regen: §a+5%\",2:\"\",3:\"§7There\u0027s like 5 liters in you.\",4:\"\",5:\"§5§kX§5 Rift-Transferable §kX\",6:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aBlood Donor Ring\"},ExtraAttributes:{id:\"BLOOD_DONOR_RING\"}}", + "damage": 3, + "lore": [ + "§7Health Regen: §a+2", + "§7Mana Regen: §a+5%", + "", + "§7There\u0027s like 5 liters in you.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON ACCESSORY" + ], + "recipe": { + "A1": "HEMOGLASS:12", + "A2": "HEMOGLASS:12", + "A3": "HEMOGLASS:12", + "B1": "HEMOGLASS:12", + "B2": "BLOOD_DONOR_TALISMAN:1", + "B3": "HEMOGLASS:12", + "C1": "HEMOGLASS:12", + "C2": "HEMOGLASS:12", + "C3": "HEMOGLASS:12" + }, + "internalname": "BLOOD_DONOR_RING", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe VI", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Blood_Donor_Ring", + "https://wiki.hypixel.net/Blood_Donor_Ring" + ] +}
\ No newline at end of file diff --git a/items/BLOOD_DONOR_TALISMAN.json b/items/BLOOD_DONOR_TALISMAN.json new file mode 100644 index 00000000..e3cfa5de --- /dev/null +++ b/items/BLOOD_DONOR_TALISMAN.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§fBlood Donor Talisman", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"69b73a26-5b12-39fd-8e9c-54a09915dec6\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjQzMjM3MWJjZWU4MWYyYzhmMzliZDg1OTI5NmFlYjIzMzMzMTQzZGE5Nzk1ZDFmOGJhYzVkMGIwYWNjIn19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Health Regen: §a+1\",1:\"\",2:\"§7Do your part bro.\",3:\"\",4:\"§5§kX§5 Rift-Transferable §kX\",5:\"§f§lCOMMON ACCESSORY\"],Name:\"§f§f§fBlood Donor Talisman\"},ExtraAttributes:{id:\"BLOOD_DONOR_TALISMAN\"}}", + "damage": 3, + "lore": [ + "§7Health Regen: §a+1", + "", + "§7Do your part bro.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§f§lCOMMON ACCESSORY" + ], + "internalname": "BLOOD_DONOR_TALISMAN", + "crafttext": "Requires: Hemovibe II", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Blood_Donor_Talisman", + "https://wiki.hypixel.net/Blood_Donor_Talisman" + ] +}
\ No newline at end of file diff --git a/items/BLUETOOTH_RING.json b/items/BLUETOOTH_RING.json new file mode 100644 index 00000000..0e4314a0 --- /dev/null +++ b/items/BLUETOOTH_RING.json @@ -0,0 +1,37 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Bluetooth Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"a738aa48-6311-3b92-b0df-7a3aa5e66c2d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWZmZmRiNGY3NWUxNjc4ZWNmYWE1ZjQyYTMyZjExZTFjYzA4Nzk0NmY0ODU3NDYzYWU2NjQ3Y2MzZTAwNzllMiJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+30s\",1:\"\",2:\"§7Monster melee attacks reduce §a1\",3:\"§a§7less §aф Rift Time §7if there\",4:\"§7is at least another player\",5:\"§7within §a50 §7blocks.\",6:\"\",7:\"§5§kX§5 Rift-Transferable §kX\",8:\"§9§lRARE ACCESSORY\"],Name:\"§9Bluetooth Ring\"},ExtraAttributes:{id:\"BLUETOOTH_RING\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+30s", + "", + "§7Monster melee attacks reduce §a1", + "§a§7less §aф Rift Time §7if there", + "§7is at least another player", + "§7within §a50 §7blocks.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE ACCESSORY" + ], + "recipe": { + "A1": "METAL_HEART:4", + "A2": "METAL_HEART:4", + "A3": "METAL_HEART:4", + "B1": "METAL_HEART:4", + "B2": "", + "B3": "METAL_HEART:4", + "C1": "METAL_HEART:4", + "C2": "METAL_HEART:4", + "C3": "METAL_HEART:4" + }, + "internalname": "BLUETOOTH_RING", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Living Metal Heart III", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bluetooth_Ring", + "https://wiki.hypixel.net/Bluetooth_Ring" + ] +}
\ No newline at end of file diff --git a/items/BOOTS_OF_THE_PACK.json b/items/BOOTS_OF_THE_PACK.json index 90427b94..c1731397 100644 --- a/items/BOOTS_OF_THE_PACK.json +++ b/items/BOOTS_OF_THE_PACK.json @@ -1,22 +1,23 @@ { "itemid": "minecraft:iron_boots", - "displayname": "§f§f§5Boots of the Pack", - "nbttag": "{overrideMeta:1b,Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+50\",1:\"§7Defense: §a+45\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense §7aswell.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearers\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players\",12:\"\",13:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",14:\"§5§lEPIC BOOTS\"],Name:\"§f§f§5Boots of the Pack\"},ExtraAttributes:{modifier:\"godly\",id:\"BOOTS_OF_THE_PACK\"},AttributeModifiers:[]}", + "displayname": "§5Boots of the Pack", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+50\",1:\"§7Defense: §a+45\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense§7.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearer\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players!\",12:\"\",13:\"§7§8This item can be reforged!\",14:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",15:\"§5§lEPIC BOOTS\"],Name:\"§5Boots of the Pack\"},ExtraAttributes:{id:\"BOOTS_OF_THE_PACK\"}}", "damage": 0, "lore": [ "§7Health: §a+50", "§7Defense: §a+45", "", "§7Gain §a+50❈ Defense §7against animals.", - "§7Gain §f+5❂ True Defense §7aswell.", + "§7Gain §f+5❂ True Defense§7.", "", "§6Full Set Bonus: §cArmor of the Pack", "§7Gain §c+35❁ Strength §7and", "§7§a+80❈ Defense §7for each", - "§7§cArmor of the Pack §7wearers", + "§7§cArmor of the Pack §7wearer", "§7within §a30 §7blocks.", - "§8Max of 3 players", + "§8Max of 3 players!", "", + "§7§8This item can be reforged!", "§4☠ §cRequires §5Wolf Slayer 6§c.", "§5§lEPIC BOOTS" ], diff --git a/items/BOTTLED_ODONATA.json b/items/BOTTLED_ODONATA.json new file mode 100644 index 00000000..b46e2e5b --- /dev/null +++ b/items/BOTTLED_ODONATA.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:experience_bottle", + "displayname": "§9Bottled Odonata", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7There\u0027s an §9Odonata §7in there!\",1:\"§7Look:\",2:\"§b+---------------+\",3:\"§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |\",4:\"§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |\",5:\"§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |\",6:\"§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |\",7:\"§b| §9█§9█§9█§e█§e█§e█§e█§9█§9█§9█§b |\",8:\"§b| §9█§9█§9█§9█§9█§9█§9█§9█§9█§9█§b |\",9:\"§b+---------------+\",10:\"\",11:\"§9§lRARE\"],Name:\"§9Bottled Odonata\"},ExtraAttributes:{id:\"BOTTLED_ODONATA\"}}", + "damage": 0, + "lore": [ + "§7There\u0027s an §9Odonata §7in there!", + "§7Look:", + "§b+---------------+", + "§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |", + "§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |", + "§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |", + "§b| §e█§9█§9█§9█§9█§9█§9█§9█§9█§e█§b |", + "§b| §9█§9█§9█§e█§e█§e█§e█§9█§9█§9█§b |", + "§b| §9█§9█§9█§9█§9█§9█§9█§9█§9█§9█§b |", + "§b+---------------+", + "", + "§9§lRARE" + ], + "internalname": "BOTTLED_ODONATA", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bottled_Odonata", + "https://wiki.hypixel.net/Bottled_Odonata" + ] +}
\ No newline at end of file diff --git a/items/BUBBA_BLISTER.json b/items/BUBBA_BLISTER.json new file mode 100644 index 00000000..a19c9f20 --- /dev/null +++ b/items/BUBBA_BLISTER.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Bubba Blister", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"44a0ab42-66df-3147-ba46-bcb92b3face9\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmNiNTcyN2I5ODZjMzZlMDc1ODIxNDhiODg2MTAyY2Y4MDcwYjBlZTNhYTM3NzFiMjQ2NDM5M2Y1ODhhODMyZCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Power Stone\",1:\"§7Combine §a9x §7of this stone at the\",2:\"§7§6Thaumaturgist §7to permanently\",3:\"§7unlock the §aBubba §7power.\",4:\"\",5:\"§7At §6§k1,000§6 Magical Power§7:\",6:\"§c+§k191❤§r §cHealth\",7:\"§a-§k364❈§r §aDefense\",8:\"§c+§k227❁§r §cStrength\",9:\"§9+§k36☣§r §9Crit Chance\",10:\"§9+§k409☠§r §9Crit Damage\",11:\"§e+§k68⚔§r §eBonus Attack Speed\",12:\"§f+§k49❂§r §fTrue Defense\",13:\"\",14:\"§7Unique Power Bonus:\",15:\"§3+2☯ Combat Wisdom\",16:\"\",17:\"§7Requires §aCombat Skill Level XXV§7!\",18:\"\",19:\"§5§kX§5 Rift-Transferable §kX\",20:\"§6§lLEGENDARY POWER STONE\"],Name:\"§6Bubba Blister\"},ExtraAttributes:{id:\"BUBBA_BLISTER\"}}", + "damage": 3, + "lore": [ + "§8Power Stone", + "§7Combine §a9x §7of this stone at the", + "§7§6Thaumaturgist §7to permanently", + "§7unlock the §aBubba §7power.", + "", + "§7At §6§k1,000§6 Magical Power§7:", + "§c+§k191❤§r §cHealth", + "§a-§k364❈§r §aDefense", + "§c+§k227❁§r §cStrength", + "§9+§k36☣§r §9Crit Chance", + "§9+§k409☠§r §9Crit Damage", + "§e+§k68⚔§r §eBonus Attack Speed", + "§f+§k49❂§r §fTrue Defense", + "", + "§7Unique Power Bonus:", + "§3+2☯ Combat Wisdom", + "", + "§7Requires §aCombat Skill Level XXV§7!", + "", + "§5§kX§5 Rift-Transferable §kX", + "§6§lLEGENDARY POWER STONE" + ], + "internalname": "BUBBA_BLISTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bubba_Blister", + "https://wiki.hypixel.net/Bubba_Blister" + ] +}
\ No newline at end of file diff --git a/items/CADUCOUS_EXTRACT.json b/items/CADUCOUS_EXTRACT.json new file mode 100644 index 00000000..0a0082da --- /dev/null +++ b/items/CADUCOUS_EXTRACT.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aCaducous Extract", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"c4305b38-9633-33d7-bf80-7d60b4c0042c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjJjNmI1N2IyZDBlNzc4YjEzOWViY2Q1MTg4MTZlNGJkMGFlYWVjZGFhMDk0NGJiM2ZlZjZmZjdlMWYzZDJmMSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Bundling what bees find\",1:\"§7attractive together in an\",2:\"§7industrial production process is\",3:\"§7definitely what nature planned.\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aCaducous Extract\"},ExtraAttributes:{id:\"CADUCOUS_EXTRACT\"}}", + "damage": 3, + "lore": [ + "§7Bundling what bees find", + "§7attractive together in an", + "§7industrial production process is", + "§7definitely what nature planned.", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "", + "A3": "", + "B1": "RIFT_BUCKET:1", + "B2": "CADUCOUS_STEM:20", + "B3": "RIFT_BUCKET:1", + "C1": "", + "C2": "RIFT_BUCKET:1", + "C3": "" + }, + "internalname": "CADUCOUS_EXTRACT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Caducous Stem III", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Caducous_Extract", + "https://wiki.hypixel.net/Caducous_Extract" + ] +}
\ No newline at end of file diff --git a/items/CADUCOUS_FEEDER.json b/items/CADUCOUS_FEEDER.json new file mode 100644 index 00000000..3b578a47 --- /dev/null +++ b/items/CADUCOUS_FEEDER.json @@ -0,0 +1,37 @@ +{ + "itemid": "minecraft:bowl", + "displayname": "§9Caducous Feeder", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Use on a pet to consume an\",1:\"§7§6Ultimate Carrot Candy §7and\",2:\"§7grant it §a1,100,000 §7pet exp.\",3:\"\",4:\"§7Has §e2 charges§7, reloading\",5:\"§7after §a20h§7.\",6:\"\",7:\"§5§kX§5 Rift-Transferable §kX\",8:\"§9§lRARE\"],Name:\"§9Caducous Feeder\"},ExtraAttributes:{id:\"CADUCOUS_FEEDER\"}}", + "damage": 0, + "lore": [ + "§7Use on a pet to consume an", + "§7§6Ultimate Carrot Candy §7and", + "§7grant it §a1,100,000 §7pet exp.", + "", + "§7Has §e2 charges§7, reloading", + "§7after §a20h§7.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "recipe": { + "A1": "CADUCOUS_STEM:64", + "A2": "", + "A3": "CADUCOUS_STEM:64", + "B1": "CADUCOUS_STEM:64", + "B2": "", + "B3": "CADUCOUS_STEM:64", + "C1": "CADUCOUS_STEM:64", + "C2": "CADUCOUS_STEM:64", + "C3": "CADUCOUS_STEM:64" + }, + "internalname": "CADUCOUS_FEEDER", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Caducous Stem IV", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Caducous_Feeder", + "https://wiki.hypixel.net/Caducous_Feeder" + ] +}
\ No newline at end of file diff --git a/items/CADUCOUS_LEGUME.json b/items/CADUCOUS_LEGUME.json new file mode 100644 index 00000000..5924d711 --- /dev/null +++ b/items/CADUCOUS_LEGUME.json @@ -0,0 +1,35 @@ +{ + "itemid": "minecraft:reeds", + "displayname": "§aCaducous Legume", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Consume to gain §a+90ф Rift Time§7.\",1:\"§7May only be used once per visit in the §dRift§7.\",2:\"§aConsumed automatically when joining!\",3:\"\",4:\"§eRight-click to consume!\",5:\"\",6:\"§a§lUNCOMMON\"],Name:\"§aCaducous Legume\"},ExtraAttributes:{id:\"CADUCOUS_LEGUME\"}}", + "damage": 0, + "lore": [ + "§7Consume to gain §a+90ф Rift Time§7.", + "§7May only be used once per visit in the §dRift§7.", + "§aConsumed automatically when joining!", + "", + "§eRight-click to consume!", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "CADUCOUS_STEM:10", + "A3": "", + "B1": "", + "B2": "CADUCOUS_STEM:10", + "B3": "", + "C1": "", + "C2": "CADUCOUS_STEM:10", + "C3": "" + }, + "internalname": "CADUCOUS_LEGUME", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Caducous Stem II", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Caducous_Legume", + "https://wiki.hypixel.net/Caducous_Legume" + ] +}
\ No newline at end of file diff --git a/items/CADUCOUS_STEM.json b/items/CADUCOUS_STEM.json new file mode 100644 index 00000000..092a969f --- /dev/null +++ b/items/CADUCOUS_STEM.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:double_plant", + "displayname": "§fCaducous Stem", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7The color and shape of flowers\",1:\"§7are a precise record of what\",2:\"§7bees find attractice.\",3:\"\",4:\"§f§lCOMMON\"],Name:\"§fCaducous Stem\"},ExtraAttributes:{id:\"CADUCOUS_STEM\"}}", + "damage": 4, + "lore": [ + "§7The color and shape of flowers", + "§7are a precise record of what", + "§7bees find attractice.", + "", + "§f§lCOMMON" + ], + "internalname": "CADUCOUS_STEM", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Caducous_Stem", + "https://wiki.hypixel.net/Caducous_Stem" + ] +}
\ No newline at end of file diff --git a/items/CADUCOUS_STEM_BUNCH.json b/items/CADUCOUS_STEM_BUNCH.json new file mode 100644 index 00000000..75db6b30 --- /dev/null +++ b/items/CADUCOUS_STEM_BUNCH.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aCaducous Stem Bunch", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"83d8068e-bd87-300a-9de7-377dd8684e06\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTc2NzM5MTU5ODY4MGI0NjVmMjEwNmI3MGUyMWVmNTE5NmRhMTRmMDg3ZDFlNzc5ZGQ2NTBkNDMyMGI2OTYyYSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Bundling what bees find\",1:\"§7attractive together in an\",2:\"§7industrial production process is\",3:\"§7definitely what nature planned.\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aCaducous Stem Bunch\"},ExtraAttributes:{id:\"CADUCOUS_STEM_BUNCH\"}}", + "damage": 3, + "lore": [ + "§7Bundling what bees find", + "§7attractive together in an", + "§7industrial production process is", + "§7definitely what nature planned.", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "CADUCOUS_STEM:4", + "A3": "", + "B1": "CADUCOUS_STEM:4", + "B2": "CADUCOUS_STEM:4", + "B3": "CADUCOUS_STEM:4", + "C1": "", + "C2": "CADUCOUS_STEM:4", + "C3": "" + }, + "internalname": "CADUCOUS_STEM_BUNCH", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Caducous Stem I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Caducous_Stem_Bunch", + "https://wiki.hypixel.net/Caducous_Stem_Bunch" + ] +}
\ No newline at end of file diff --git a/items/CHEF_RIFT_NPC.json b/items/CHEF_RIFT_NPC.json new file mode 100644 index 00000000..773f36b7 --- /dev/null +++ b/items/CHEF_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dChef (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"daea26ca-6991-2a03-babe-2b1264dde3af\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QzMDYyMDZjZTliM2JjZjg5MmM0ZjgyNTEzY2E4NzM1ODk1NzM2MjcyZjc4NjYzMWNkZjk4YjhlNzUzOWEzNzEifX19\"}]},Name:\"daea26ca-6991-2a03-babe-2b1264dde3af\"},display:{Lore:[0:\"\"],Name:\"§dChef (Rift NPC)\"},ExtraAttributes:{id:\"CHEF_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "CHEF_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -103, + "y": 73, + "z": -104, + "island": "rift" +}
\ No newline at end of file diff --git a/items/CHESTER_RIFT_NPC.json b/items/CHESTER_RIFT_NPC.json new file mode 100644 index 00000000..2d6b77bc --- /dev/null +++ b/items/CHESTER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dChester (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"20f5ce18-d5fe-2a16-b77a-32bf01686e7b\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ2OWY5ZTNiMzljNzYzMzllNTQ5YTY0ZWU1MDUxNWRiNGUyZDFmM2I1M2VkZmM5Mzg3ZDdmMzQxOTJiYjQyNTkifX19\"}]},Name:\"20f5ce18-d5fe-2a16-b77a-32bf01686e7b\"},display:{Lore:[0:\"\"],Name:\"§dChester (Rift NPC)\"},ExtraAttributes:{id:\"CHESTER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "CHESTER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -131, + "y": 74, + "z": 173, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/CHESTPLATE_OF_THE_PACK.json b/items/CHESTPLATE_OF_THE_PACK.json index 46e86938..62af7853 100644 --- a/items/CHESTPLATE_OF_THE_PACK.json +++ b/items/CHESTPLATE_OF_THE_PACK.json @@ -1,22 +1,23 @@ { "itemid": "minecraft:leather_chestplate", - "displayname": "§f§f§5Chestplate of the Pack", - "nbttag": "{overrideMeta:1b,Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+100\",1:\"§7Defense: §a+95\",2:\"\",3:\"§7Gain §a+75❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense §7aswell.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearers\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players\",12:\"\",13:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",14:\"§5§lEPIC CHESTPLATE\"],color:16711680,Name:\"§f§f§5Chestplate of the Pack\"},ExtraAttributes:{color:\"255:0:0\",modifier:\"strong\",id:\"CHESTPLATE_OF_THE_PACK\"},AttributeModifiers:[]}", + "displayname": "§5Chestplate of the Pack", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+100\",1:\"§7Defense: §a+95\",2:\"\",3:\"§7Gain §a+75❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense§7.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearer\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players!\",12:\"\",13:\"§7§8This item can be reforged!\",14:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",15:\"§5§lEPIC CHESTPLATE\"],color:16711680,Name:\"§5Chestplate of the Pack\"},ExtraAttributes:{id:\"CHESTPLATE_OF_THE_PACK\"}}", "damage": 0, "lore": [ "§7Health: §a+100", "§7Defense: §a+95", "", "§7Gain §a+75❈ Defense §7against animals.", - "§7Gain §f+5❂ True Defense §7aswell.", + "§7Gain §f+5❂ True Defense§7.", "", "§6Full Set Bonus: §cArmor of the Pack", "§7Gain §c+35❁ Strength §7and", "§7§a+80❈ Defense §7for each", - "§7§cArmor of the Pack §7wearers", + "§7§cArmor of the Pack §7wearer", "§7within §a30 §7blocks.", - "§8Max of 3 players", + "§8Max of 3 players!", "", + "§7§8This item can be reforged!", "§4☠ §cRequires §5Wolf Slayer 6§c.", "§5§lEPIC CHESTPLATE" ], diff --git a/items/CHICKEN_LEGGS.json b/items/CHICKEN_LEGGS.json new file mode 100644 index 00000000..d2f74ab5 --- /dev/null +++ b/items/CHICKEN_LEGGS.json @@ -0,0 +1,35 @@ +{ + "itemid": "minecraft:leather_leggings", + "displayname": "§9Chicken Leggs", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+35s\",1:\"\",2:\"§7§8Sometimes you pretend to be a\",3:\"§8dolphin, sometimes a chicken.\",4:\"§8Cluck cluck!\",5:\"\",6:\"§9§lRARE LEGGINGS\"],color:16773632,Name:\"§9Chicken Leggs\"},ExtraAttributes:{id:\"CHICKEN_LEGGS\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+35s", + "", + "§7§8Sometimes you pretend to be a", + "§8dolphin, sometimes a chicken.", + "§8Cluck cluck!", + "", + "§9§lRARE LEGGINGS" + ], + "internalname": "CHICKEN_LEGGS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Chicken_Leggs", + "https://wiki.hypixel.net/Chicken_Leggs" + ], + "recipe": { + "A1": "VOLT_CRUX:8", + "A2": "WYLD_LEGGINGS:1", + "A3": "VOLT_CRUX:8", + "B1": "METAPHORIC_EGG:8", + "B2": "", + "B3": "METAPHORIC_EGG:8", + "C1": "METAPHORIC_EGG:8", + "C2": "", + "C3": "METAPHORIC_EGG:8" + } +} diff --git a/items/CHOCOLATE_CHIP.json b/items/CHOCOLATE_CHIP.json new file mode 100644 index 00000000..1e4d0cf7 --- /dev/null +++ b/items/CHOCOLATE_CHIP.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:cookie", + "displayname": "§6Fang-tastic Chocolate Chip", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§8Power Stone\",1:\"§7Combine §a9x §7of this stone at the\",2:\"§7§6Thaumaturgist §7to permanently\",3:\"§7unlock the §aCrumbly §7power.\",4:\"\",5:\"§7At §61,250 Magical Power§7:\",6:\"§c+§k382❤§r §cHealth\",7:\"§b+§k205✎§r §bIntelligence\",8:\"§f+§k25❂§r §fTrue Defense\",9:\"§4+§k91♨§r §4Vitality\",10:\"§a+§k68☄§r §aMending\",11:\"\",12:\"§7Unique Power Bonus:\",13:\"§f+25✦ Speed\",14:\"\",15:\"§7Requires §aCombat Skill Level XX§7!\",16:\"\",17:\"§5§kX§5 Rift-Transferable §kX\",18:\"§6§lLEGENDARY POWER STONE\"],Name:\"§6Fang-tastic Chocolate Chip\"},ExtraAttributes:{id:\"CHOCOLATE_CHIP\"}}", + "damage": 0, + "lore": [ + "§8Power Stone", + "§7Combine §a9x §7of this stone at the", + "§7§6Thaumaturgist §7to permanently", + "§7unlock the §aCrumbly §7power.", + "", + "§7At §61,250 Magical Power§7:", + "§c+§k382❤§r §cHealth", + "§b+§k205✎§r §bIntelligence", + "§f+§k25❂§r §fTrue Defense", + "§4+§k91♨§r §4Vitality", + "§a+§k68☄§r §aMending", + "", + "§7Unique Power Bonus:", + "§f+25✦ Speed", + "", + "§7Requires §aCombat Skill Level XX§7!", + "", + "§5§kX§5 Rift-Transferable §kX", + "§6§lLEGENDARY POWER STONE" + ], + "internalname": "CHOCOLATE_CHIP", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Fang-tastic_Chocolate_Chip", + "https://wiki.hypixel.net/Fang-tastic_Chocolate_Chip" + ] +}
\ No newline at end of file diff --git a/items/COSMO_RIFT_NPC.json b/items/COSMO_RIFT_NPC.json new file mode 100644 index 00000000..378d205a --- /dev/null +++ b/items/COSMO_RIFT_NPC.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dCosmo (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d5a03765-f446-2844-91f9-4064809bfc13\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FjZjExMzJkMWRhZGJlYzQzYTQ3M2JkYjRkMTA3NGZjNjkxZTg5NjdkZTZhYzdkYjA0MDAxNGFkOTEwN2JmZDgifX19\"}]},Name:\"d5a03765-f446-2844-91f9-4064809bfc13\"},display:{Lore:[0:\"\"],Name:\"§dCosmo (Rift NPC)\"},ExtraAttributes:{id:\"COSMO_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "COSMO_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -66, + "y": 71, + "z": -92, + "island": "rift", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Cosmo" + ] +}
\ No newline at end of file diff --git a/items/COVEN_SEAL.json b/items/COVEN_SEAL.json new file mode 100644 index 00000000..cce1777f --- /dev/null +++ b/items/COVEN_SEAL.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:nether_wart", + "displayname": "§aCoven Seal", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Given to you by a powerful\",1:\"§7vampire, proving you bested them\",2:\"§7in combat.\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aCoven Seal\"},ExtraAttributes:{id:\"COVEN_SEAL\"}}", + "damage": 0, + "lore": [ + "§7Given to you by a powerful", + "§7vampire, proving you bested them", + "§7in combat.", + "", + "§a§lUNCOMMON" + ], + "internalname": "COVEN_SEAL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Coven_Seal", + "https://wiki.hypixel.net/Coven_Seal" + ] +}
\ No newline at end of file diff --git a/items/COWBOY_NICK_RIFT_NPC.json b/items/COWBOY_NICK_RIFT_NPC.json new file mode 100644 index 00000000..a0011b16 --- /dev/null +++ b/items/COWBOY_NICK_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dCowboy Nick (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"e953bfba-e649-254e-bac6-fcf83005c86a\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3NmJlMzIwZDUyNTdhMTYyYzBiOGRkNDM4ZDIzNTU4Njc0OTBiMDYxYzRlMjAwMjkzYjNmOThmZTM5NTI0OTMifX19\"}]},Name:\"e953bfba-e649-254e-bac6-fcf83005c86a\"},display:{Lore:[0:\"\"],Name:\"§dCowboy Nick (Rift NPC)\"},ExtraAttributes:{id:\"COWBOY_NICK_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "COWBOY_NICK_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -13, + "y": 71, + "z": -7, + "island": "rift" +}
\ No newline at end of file diff --git a/items/CRUXMOTION.json b/items/CRUXMOTION.json new file mode 100644 index 00000000..6b5bfedf --- /dev/null +++ b/items/CRUXMOTION.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Cruxmotion", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"faf77e4d-fae5-38c5-9a30-924ce1b6959c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGQyZjc4ZDAxNTE5OTc3NjhlZDBjNTM0Yjc2YzI0YjMyOGViZTg0NDg2YjQzYzA4M2JiYzUyODM0MGUyIn19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Ultimately, it\u0027s life that is\",1:\"§7weird.\",2:\"\",3:\"§5§lEPIC\"],Name:\"§5Cruxmotion\"},ExtraAttributes:{id:\"CRUXMOTION\"}}", + "damage": 3, + "lore": [ + "§7Ultimately, it\u0027s life that is", + "§7weird.", + "", + "§5§lEPIC" + ], + "recipe": { + "A1": "SHAME_CRUX:1", + "A2": "SHADOW_CRUX:1", + "A3": "VOLT_CRUX:1", + "B1": "SCRIBE_CRUX:1", + "B2": "FROSTY_CRUX:1", + "B3": "SPLATTER_CRUX:1", + "C1": "", + "C2": "", + "C3": "" + }, + "internalname": "CRUXMOTION", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Cruxmotion", + "https://wiki.hypixel.net/Cruxmotion" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_1.json b/items/CRUX_TALISMAN_1.json new file mode 100644 index 00000000..86f7b6ee --- /dev/null +++ b/items/CRUX_TALISMAN_1.json @@ -0,0 +1,43 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§fCrux Talisman", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"30efd643-7a23-3b2c-8411-739e759aaf5f\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzI3NzQ3NywKICAicHJvZmlsZUlkIiA6ICIxNmJhNWU4MDJhMmU0ZDJhYjEwZmZiYWJiYmQ1MDdlZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJzbGlua3l1c2VyMzMxNSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83YjIyNTRkYmJmNTJjMzg4NTU3ODQ5MTA4ZTkzZGNjNWE5YjNiN2ZhNDdlNjRmNGNhMDYzZGZhYTFhMzAyYzYwIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"\",1:\"§7Defeat shies to gain §a+5ф Rift Time\",2:\"§a§7and §6+5 Crux Fortune §7per kill\",3:\"§7milestone.\",4:\"§7§8Crux Fortune boosts the chance\",5:\"§8for bonus crux drops.\",6:\"\",7:\"§7Total Bonuses\",8:\"§a+§k10§aф Rift Time\",9:\"§6+§k10§6 Crux Fortune\",10:\"\",11:\"§7Kill Milestones\",12:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",13:\"\",14:\"§f§lCOMMON ACCESSORY\"],Name:\"§fCrux Talisman\"},ExtraAttributes:{id:\"CRUX_TALISMAN_1\"}}", + "damage": 3, + "lore": [ + "", + "§7Defeat shies to gain §a+5ф Rift Time", + "§a§7and §6+5 Crux Fortune §7per kill", + "§7milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§f§lCOMMON ACCESSORY" + ], + "recipe": { + "A1": "SHAME_CRUX:1", + "A2": "SHAME_CRUX:1", + "A3": "SHAME_CRUX:1", + "B1": "SHAME_CRUX:1", + "B2": "", + "B3": "SHAME_CRUX:1", + "C1": "SHAME_CRUX:1", + "C2": "SHAME_CRUX:1", + "C3": "SHAME_CRUX:1" + }, + "internalname": "CRUX_TALISMAN_1", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Talisman", + "https://wiki.hypixel.net/Crux_Talisman" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_2.json b/items/CRUX_TALISMAN_2.json new file mode 100644 index 00000000..859a682a --- /dev/null +++ b/items/CRUX_TALISMAN_2.json @@ -0,0 +1,44 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aCrux Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"c8a5d5c7-3633-31a7-b9f8-87bc3e4c4ffe\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzMwMDMwNSwKICAicHJvZmlsZUlkIiA6ICIzNTE2NjhhMTk5MmM0ZGZlOWRkNmY5NTUxNWFkNzVmNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJCbHVlX1BrIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JiNWNiMmM0YTAyOGJhNzFiOWM5NmJkZTE0ZWVmNDM3MDYyM2EzMjUyZTI1NDVkNDBlMmY0ZGZhOWIxNTRlZmMiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Intelligence: §a+2\",1:\"\",2:\"§7Defeat crux mobs to gain §a+5ф Rift\",3:\"§aTime §7and §6+5 Crux Fortune §7per\",4:\"§7kill milestone.\",5:\"§7§8Crux Fortune boosts the chance\",6:\"§8for bonus crux drops.\",7:\"\",8:\"§7Total Bonuses\",9:\"§a+§k10§aф Rift Time\",10:\"§6+§k10§6 Crux Fortune\",11:\"\",12:\"§7Kill Milestones\",13:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",14:\"\",15:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aCrux Ring\"},ExtraAttributes:{id:\"CRUX_TALISMAN_2\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a+2", + "", + "§7Defeat crux mobs to gain §a+5ф Rift", + "§aTime §7and §6+5 Crux Fortune §7per", + "§7kill milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§a§lUNCOMMON ACCESSORY" + ], + "recipe": { + "A1": "SHADOW_CRUX:2", + "A2": "SHADOW_CRUX:2", + "A3": "SHADOW_CRUX:2", + "B1": "SHADOW_CRUX:2", + "B2": "CRUX_TALISMAN_1:1", + "B3": "SHADOW_CRUX:2", + "C1": "SHADOW_CRUX:2", + "C2": "SHADOW_CRUX:2", + "C3": "SHADOW_CRUX:2" + }, + "internalname": "CRUX_TALISMAN_2", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Ring", + "https://wiki.hypixel.net/Crux_Ring" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_3.json b/items/CRUX_TALISMAN_3.json new file mode 100644 index 00000000..69ed54b3 --- /dev/null +++ b/items/CRUX_TALISMAN_3.json @@ -0,0 +1,44 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Crux Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d7fd6734-01ab-3ed4-ae36-8cb7e05f10d6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzMyNDY1NywKICAicHJvZmlsZUlkIiA6ICJmODJmNTQ1MDIzZDA0MTFkYmVlYzU4YWI4Y2JlMTNjNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZXNwb25kZW50cyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81NGQ2NjM0NTFmMzUwYTM2NmU2NzRiYjBkOWY3MWZlOTIyYzExZmYxYmI4ZTU4M2QwNWQyMzc5MzhhZmQwYzg4IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Intelligence: §a+5\",1:\"\",2:\"§7Defeat crux mobs to gain §a+5ф Rift\",3:\"§aTime §7and §6+5 Crux Fortune §7per\",4:\"§7kill milestone.\",5:\"§7§8Crux Fortune boosts the chance\",6:\"§8for bonus crux drops.\",7:\"\",8:\"§7Total Bonuses\",9:\"§a+§k10§aф Rift Time\",10:\"§6+§k10§6 Crux Fortune\",11:\"\",12:\"§7Kill Milestones\",13:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",14:\"\",15:\"§9§lRARE ACCESSORY\"],Name:\"§9Crux Artifact\"},ExtraAttributes:{id:\"CRUX_TALISMAN_3\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a+5", + "", + "§7Defeat crux mobs to gain §a+5ф Rift", + "§aTime §7and §6+5 Crux Fortune §7per", + "§7kill milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§9§lRARE ACCESSORY" + ], + "recipe": { + "A1": "VOLT_CRUX:2", + "A2": "VOLT_CRUX:2", + "A3": "VOLT_CRUX:2", + "B1": "VOLT_CRUX:2", + "B2": "CRUX_TALISMAN_2:1", + "B3": "VOLT_CRUX:2", + "C1": "VOLT_CRUX:2", + "C2": "VOLT_CRUX:2", + "C3": "VOLT_CRUX:2" + }, + "internalname": "CRUX_TALISMAN_3", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Artifact", + "https://wiki.hypixel.net/Crux_Artifact" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_4.json b/items/CRUX_TALISMAN_4.json new file mode 100644 index 00000000..91499cf5 --- /dev/null +++ b/items/CRUX_TALISMAN_4.json @@ -0,0 +1,44 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Crux Relic", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"04d7e2f4-638f-3a72-8a0f-5d196366b0d8\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzQyNTM2OSwKICAicHJvZmlsZUlkIiA6ICI1ZTg2ZTc3OGQ0NTc0N2NjYjQ4N2E1OWRlZDMzZDRlMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJQbGVpc18iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWRhYjJmZjlmMmI1ZTJkMzY5MjIyNmY2MzhlYjllNjc2NGE0NWI0M2JhMDI3OGM1ZTBiZDhkNzQ5NDJjNTcyZCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Intelligence: §a+7\",1:\"\",2:\"§7Defeat crux mobs to gain §a+5ф Rift\",3:\"§aTime §7and §6+5 Crux Fortune §7per\",4:\"§7kill milestone.\",5:\"§7§8Crux Fortune boosts the chance\",6:\"§8for bonus crux drops.\",7:\"\",8:\"§7Total Bonuses\",9:\"§a+§k10§aф Rift Time\",10:\"§6+§k10§6 Crux Fortune\",11:\"\",12:\"§7Kill Milestones\",13:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",14:\"\",15:\"§5§lEPIC ACCESSORY\"],Name:\"§5Crux Relic\"},ExtraAttributes:{id:\"CRUX_TALISMAN_4\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a+7", + "", + "§7Defeat crux mobs to gain §a+5ф Rift", + "§aTime §7and §6+5 Crux Fortune §7per", + "§7kill milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§5§lEPIC ACCESSORY" + ], + "recipe": { + "A1": "SCRIBE_CRUX:2", + "A2": "SCRIBE_CRUX:2", + "A3": "SCRIBE_CRUX:2", + "B1": "SCRIBE_CRUX:2", + "B2": "CRUX_TALISMAN_3:1", + "B3": "SCRIBE_CRUX:2", + "C1": "SCRIBE_CRUX:2", + "C2": "SCRIBE_CRUX:2", + "C3": "SCRIBE_CRUX:2" + }, + "internalname": "CRUX_TALISMAN_4", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Relic", + "https://wiki.hypixel.net/Crux_Relic" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_5.json b/items/CRUX_TALISMAN_5.json new file mode 100644 index 00000000..0ca69faf --- /dev/null +++ b/items/CRUX_TALISMAN_5.json @@ -0,0 +1,45 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Crux Heirloom", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9acaf045-3c6a-39a2-9aa6-bcc42ba3a711\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzQ1MTk5OSwKICAicHJvZmlsZUlkIiA6ICJkYmEyNmVkNTk2ZmE0NjBjOTZjOThhYWYwOWM2MDZhNyIsCiAgInByb2ZpbGVOYW1lIiA6ICJPcmlnaW5hbFJlemEiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjFmNTA3NGRiODZiNjY5Mzc2ZTcxZGQ4ZmU3MDcxNmY3M2UwZTg0Zjk1NTg3OWE0NjgyZWY1ZmExZWE4MmQyZCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Intelligence: §a+10\",1:\"§7Speed: §a+1\",2:\"\",3:\"§7Defeat crux mobs to gain §a+5ф Rift\",4:\"§aTime §7and §6+5 Crux Fortune §7per\",5:\"§7kill milestone.\",6:\"§7§8Crux Fortune boosts the chance\",7:\"§8for bonus crux drops.\",8:\"\",9:\"§7Total Bonuses\",10:\"§a+§k10§aф Rift Time\",11:\"§6+§k10§6 Crux Fortune\",12:\"\",13:\"§7Kill Milestones\",14:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",15:\"\",16:\"§6§lLEGENDARY ACCESSORY\"],Name:\"§6Crux Heirloom\"},ExtraAttributes:{id:\"CRUX_TALISMAN_5\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a+10", + "§7Speed: §a+1", + "", + "§7Defeat crux mobs to gain §a+5ф Rift", + "§aTime §7and §6+5 Crux Fortune §7per", + "§7kill milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§6§lLEGENDARY ACCESSORY" + ], + "recipe": { + "A1": "FROSTY_CRUX:3", + "A2": "FROSTY_CRUX:3", + "A3": "FROSTY_CRUX:3", + "B1": "FROSTY_CRUX:3", + "B2": "CRUX_TALISMAN_4:1", + "B3": "FROSTY_CRUX:3", + "C1": "FROSTY_CRUX:3", + "C2": "FROSTY_CRUX:3", + "C3": "FROSTY_CRUX:3" + }, + "internalname": "CRUX_TALISMAN_5", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Heirloom", + "https://wiki.hypixel.net/Crux_Heirloom" + ] +}
\ No newline at end of file diff --git a/items/CRUX_TALISMAN_6.json b/items/CRUX_TALISMAN_6.json new file mode 100644 index 00000000..d5ff3c17 --- /dev/null +++ b/items/CRUX_TALISMAN_6.json @@ -0,0 +1,45 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dCrux Chronomicon", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ccbb2703-6a29-3103-af8e-b3e1e23e99f1\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDM1MzQ3MTcxMCwKICAicHJvZmlsZUlkIiA6ICIwNDNkZWIzOGIyNjE0MTg1YTIzYzU4ZmI2YTc5ZWZkYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJWaXRhbFNpZ256MiIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kM2FkNTU3OWY2YTcxNTkxZTYxNWNjNTUxMzAxZDI0ZTQ0MzJjMGExN2RkNGE0ZmM0ZGRkZmYwZDI3NjQxZGM2IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Intelligence: §a+15\",1:\"§7Speed: §a+2\",2:\"\",3:\"§7Defeat crux mobs to gain §a+5ф Rift\",4:\"§aTime §7and §6+5 Crux Fortune §7per\",5:\"§7kill milestone.\",6:\"§7§8Crux Fortune boosts the chance\",7:\"§8for bonus crux drops.\",8:\"\",9:\"§7Total Bonuses\",10:\"§a+§k10§aф Rift Time\",11:\"§6+§k10§6 Crux Fortune\",12:\"\",13:\"§7Kill Milestones\",14:\" §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills\",15:\"\",16:\"§d§lMYTHIC ACCESSORY\"],Name:\"§dCrux Chronomicon\"},ExtraAttributes:{id:\"CRUX_TALISMAN_6\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a+15", + "§7Speed: §a+2", + "", + "§7Defeat crux mobs to gain §a+5ф Rift", + "§aTime §7and §6+5 Crux Fortune §7per", + "§7kill milestone.", + "§7§8Crux Fortune boosts the chance", + "§8for bonus crux drops.", + "", + "§7Total Bonuses", + "§a+§k10§aф Rift Time", + "§6+§k10§6 Crux Fortune", + "", + "§7Kill Milestones", + " §2§kII§2 Shy§7: §e§k25§7/§a§k50§7 kills", + "", + "§d§lMYTHIC ACCESSORY" + ], + "recipe": { + "A1": "SPLATTER_CRUX:4", + "A2": "SPLATTER_CRUX:4", + "A3": "SPLATTER_CRUX:4", + "B1": "SPLATTER_CRUX:4", + "B2": "CRUX_TALISMAN_5:1", + "B3": "SPLATTER_CRUX:4", + "C1": "SPLATTER_CRUX:4", + "C2": "SPLATTER_CRUX:4", + "C3": "SPLATTER_CRUX:4" + }, + "internalname": "CRUX_TALISMAN_6", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Crux_Chronomicon", + "https://wiki.hypixel.net/Crux_Chronomicon" + ] +}
\ No newline at end of file diff --git a/items/DACKINORU_RIFT_NPC.json b/items/DACKINORU_RIFT_NPC.json new file mode 100644 index 00000000..f9b539c2 --- /dev/null +++ b/items/DACKINORU_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dDackinoru (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b47f5b79-3231-261f-a19b-665f1380555d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2JhOTM3ZTJkZjRhODRmMmJmYTg2NzVlOWUxMGVmNDhjY2FiMWRiNjI3MDZjNmJiYWRjNzNkNTM4YTk5MGY4NTgifX19\"}]},Name:\"b47f5b79-3231-261f-a19b-665f1380555d\"},display:{Lore:[0:\"\"],Name:\"§dDackinoru (Rift NPC)\"},ExtraAttributes:{id:\"DACKINORU_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "DACKINORU_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -118, + "y": 74, + "z": 173, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/DAMIA_RIFT_NPC.json b/items/DAMIA_RIFT_NPC.json new file mode 100644 index 00000000..97be4102 --- /dev/null +++ b/items/DAMIA_RIFT_NPC.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dDamia (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"465f43d7-6050-2c40-84ee-1fdf188b26e2\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2M3MGFkODMwODBmZTBjODEwMTk1NzkyMjg4ZWU3YTlhNTYwNTM0OGMyYmQ5M2E2YzZiMmI1NTNiNjk2MGYxODQifX19\"}]},Name:\"465f43d7-6050-2c40-84ee-1fdf188b26e2\"},display:{Lore:[0:\"\"],Name:\"§dDamia (Rift NPC)\"},ExtraAttributes:{id:\"DAMIA_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "DAMIA_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": 31, + "y": 73, + "z": -94, + "island": "rift", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Damia_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/DARK_PEBBLE.json b/items/DARK_PEBBLE.json new file mode 100644 index 00000000..3ad760d4 --- /dev/null +++ b/items/DARK_PEBBLE.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:flint", + "displayname": "§f§f§fDark Pebble", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§5§kX§5 Rift-Transferable §kX\",1:\"§f§lCOMMON\"],Name:\"§f§f§fDark Pebble\"},ExtraAttributes:{id:\"DARK_PEBBLE\"}}", + "damage": 0, + "lore": [ + "§5§kX§5 Rift-Transferable §kX", + "§f§lCOMMON" + ], + "internalname": "DARK_PEBBLE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Dark_Pebble" + ] +}
\ No newline at end of file diff --git a/items/DEADGEHOG_MONSTER.json b/items/DEADGEHOG_MONSTER.json new file mode 100644 index 00000000..a7a6da11 --- /dev/null +++ b/items/DEADGEHOG_MONSTER.json @@ -0,0 +1,49 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aDeadgehog (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"e478fc5c-1c7c-445b-a929-2660b084d2fd\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTU4OTk2MzczNTIzMiwKICAicHJvZmlsZUlkIiA6ICJiMGQ3MzJmZTAwZjc0MDdlOWU3Zjc0NjMwMWNkOThjYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJPUHBscyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mZDRjMTQyYzM4MmE2YmUwMGNhZWVlOWEwMjMwNmYwNjU0NGU2ZTQ2Yjk1M2JjYzhjYWM2NWU1Yzg5ZDQ3OTBhIgogICAgfQogIH0KfQ\u003d\u003d\"}]},Name:\"§e478fc5c-1c7c-445b-a929-2660b084d2fd\"},display:{Lore:[0:\"§7Found near the §3Black Lagoon§7\",1:\"§7in §dthe Rift§7.\",2:\"\",3:\"§7Shoots terrifying arrows that deal\",4:\"§a9sф §7Damage.\",5:\"\",6:\"§7Also has a melee attack that deals\",7:\"§a2sф §7Damage.\",8:\"\",9:\"§c❤ Health§8: §c150\"],Name:\"§aDeadgehog (Monster)\"},ExtraAttributes:{id:\"DEADGEHOG_MONSTER\"}}", + "damage": 3, + "lore": [ + "§7Found near the §3Black Lagoon§7", + "§7in §dthe Rift§7.", + "", + "§7Shoots terrifying arrows that deal", + "§a9sф §7Damage.", + "", + "§7Also has a melee attack that deals", + "§a2sф §7Damage.", + "", + "§c❤ Health§8: §c150" + ], + "internalname": "DEADGEHOG_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§2Deadgehog", + "render": "@neurepo:mobs/deadgehog.json", + "level": 1, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:150", + "chance": "100%" + }, + { + "id": "DEADGEHOG_SPINE:3", + "chance": "100%" + }, + { + "id": "DEADGEHOG_SPINE:1", + "chance": "50%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/DEADGEHOG_SPINE.json b/items/DEADGEHOG_SPINE.json index 3a38c315..31cd6203 100644 --- a/items/DEADGEHOG_SPINE.json +++ b/items/DEADGEHOG_SPINE.json @@ -1,10 +1,9 @@ { "itemid": "minecraft:arrow", "displayname": "§aDeadgehog Spine", - "nbttag": "{HideFlags:254,display:{Lore:[0:\"§eRight-click to view recipes!\",1:\"§7Contrary to popular belief,\",2:\"§7Deadgehogs aren\u0027t rodents.\",3:\"§7\",4:\"§7They are in fact mangled wraith\",5:\"§7remnants of warriors who\",6:\"§7couldn\u0027t find true love.\",7:\"\",8:\"§a§lUNCOMMON\"],Name:\"§aDeadgehog Spine\"},ExtraAttributes:{id:\"DEADGEHOG_SPINE\"}}", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Contrary to popular belief,\",1:\"§7Deadgehogs aren\u0027t rodents.\",2:\"§7\",3:\"§7They are in fact mangled wraith\",4:\"§7remnants of warriors who\",5:\"§7couldn\u0027t find true love.\",6:\"\",7:\"§eRight-click to view recipes!\",8:\"\",9:\"§a§lUNCOMMON\"],Name:\"§aDeadgehog Spine\"},ExtraAttributes:{id:\"DEADGEHOG_SPINE\"}}", "damage": 0, "lore": [ - "§eRight-click to view recipes!", "§7Contrary to popular belief,", "§7Deadgehogs aren\u0027t rodents.", "§7", @@ -12,11 +11,13 @@ "§7remnants of warriors who", "§7couldn\u0027t find true love.", "", + "§eRight-click to view recipes!", + "", "§a§lUNCOMMON" ], "internalname": "DEADGEHOG_SPINE", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "" }
\ No newline at end of file diff --git a/items/DEAD_CAT_DETECTOR.json b/items/DEAD_CAT_DETECTOR.json new file mode 100644 index 00000000..ba6cb509 --- /dev/null +++ b/items/DEAD_CAT_DETECTOR.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:red_flower", + "displayname": "§9Cat Detector", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§6Ability: Meownar §e§lRIGHT CLICK\",1:\"§7Ping the §5Rift §7for cats.\",2:\"§8Mana Cost: §3100\",3:\"§8Cooldown: §a9s\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Cat Detector\"},ExtraAttributes:{id:\"DEAD_CAT_DETECTOR\",dead_cats_found:0}}", + "damage": 7, + "lore": [ + "§6Ability: Meownar §e§lRIGHT CLICK", + "§7Ping the §5Rift §7for cats.", + "§8Mana Cost: §3100", + "§8Cooldown: §a9s", + "", + "§9§lRARE" + ], + "internalname": "DEAD_CAT_DETECTOR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Cat_Detector", + "https://wiki.hypixel.net/Cat_Detector" + ] +}
\ No newline at end of file diff --git a/items/DEAD_CAT_FOOD.json b/items/DEAD_CAT_FOOD.json new file mode 100644 index 00000000..a869c86f --- /dev/null +++ b/items/DEAD_CAT_FOOD.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:cooked_fish", + "displayname": "§9Dead Cat Food", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§8Consumed on use\",1:\"\",2:\"§7§7This pet item can be used on\",3:\"§7§9Montezuma§7. It may have a\",4:\"§7different effect outside of the\",5:\"§7§dRift§7.\",6:\"\",7:\"§7§7Grants §a+30ф Rift Time§7 and\",8:\"§7§b+5⚡ Mana Regen§7.\",9:\"\",10:\"§7§eRight click on your summoned\",11:\"§epet to give it this item!\",12:\"\",13:\"§5§kX§5 Rift-Transferable §kX\",14:\"§9§lRARE PET ITEM\"],Name:\"§9Dead Cat Food\"},ExtraAttributes:{id:\"DEAD_CAT_FOOD\"}}", + "damage": 0, + "lore": [ + "§8Consumed on use", + "", + "§7§7This pet item can be used on", + "§7§9Montezuma§7. It may have a", + "§7different effect outside of the", + "§7§dRift§7.", + "", + "§7§7Grants §a+30ф Rift Time§7 and", + "§7§b+5⚡ Mana Regen§7.", + "", + "§7§eRight click on your summoned", + "§epet to give it this item!", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE PET ITEM" + ], + "internalname": "DEAD_CAT_FOOD", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Dead_Cat_Food", + "https://wiki.hypixel.net/Dead_Cat_Food" + ] +}
\ No newline at end of file diff --git a/items/DETECTIVE_SCANNER.json b/items/DETECTIVE_SCANNER.json new file mode 100644 index 00000000..b1e4ad17 --- /dev/null +++ b/items/DETECTIVE_SCANNER.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Detective Scanner", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f08d5ecf-d4c8-3033-a6ae-8df95a2ae8db\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTYxNjYzNjM5MDMzOSwKICAicHJvZmlsZUlkIiA6ICJjNTBhZmE4YWJlYjk0ZTQ1OTRiZjFiNDI1YTk4MGYwMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd29FQmFlIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ1Nzg0OTNiNTY5N2FiMjlhMTk2ZDM1YWNmYTQ0MDU0YjQ0ZjNlNTQ5OGVmYTIyZWY1YjA4NTFiMjQ3N2UwOTAiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§6Ability: Detect! §e§lRIGHT CLICK\",1:\"§7Investigate a clue or\",2:\"§7abnormality.\",3:\"§8Mana Cost: §310\",4:\"§8Cooldown: §a4s\",5:\"\",6:\"§9§lRARE\"],Name:\"§9Detective Scanner\"},ExtraAttributes:{id:\"DETECTIVE_SCANNER\"}}", + "damage": 3, + "lore": [ + "§6Ability: Detect! §e§lRIGHT CLICK", + "§7Investigate a clue or", + "§7abnormality.", + "§8Mana Cost: §310", + "§8Cooldown: §a4s", + "", + "§9§lRARE" + ], + "internalname": "DETECTIVE_SCANNER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Detective_Scanner" + ] +}
\ No newline at end of file diff --git a/items/DETRANSFIGURED_MASK.json b/items/DETRANSFIGURED_MASK.json new file mode 100644 index 00000000..b93bf0bc --- /dev/null +++ b/items/DETRANSFIGURED_MASK.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Used Detransfigured Face", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"11b34e34-d0c7-3e47-bae3-290b8718dca3\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3ODcxMTcxODc5MCwKICAicHJvZmlsZUlkIiA6ICI3ZDJhY2YzOGQ3YTQ0YjU0YTliMGNkYTZhNzk1YmNmYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJCb3VuY2luZXNzIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFiNmJiOGVjNjMyNTYyYjUxMzMwMGNiOTQxM2Q3Zjc5NzQ2NzFlNjdhYWFmMjBkZWQxZjM3ZDhjMWM1MGI4OGIiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+80s\",1:\"§7Intelligence: §a+20\",2:\"\",3:\"§6Ability: Faces All The Way Down\",4:\"§7Regain §a+2ф §7when killing a\",5:\"§7monster.\",6:\"\",7:\"§5§lEPIC HELMET\"],Name:\"§5Used Detransfigured Face\"},ExtraAttributes:{id:\"DETRANSFIGURED_MASK\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+80s", + "§7Intelligence: §a+20", + "", + "§6Ability: Faces All The Way Down", + "§7Regain §a+2ф §7when killing a", + "§7monster.", + "", + "§5§lEPIC HELMET" + ], + "internalname": "DETRANSFIGURED_MASK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Used_Detransfigured_Face", + "https://wiki.hypixel.net/Used_Detransfigured_Face" + ] +}
\ No newline at end of file diff --git a/items/DISINFESTOR_GLOVES.json b/items/DISINFESTOR_GLOVES.json new file mode 100644 index 00000000..ef9f7afd --- /dev/null +++ b/items/DISINFESTOR_GLOVES.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Disinfestor Gloves", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"db9dd929-02c8-3e60-a295-d59a0bd85d6a\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MTE2OTAyNDY0MiwKICAicHJvZmlsZUlkIiA6ICIyYzEwNjRmY2Q5MTc0MjgyODRlM2JmN2ZhYTdlM2UxYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJOYWVtZSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9jOTFiMGI2MzhmYzNkOTAzM2Y3MWRjZjMxYjdkZTQ0YmJmNDgxNGNhMTIzMTc3YWEzZDI0OTQ1YWY0MzRhMTYiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+30s\",1:\"\",2:\"§9§lRARE GLOVES\"],Name:\"§9Disinfestor Gloves\"},ExtraAttributes:{id:\"DISINFESTOR_GLOVES\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+30s", + "", + "§9§lRARE GLOVES" + ], + "internalname": "DISINFESTOR_GLOVES", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Disinfestor_Gloves", + "https://wiki.hypixel.net/Disinfestor_Gloves" + ] +}
\ No newline at end of file diff --git a/items/DISPLACED_LEECH.json b/items/DISPLACED_LEECH.json new file mode 100644 index 00000000..7036bee0 --- /dev/null +++ b/items/DISPLACED_LEECH.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aDisplaced Leech", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f13b5abc-c484-3696-93de-c9ab1c7c07bd\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGUzMmNlNWFkZTA2YWZmOWQ2OTgzODIwODBkZWE1Mzk5NDc2NTlmYjU4N2U1OGQ0ZjFkN2MxZmY5MjQwZTNjOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Power Stone\",1:\"§7Combine §a9x §7of this stone at the\",2:\"§7§6Thaumaturgist §7to permanently\",3:\"§7unlock the §aSanguisuge §7power.\",4:\"\",5:\"§7At §6§k1,250§6 Magical Power§7:\",6:\"§c+§k191❤§r §cHealth\",7:\"§c+§k455❁§r §cStrength\",8:\"§9+§k182☠§r §cCrit Damage\",9:\"§4+§k45♨§r §4Vitality\",10:\"\",11:\"§7Unique Power Bonus:\",12:\"§b+100✎ Intelligence\",13:\"\",14:\"§7Requires §aCombat Skill Level X§7!\",15:\"\",16:\"§a§lUNCOMMON POWER STONE\"],Name:\"§aDisplaced Leech\"},ExtraAttributes:{id:\"DISPLACED_LEECH\"}}", + "damage": 3, + "lore": [ + "§8Power Stone", + "§7Combine §a9x §7of this stone at the", + "§7§6Thaumaturgist §7to permanently", + "§7unlock the §aSanguisuge §7power.", + "", + "§7At §6§k1,250§6 Magical Power§7:", + "§c+§k191❤§r §cHealth", + "§c+§k455❁§r §cStrength", + "§9+§k182☠§r §cCrit Damage", + "§4+§k45♨§r §4Vitality", + "", + "§7Unique Power Bonus:", + "§b+100✎ Intelligence", + "", + "§7Requires §aCombat Skill Level X§7!", + "", + "§a§lUNCOMMON POWER STONE" + ], + "internalname": "DISPLACED_LEECH", + "crafttext": "Requires: Hemovibe V", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Displaced_Leech", + "https://wiki.hypixel.net/Displaced_Leech" + ] +}
\ No newline at end of file diff --git a/items/DR_HIBBLE_RIFT_NPC.json b/items/DR_HIBBLE_RIFT_NPC.json new file mode 100644 index 00000000..fcd4b7be --- /dev/null +++ b/items/DR_HIBBLE_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dDr. Hibble (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"39d9f7d3-08cb-2a53-b72f-b26595f30da7\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2IwNDMwMzI1NTExM2QyNGQ3MWExNTNmYWYxMGUzMzJmNzJiM2U2NmEzMDljYjY1NGE4YmMzN2EyN2I5Y2QwNGYifX19\"}]},Name:\"39d9f7d3-08cb-2a53-b72f-b26595f30da7\"},display:{Lore:[0:\"§7Also known as §dDr. Edwin§7.\"],Name:\"§dDr. Hibble (Rift NPC)\"},ExtraAttributes:{id:\"DR_HIBBLE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "§7Also known as §dDr. Edwin§7." + ], + "internalname": "DR_HIBBLE_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -79, + "y": 74, + "z": 10, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/DR_PHEAR_RIFT_NPC.json b/items/DR_PHEAR_RIFT_NPC.json new file mode 100644 index 00000000..bdba0023 --- /dev/null +++ b/items/DR_PHEAR_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dDr. Phear (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"01e552d7-fd98-2d4b-a09a-cd136fb3f6f7\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E2NTYyZjJlOGQ1ZWQyZGIwNDA5NjQ5ZjI2Yjg4ZmNjZDM3OTJjZmQ4N2UwODJkYmRhMjZjNzhkMjMzYzdkZTAifX19\"}]},Name:\"01e552d7-fd98-2d4b-a09a-cd136fb3f6f7\"},display:{Lore:[0:\"\"],Name:\"§dDr. Phear (Rift NPC)\"},ExtraAttributes:{id:\"DR_PHEAR_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "DR_PHEAR_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -146, + "y": 37, + "z": 28, + "island": "rift" +}
\ No newline at end of file diff --git a/items/ELISE_RIFT_NPC.json b/items/ELISE_RIFT_NPC.json new file mode 100644 index 00000000..f28e14c6 --- /dev/null +++ b/items/ELISE_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dElise (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"bd5d8868-2998-2c9a-98fa-fd8ad328ee55\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FhMmFjNjE0ZTUzMzMyOGMwN2EyNWNlYmNiMDJhNDBkM2JjNDFjMWNjMmMyNGE2NTA2NWY4MzBiMDU5NTJjNGYifX19\"}]},Name:\"bd5d8868-2998-2c9a-98fa-fd8ad328ee55\"},display:{Lore:[0:\"\"],Name:\"§dElise (Rift NPC)\"},ExtraAttributes:{id:\"ELISE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ELISE_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -50, + "y": 123, + "z": 69, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/EMPTY_CHUMCAP_BUCKET.json b/items/EMPTY_CHUMCAP_BUCKET.json new file mode 100644 index 00000000..508dab9d --- /dev/null +++ b/items/EMPTY_CHUMCAP_BUCKET.json @@ -0,0 +1,37 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aEmpty Chumcap Bucket", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"92f2a35a-8d5e-3743-a0da-c4812e1fc838\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3OTU4NzMwNDk5MSwKICAicHJvZmlsZUlkIiA6ICJkMTJiOTk3ZWI2YTQ0ODQ5ODJmNDE1ZTI1NzFlNmY4NCIsCiAgInByb2ZpbGVOYW1lIiA6ICJUd2lybGJlbGwiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2MyNWMxZjMzM2E3MzFiYzM0MzU4ZjU1YzA1MTg1MTE0MTUzYzNmM2Q0NzQwNzZmMjFjYzE2MjFiOTk5NDY2MiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Place it down next to water.\",1:\"\",2:\"§7Sea Creatures slain nearby will\",3:\"§7drop §a+1 Chum§7.\",4:\"§8Up to +4 total from buckets!\",5:\"\",6:\"§7Nearby fishers gain §b+4☂\",7:\"§bFishing Speed §7and a good\",8:\"§7chance to fish up an §cAgarimoo\",9:\"§c§7sea creature.\",10:\"§8Up to +16☂ from buckets!\",11:\"\",12:\"§a§lUNCOMMON\"],Name:\"§aEmpty Chumcap Bucket\"},ExtraAttributes:{id:\"EMPTY_CHUMCAP_BUCKET\"}}", + "damage": 3, + "lore": [ + "§7Place it down next to water.", + "", + "§7Sea Creatures slain nearby will", + "§7drop §a+1 Chum§7.", + "§8Up to +4 total from buckets!", + "", + "§7Nearby fishers gain §b+4☂", + "§bFishing Speed §7and a good", + "§7chance to fish up an §cAgarimoo", + "§c§7sea creature.", + "§8Up to +16☂ from buckets!", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "AGARICUS_CHUM_CAP:1", + "A2": "AGARICUS_CHUM_CAP:1", + "A3": "AGARICUS_CHUM_CAP:1", + "B1": "AGARICUS_CHUM_CAP:1", + "B2": "EMPTY_CHUM_BUCKET:1", + "B3": "AGARICUS_CHUM_CAP:1", + "C1": "AGARICUS_CHUM_CAP:1", + "C2": "AGARICUS_CHUM_CAP:1", + "C3": "AGARICUS_CHUM_CAP:1" + }, + "internalname": "EMPTY_CHUMCAP_BUCKET", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/EMPTY_ODONATA_BOTTLE.json b/items/EMPTY_ODONATA_BOTTLE.json new file mode 100644 index 00000000..0a374071 --- /dev/null +++ b/items/EMPTY_ODONATA_BOTTLE.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:glass_bottle", + "displayname": "§aEmpty Odonata Bottle", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Hold this and look at an\",1:\"§7§9Odonata §7for §a3s §7while\",2:\"§7very close to bottle it.\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aEmpty Odonata Bottle\"},ExtraAttributes:{id:\"EMPTY_ODONATA_BOTTLE\"}}", + "damage": 0, + "lore": [ + "§7Hold this and look at an", + "§7§9Odonata §7for §a3s §7while", + "§7very close to bottle it.", + "", + "§a§lUNCOMMON" + ], + "internalname": "EMPTY_ODONATA_BOTTLE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Empty_Odonata_Bottle", + "https://wiki.hypixel.net/Empty_Odonata_Bottle" + ] +}
\ No newline at end of file diff --git a/items/ENCHANTED_BOOK_BUNDLE_QUANTUM.json b/items/ENCHANTED_BOOK_BUNDLE_QUANTUM.json new file mode 100644 index 00000000..34f98f71 --- /dev/null +++ b/items/ENCHANTED_BOOK_BUNDLE_QUANTUM.json @@ -0,0 +1,24 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§aEnchanted Book Bundle", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ca704bba-9cb8-3220-bb45-0f0c3f8c93a0\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTViZTIyYjVkNGE4NzVkNzdkZjNmNzcxMGZmNDU3OGVmMjc5MzlhOTY4NGNiZGIzZDMxZDk3M2YxNjY4NDkifX19\"}]}},display:{Lore:[0:\"§9Quantum III\",1:\"§7Grants §4+2.4♨ Vitality §7on\",2:\"§7weekdays and §3+1.2☯ §7of a\",3:\"§7random §3Wisdom §7stat on\",4:\"§7weekends.\",5:\"\",6:\"§7Right-click to open this bundle\",7:\"§7containing §f1 §7enchanted book.\",8:\"\",9:\"§5§kX§5 Rift-Transferable §kX\",10:\"§a§lUNCOMMON\"],Name:\"§f§f§aEnchanted Book Bundle\"},ExtraAttributes:{id:\"ENCHANTED_BOOK_BUNDLE_QUANTUM\",enchantments:{quantum:3}}}", + "damage": 3, + "lore": [ + "§9Quantum III", + "§7Grants §4+2.4♨ Vitality §7on", + "§7weekdays and §3+1.2☯ §7of a", + "§7random §3Wisdom §7stat on", + "§7weekends.", + "", + "§7Right-click to open this bundle", + "§7containing §f1 §7enchanted book.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "internalname": "ENCHANTED_BOOK_BUNDLE_QUANTUM", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ENCHANTED_BOOK_BUNDLE_REFLECTION.json b/items/ENCHANTED_BOOK_BUNDLE_REFLECTION.json new file mode 100644 index 00000000..22432681 --- /dev/null +++ b/items/ENCHANTED_BOOK_BUNDLE_REFLECTION.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aEnchanted Book Bundle", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"bc3b05de-9e0c-397a-a15c-6e14ef00130e\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODJhZTE5MTA3MDg2ZGQzMTRkYWYzMWQ4NjYxOGU1MTk0OGE2ZTNlMjBkOTZkY2ExN2QyMWIyNWQ0MmQyYjI0In19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§9Reflection I\",1:\"§7Grants §b+2✎ Intelligence§7.\",2:\"§7Grants §f+1❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b2x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Right-click to open this bundle\",7:\"§7containing §f3 §7enchanted\",8:\"§7books.\",9:\"\",10:\"§5§kX§5 Rift-Transferable §kX\",11:\"§a§lUNCOMMON\"],Name:\"§aEnchanted Book Bundle\"},ExtraAttributes:{id:\"ENCHANTED_BOOK_BUNDLE_REFLECTION\",enchantments:{reflection:1}}}", + "damage": 3, + "lore": [ + "§9Reflection I", + "§7Grants §b+2✎ Intelligence§7.", + "§7Grants §f+1❂ True Defense§7.", + "§7When damaged by an arrow, deal §b2x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Right-click to open this bundle", + "§7containing §f3 §7enchanted", + "§7books.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "internalname": "ENCHANTED_BOOK_BUNDLE_REFLECTION", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Enchanted_Book_Bundle", + "https://wiki.hypixel.net/Enchanted_Book_Bundle" + ] +}
\ No newline at end of file diff --git a/items/ENCHANTED_LUSH_BERBERIS.json b/items/ENCHANTED_LUSH_BERBERIS.json new file mode 100644 index 00000000..497a6641 --- /dev/null +++ b/items/ENCHANTED_LUSH_BERBERIS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:double_plant", + "displayname": "§9Enchanted Lush Berberis", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7A wonderful enchanted plant!\",1:\"\",2:\"§eRight-click to view recipes!\",3:\"\",4:\"§9§lRARE\"],Name:\"§9Enchanted Lush Berberis\"},ExtraAttributes:{id:\"ENCHANTED_LUSH_BERBERIS\"}}", + "damage": 3, + "lore": [ + "§7A wonderful enchanted plant!", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "ENCHANTED_LUSH_BERBERIS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Enchanted_Lush_Berberis", + "https://wiki.hypixel.net/Enchanted_Lush_Berberis" + ] +}
\ No newline at end of file diff --git a/items/ENCHANTED_VAMPIRIC_MELON.json b/items/ENCHANTED_VAMPIRIC_MELON.json new file mode 100644 index 00000000..1977a564 --- /dev/null +++ b/items/ENCHANTED_VAMPIRIC_MELON.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:melon_block", + "displayname": "§aEnchanted Vampiric Melon", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Worth more §dMotes §7than the\",1:\"§7sum of its parts, because it\u0027s\",2:\"§7glowing!\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aEnchanted Vampiric Melon\"},ExtraAttributes:{id:\"ENCHANTED_VAMPIRIC_MELON\"}}", + "damage": 0, + "lore": [ + "§7Worth more §dMotes §7than the", + "§7sum of its parts, because it\u0027s", + "§7glowing!", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "VAMPIRIC_MELON:32", + "A3": "", + "B1": "VAMPIRIC_MELON:32", + "B2": "VAMPIRIC_MELON:32", + "B3": "VAMPIRIC_MELON:32", + "C1": "", + "C2": "VAMPIRIC_MELON:32", + "C3": "" + }, + "internalname": "ENCHANTED_VAMPIRIC_MELON", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Enchanted_Vampiric_Melon" + ] +}
\ No newline at end of file diff --git a/items/ENIGMA_CLOAK.json b/items/ENIGMA_CLOAK.json new file mode 100644 index 00000000..0d16e000 --- /dev/null +++ b/items/ENIGMA_CLOAK.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Enigma Cloak", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0854e3e8-06e6-376d-8d07-5fef1705a666\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4NDMzODg4MzYzMSwKICAicHJvZmlsZUlkIiA6ICIzYTE5NDgyNTYyZTc0MzFkYmNmOGUwOWE4N2VhMmQ5OSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNckxpYW0yNjE0IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzdjZDliOTNjODg4MmRjMmJlZmU5YzEzZDc2NTlhMzM4ZWI3NDU0YjhhMThlNzUzMTBkZjA1MTAxOTRlMmQ3YTEiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Find §5Enigma Souls §7across the\",1:\"§7Rift Dimension.\",2:\"\",3:\"§7Each adds §a+§a20ф Rift Time\",4:\"§a§7to this item.\",5:\"\",6:\"§7Every §54 Souls§7, go back to\",7:\"§7§5Enigma §7for more upgrades.\",8:\"\",9:\"§7You found: §d§k0§5/42 Souls\",10:\"\",11:\"§5§lEPIC CLOAK\"],Name:\"§5Enigma Cloak\"},ExtraAttributes:{id:\"ENIGMA_CLOAK\"}}", + "damage": 3, + "lore": [ + "§7Find §5Enigma Souls §7across the", + "§7Rift Dimension.", + "", + "§7Each adds §a+§a20ф Rift Time", + "§a§7to this item.", + "", + "§7Every §54 Souls§7, go back to", + "§7§5Enigma §7for more upgrades.", + "", + "§7You found: §d§k0§5/42 Souls", + "", + "§5§lEPIC CLOAK" + ], + "internalname": "ENIGMA_CLOAK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Enigma_Cloak", + "https://wiki.hypixel.net/Enigma_Cloak" + ] +}
\ No newline at end of file diff --git a/items/ETALPTSEHC_NORI.json b/items/ETALPTSEHC_NORI.json new file mode 100644 index 00000000..b95991c2 --- /dev/null +++ b/items/ETALPTSEHC_NORI.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:iron_chestplate", + "displayname": "§9etalptsehC norI", + "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+30s\",1:\"\",2:\"§9§lRARE CHESTPLATE\"],Name:\"§9etalptsehC norI\"},ExtraAttributes:{id:\"ETALPTSEHC_NORI\",uuid:\"ae124dbc-6a73-42c7-996d-28a42c99eb3e\",timestamp:\"6/21/23 12:36 PM\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+30s", + "", + "§9§lRARE CHESTPLATE" + ], + "internalname": "ETALPTSEHC_NORI", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/etalptsehC_NorI" + ] +}
\ No newline at end of file diff --git a/items/EXCEEDINGLY_COMFY_SNEAKERS.json b/items/EXCEEDINGLY_COMFY_SNEAKERS.json new file mode 100644 index 00000000..645306f5 --- /dev/null +++ b/items/EXCEEDINGLY_COMFY_SNEAKERS.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:leather_boots", + "displayname": "§9Exceedingly Comfy Sneakers", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+45s\",1:\"§7Speed: §a+5\",2:\"\",3:\"§7Stay classy.\",4:\"\",5:\"§9§lRARE BOOTS\"],color:3670052,Name:\"§9Exceedingly Comfy Sneakers\"},ExtraAttributes:{lm_evo:110,id:\"EXCEEDINGLY_COMFY_SNEAKERS\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+45s", + "§7Speed: §a+5", + "", + "§7Stay classy.", + "", + "§9§lRARE BOOTS" + ], + "internalname": "EXCEEDINGLY_COMFY_SNEAKERS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Exceedingly_Comfy_Sneakers", + "https://wiki.hypixel.net/Exceedingly_Comfy_Sneakers" + ] +}
\ No newline at end of file diff --git a/items/EXPORTABLE_CARROTS.json b/items/EXPORTABLE_CARROTS.json new file mode 100644 index 00000000..82751b5c --- /dev/null +++ b/items/EXPORTABLE_CARROTS.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aExportable Carrots", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"847cab42-eac0-36e3-9c23-62be46895fb6\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMmVkMGI3NTZmYzYyMzg1NTEzYjU3MDE1OTY3NDZiZDdiMWRhYTE1ZDdhZGFiZjQ1ZWYxNWJkMzQzNzNkOWY1YyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Bring §63,000 §7of these to\",1:\"§7§5Carrolyn §7in §5Scarleton §7to\",2:\"§7permanently gain §c+5❤ Health\",3:\"§c§7and §6+12☘ Farming Fortune\",4:\"§6§7for carrots.\",5:\"\",6:\"§5§kX§5 Rift-Transferable §kX\",7:\"§a§lUNCOMMON\"],Name:\"§aExportable Carrots\"},ExtraAttributes:{id:\"EXPORTABLE_CARROTS\"}}", + "damage": 3, + "lore": [ + "§7Bring §63,000 §7of these to", + "§7§5Carrolyn §7in §5Scarleton §7to", + "§7permanently gain §c+5❤ Health", + "§c§7and §6+12☘ Farming Fortune", + "§6§7for carrots.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "VOLT_CRUX:1", + "A3": "", + "B1": "", + "B2": "NEARLY_WHOLE_CARROT:2", + "B3": "", + "C1": "", + "C2": "SCRIBE_CRUX:1", + "C3": "" + }, + "internalname": "EXPORTABLE_CARROTS", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Half-Eaten Carrot III", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Exportable_Carrots", + "https://wiki.hypixel.net/Exportable_Carrots" + ] +}
\ No newline at end of file diff --git a/items/FAFNIR_RIFT_NPC.json b/items/FAFNIR_RIFT_NPC.json new file mode 100644 index 00000000..5d38a51d --- /dev/null +++ b/items/FAFNIR_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dFafnir (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0955cffd-0606-21c5-9a18-a33163526c52\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2IwYjU3YmE0ZGUxZTc5Mzk2ZTllYzAxNGJhNzEyOGEzNjk4NDg1NmQ4OWQ0OWVhNTZmODgxNTc3YzI0ODg4NzYifX19\"}]},Name:\"0955cffd-0606-21c5-9a18-a33163526c52\"},display:{Lore:[0:\"\"],Name:\"§dFafnir (Rift NPC)\"},ExtraAttributes:{id:\"FAFNIR_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "FAFNIR_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -128, + "y": 74, + "z": 173, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/FAKE_NEUROSCIENCE_DEGREE.json b/items/FAKE_NEUROSCIENCE_DEGREE.json new file mode 100644 index 00000000..dde8a936 --- /dev/null +++ b/items/FAKE_NEUROSCIENCE_DEGREE.json @@ -0,0 +1,24 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Fake Neuroscience Degree", + "nbttag": "{overrideMeta:1b,HideFlags:254,SkullOwner:{Id:\"a71517c3-af12-358f-8309-81aa40c9202d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTdlZDY2ZjVhNzAyMDlkODIxMTY3ZDE1NmZkYmMwY2EzYmYxMWFkNTRlZDVkODZlNzVjMjY1ZjdlNTAyOWVjMSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Use at (the real) Kat to upgrade\",1:\"§7a Spider or Tarantula pet to\",2:\"§7§dmythic §7rarity.\",3:\"\",4:\"§7§8With this fake diploma you can\",5:\"§8somehow talk spiders into uh...\",6:\"§8upgrading their rarity.\",7:\"\",8:\"§8§l* §8Soulbound §8§l*\",9:\"§5§kX§5 Rift-Transferable §kX\",10:\"§9§lRARE\"],Name:\"§9Fake Neuroscience Degree\"},ExtraAttributes:{id:\"FAKE_NEUROSCIENCE_DEGREE\"},AttributeModifiers:[]}", + "damage": 3, + "lore": [ + "§7Use at (the real) Kat to upgrade", + "§7a Spider or Tarantula pet to", + "§7§dmythic §7rarity.", + "", + "§7§8With this fake diploma you can", + "§8somehow talk spiders into uh...", + "§8upgrading their rarity.", + "", + "§8§l* §8Soulbound §8§l*", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "internalname": "FAKE_NEUROSCIENCE_DEGREE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/FAMILY_DOUBLOON.json b/items/FAMILY_DOUBLOON.json new file mode 100644 index 00000000..3dadce61 --- /dev/null +++ b/items/FAMILY_DOUBLOON.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:gold_nugget", + "displayname": "§9Doubloon of the Family", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Worth §6100,000 coins §7in the\",1:\"§7outside world.\",2:\"\",3:\"§7§8A precious trinket from a\",4:\"§8powerful member of The Family\",5:\"§8who doesn\u0027t really need it\",6:\"§8anymore....\",7:\"\",8:\"§5§kX§5 Rift-Transferable §kX\",9:\"§9§lRARE\"],Name:\"§9Doubloon of the Family\"},ExtraAttributes:{id:\"FAMILY_DOUBLOON\"}}", + "damage": 0, + "lore": [ + "§7Worth §6100,000 coins §7in the", + "§7outside world.", + "", + "§7§8A precious trinket from a", + "§8powerful member of The Family", + "§8who doesn\u0027t really need it", + "§8anymore....", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "internalname": "FAMILY_DOUBLOON", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Doubloon_Of_The_Family" + ] +}
\ No newline at end of file diff --git a/items/FARMING_WAND.json b/items/FARMING_WAND.json new file mode 100644 index 00000000..ad1f4006 --- /dev/null +++ b/items/FARMING_WAND.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:golden_hoe", + "displayname": "§9Wand of Farming", + "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Allows you to farm the peculiar\",1:\"§7crops from the rift while held.\",2:\"\",3:\"§9§lRARE WAND\"],Name:\"§9Wand of Farming\"},ExtraAttributes:{id:\"FARMING_WAND\"}}", + "damage": 0, + "lore": [ + "§7Allows you to farm the peculiar", + "§7crops from the rift while held.", + "", + "§9§lRARE WAND" + ], + "internalname": "FARMING_WAND", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Wand_Of_Farming" + ] +}
\ No newline at end of file diff --git a/items/FEMURGROWTH_LEGGINGS.json b/items/FEMURGROWTH_LEGGINGS.json new file mode 100644 index 00000000..d3f0a5e6 --- /dev/null +++ b/items/FEMURGROWTH_LEGGINGS.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:leather_leggings", + "displayname": "§5Femurgrowth Leggings", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+65s\",1:\"§7Speed: §a-4\",2:\"§7Mana Regen: §a+5%\",3:\"\",4:\"§7§8It\u0027s infected slime, it makes\",5:\"§8you slower.\",6:\"\",7:\"§5§lEPIC LEGGINGS\"],color:4783872,Name:\"§5Femurgrowth Leggings\"},ExtraAttributes:{id:\"FEMURGROWTH_LEGGINGS\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+65s", + "§7Speed: §a-4", + "§7Mana Regen: §a+5%", + "", + "§7§8It\u0027s infected slime, it makes", + "§8you slower.", + "", + "§5§lEPIC LEGGINGS" + ], + "recipe": { + "A1": "SHADOW_CRUX:8", + "A2": "CHICKEN_LEGGS:1", + "A3": "VOLT_CRUX:8", + "B1": "BACTE_FRAGMENT:2", + "B2": "", + "B3": "BACTE_FRAGMENT:2", + "C1": "BACTE_FRAGMENT:2", + "C2": "", + "C3": "BACTE_FRAGMENT:2" + }, + "internalname": "FEMURGROWTH_LEGGINGS", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Femurgrowth_Leggings", + "https://wiki.hypixel.net/Femurgrowth_Leggings" + ] +}
\ No newline at end of file diff --git a/items/FINPLEX_RIFT_NPC.json b/items/FINPLEX_RIFT_NPC.json new file mode 100644 index 00000000..2c07e2fa --- /dev/null +++ b/items/FINPLEX_RIFT_NPC.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dFinplex (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"32654895-322c-2e8a-9323-862c14d8b383\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzJiYWE0OTliMzQ4MzhiNDAxOWE0ZDEyMTc0NTRlNjk1MGZmNDAyYzU3ZTAzNWEzN2FiZTdlMTA3NjdkOGVkNDIifX19\"}]},Name:\"32654895-322c-2e8a-9323-862c14d8b383\"},display:{Lore:[0:\"\"],Name:\"§dFinplex (Rift NPC)\"},ExtraAttributes:{id:\"FINPLEX_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "FINPLEX_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -57, + "y": 69, + "z": -82, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "ZOOP_THE_FISH:1", + "cost": [ + "SKYBLOCK_MOTE:99999" + ] + } + ], + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Finplex" + ] +}
\ No newline at end of file diff --git a/items/FROSTY_CRUX.json b/items/FROSTY_CRUX.json new file mode 100644 index 00000000..41534765 --- /dev/null +++ b/items/FROSTY_CRUX.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aFrosty Crux", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"00906080-c876-35b5-b103-6255ceefef62\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NTM2NDIxNTU2OSwKICAicHJvZmlsZUlkIiA6ICJlOWRlMDE0NjExZDI0NGY5OTVjNmNiMjhkMDk5MWExNSIsCiAgInByb2ZpbGVOYW1lIiA6ICJFbGl6YWJldGhUcnVzcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lOGU4OWVjNTkyMjljZjUyYmQwY2ZkNWY3OWY3Yjc3NjhiNGM0OTZjMGU4NzE4NGI3OGIyZjdjNjY4NTYxOTliIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7The illest of the chillest.\",1:\"\",2:\"§eRight-click to view recipes!\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aFrosty Crux\"},ExtraAttributes:{id:\"FROSTY_CRUX\"}}", + "damage": 3, + "lore": [ + "§7The illest of the chillest.", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "FROSTY_CRUX", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Frosty_Crux", + "https://wiki.hypixel.net/Frosty_Crux" + ] +}
\ No newline at end of file diff --git a/items/FROZEN_WATER.json b/items/FROZEN_WATER.json new file mode 100644 index 00000000..9f3d3a9b --- /dev/null +++ b/items/FROZEN_WATER.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:ice", + "displayname": "§9Frozen Water", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7One could say it\u0027s... ice cold.\",1:\"\",2:\"§eRight-click to view recipes!\",3:\"\",4:\"§9§lRARE\"],Name:\"§9Frozen Water\"},ExtraAttributes:{id:\"FROZEN_WATER\"}}", + "damage": 0, + "lore": [ + "§7One could say it\u0027s... ice cold.", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "FROZEN_WATER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Frozen_Water", + "https://wiki.hypixel.net/Frozen_Water" + ] +}
\ No newline at end of file diff --git a/items/FROZEN_WATER_PUNGI.json b/items/FROZEN_WATER_PUNGI.json new file mode 100644 index 00000000..123c5d11 --- /dev/null +++ b/items/FROZEN_WATER_PUNGI.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:spider_eye", + "displayname": "§5Frozen Water Pungi", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Snake Taming §e§lHOLD RIGHT CLICK\",1:\"§7Aim at a §9Living Metal Snake\",2:\"§9§7to deeply calm it, allowing\",3:\"§7§eanother player §7to mine it.\",4:\"\",5:\"§5§lEPIC\"],Name:\"§5Frozen Water Pungi\"},ExtraAttributes:{id:\"FROZEN_WATER_PUNGI\"}}", + "damage": 0, + "lore": [ + "§6Ability: Snake Taming §e§lHOLD RIGHT CLICK", + "§7Aim at a §9Living Metal Snake", + "§9§7to deeply calm it, allowing", + "§7§eanother player §7to mine it.", + "", + "§5§lEPIC" + ], + "internalname": "FROZEN_WATER_PUNGI", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Frozen_Water_Pungi" + ] +}
\ No newline at end of file diff --git a/items/FROZILLE_MONSTER.json b/items/FROZILLE_MONSTER.json new file mode 100644 index 00000000..f1394539 --- /dev/null +++ b/items/FROZILLE_MONSTER.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aFrozille (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"be4ae126-bb3c-4578-aed6-d820e7ed7998\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NTM2NDY1MDY0MCwKICAicHJvZmlsZUlkIiA6ICI4M2EwYjZmOGVjMWI0YTU3OGQ2NmJlZDE2MmQ4M2I4MyIsCiAgInByb2ZpbGVOYW1lIiA6ICJTbmlwZWRfQnlfS2NhbHMiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTdlMWU0YWIwYTdiYTVjZWM4Mjk2ZDkyNWRhNjNiMjVjODMxYTdlOTY2YjI2MDUwZDk5YTMxNDhjZTEwZjYzYiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§c❤ Health§8: §c135\"],Name:\"§aFrozille (Monster)\"},ExtraAttributes:{id:\"FROZILLE_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c135" + ], + "internalname": "FROZILLE_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§eVolt", + "render": "@neurepo:mobs/frozille.json", + "level": 5, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:150", + "chance": "100%" + }, + { + "id": "FROSTY_CRUX:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/FULL_JAW_FANGING_KIT.json b/items/FULL_JAW_FANGING_KIT.json new file mode 100644 index 00000000..2d34cc33 --- /dev/null +++ b/items/FULL_JAW_FANGING_KIT.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:dye", + "displayname": "§9Full-Jaw Fanging Kit", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§8Reforge Stone\",1:\"§7§8Combinable in Reforge Anvil\",2:\"\",3:\"§7Applies the §9Fanged §7reforge\",4:\"§7when combined with an IRON\",5:\"§7sword§7.\",6:\"\",7:\"§7§8§oFangs! Very menacing.\",8:\"\",9:\"§7Requires §aMining Skill Level\",10:\"§aXIII§7!\",11:\"\",12:\"§9§lRARE REFORGE STONE\"],Name:\"§9Full-Jaw Fanging Kit\"},ExtraAttributes:{id:\"FULL_JAW_FANGING_KIT\"}}", + "damage": 15, + "lore": [ + "§8Reforge Stone", + "§7§8Combinable in Reforge Anvil", + "", + "§7Applies the §9Fanged §7reforge", + "§7when combined with an IRON", + "§7sword§7.", + "", + "§7§8§oFangs! Very menacing.", + "", + "§7Requires §aMining Skill Level", + "§aXIII§7!", + "", + "§9§lRARE REFORGE STONE" + ], + "internalname": "FULL_JAW_FANGING_KIT", + "crafttext": "Requires: Hemovibe VII", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Full-Jaw_Fanging_Kit", + "https://wiki.hypixel.net/Full-Jaw_Fanging_Kit" + ] +}
\ No newline at end of file diff --git a/items/GARLACIUS_RIFT_NPC.json b/items/GARLACIUS_RIFT_NPC.json new file mode 100644 index 00000000..58d4ce2c --- /dev/null +++ b/items/GARLACIUS_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dGarlacius (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"d0a0600a-a988-2dfd-9269-1af49f9859ca\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FlZjkwNGM2NmY0Y2QzNTdlYjgwYTFlNDA1NzgzZjUyMWQyODQ1MDM0MzVhZWRlNjAzYzg5ZGIxNWU2ODU3MDkifX19\"}]},Name:\"d0a0600a-a988-2dfd-9269-1af49f9859ca\"},display:{Lore:[0:\"\"],Name:\"§dGarlacius (Rift NPC)\"},ExtraAttributes:{id:\"GARLACIUS_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "GARLACIUS_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -129, + "y": 80, + "z": 171, + "island": "rift" +}
\ No newline at end of file diff --git a/items/GARLIC_FLAVORED_GUMMY_BEAR.json b/items/GARLIC_FLAVORED_GUMMY_BEAR.json new file mode 100644 index 00000000..9bfb3131 --- /dev/null +++ b/items/GARLIC_FLAVORED_GUMMY_BEAR.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Perma-Jelled Garlic-Flavored Re-Heated Gummy Polar Bear", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3ec69b71-b77e-38c7-a7f2-186745b3dfa6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MTQ1ODg2Njk2MywKICAicHJvZmlsZUlkIiA6ICJmZTE0M2FhZTVmNGE0YTdiYjM4MzcxM2U1Mjg0YmIxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJKZWZveHk0IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2NiMGQxNjI4ZTQyYmRmYTU0ZDAyZWE2NjRmMmNhOWUzMmE3MWMwZTg0YWEyMWRiMWQzMjkyNGQzZjVlM2QzNTIiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Gain §3+3 Combat Exp §7from mob\",1:\"§7kills in the §dRift§7.\",2:\"\",3:\"§5§lEPIC ACCESSORY\"],Name:\"§5Perma-Jelled Garlic-Flavored Re-Heated Gummy Polar Bear\"},ExtraAttributes:{id:\"GARLIC_FLAVORED_GUMMY_BEAR\"}}", + "damage": 3, + "lore": [ + "§7Gain §3+3 Combat Exp §7from mob", + "§7kills in the §dRift§7.", + "", + "§5§lEPIC ACCESSORY" + ], + "recipe": { + "A1": "NEARLY_WHOLE_CARROT:4", + "A2": "BACTE_FRAGMENT:8", + "A3": "NEARLY_WHOLE_CARROT:4", + "B1": "BLOODBADGE:4", + "B2": "REHEATED_GUMMY_POLAR_BEAR:16", + "B3": "BLOODBADGE:4", + "C1": "NEARLY_WHOLE_CARROT:4", + "C2": "BACTE_FRAGMENT:8", + "C3": "NEARLY_WHOLE_CARROT:4" + }, + "internalname": "GARLIC_FLAVORED_GUMMY_BEAR", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Perma-Jelled_Garlic-Flavored_Re-Heated_Gummy_Polar_Bear", + "https://wiki.hypixel.net/Perma-Jelled_Garlic-Flavored_Re-Heated_Gummy_Polar_Bear" + ] +}
\ No newline at end of file diff --git a/items/GLYPH_CONCLAMATUS.json b/items/GLYPH_CONCLAMATUS.json new file mode 100644 index 00000000..1ad415a5 --- /dev/null +++ b/items/GLYPH_CONCLAMATUS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Conclamatus Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Conclamatus Glyph\"},ExtraAttributes:{id:\"GLYPH_CONCLAMATUS\"}}", + "damage": 30883, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_CONCLAMATUS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_FIRMITAS.json b/items/GLYPH_FIRMITAS.json new file mode 100644 index 00000000..6a178ba5 --- /dev/null +++ b/items/GLYPH_FIRMITAS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Firmitas Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Firmitas Glyph\"},ExtraAttributes:{id:\"GLYPH_FIRMITAS\"}}", + "damage": 30886, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_FIRMITAS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_FORTIS.json b/items/GLYPH_FORTIS.json new file mode 100644 index 00000000..d1f247c8 --- /dev/null +++ b/items/GLYPH_FORTIS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Fortis Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Fortis Glyph\"},ExtraAttributes:{id:\"GLYPH_FORTIS\"}}", + "damage": 30881, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_FORTIS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_PERNIMIUS.json b/items/GLYPH_PERNIMIUS.json new file mode 100644 index 00000000..16f577eb --- /dev/null +++ b/items/GLYPH_PERNIMIUS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Pernimius Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Pernimius Glyph\"},ExtraAttributes:{id:\"GLYPH_PERNIMIUS\"}}", + "damage": 30882, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_PERNIMIUS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_POTENTIA.json b/items/GLYPH_POTENTIA.json new file mode 100644 index 00000000..3b238fee --- /dev/null +++ b/items/GLYPH_POTENTIA.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Potentia Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Potentia Glyph\"},ExtraAttributes:{id:\"GLYPH_POTENTIA\"}}", + "damage": 30887, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_POTENTIA", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_ROBUR.json b/items/GLYPH_ROBUR.json new file mode 100644 index 00000000..906453d9 --- /dev/null +++ b/items/GLYPH_ROBUR.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Robur Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Robur Glyph\"},ExtraAttributes:{id:\"GLYPH_ROBUR\"}}", + "damage": 30885, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_ROBUR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_VALIDUS.json b/items/GLYPH_VALIDUS.json new file mode 100644 index 00000000..9779a85c --- /dev/null +++ b/items/GLYPH_VALIDUS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Validus Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Validus Glyph\"},ExtraAttributes:{id:\"GLYPH_VALIDUS\"}}", + "damage": 30880, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_VALIDUS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GLYPH_VIS.json b/items/GLYPH_VIS.json new file mode 100644 index 00000000..12d45ccb --- /dev/null +++ b/items/GLYPH_VIS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§5§5Vis Glyph", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§7§oA scroll ingrained with an\",1:\"§7§oancient symbol.\",2:\"\",3:\"§7If the pattern is mimicked with\",4:\"§7a §bpowerful artifact§7, it may\",5:\"§7be possible to cast a §9Warding\",6:\"§9Spell§7.\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5§5Vis Glyph\"},ExtraAttributes:{id:\"GLYPH_VIS\"}}", + "damage": 30884, + "lore": [ + "§7§7§oA scroll ingrained with an", + "§7§oancient symbol.", + "", + "§7If the pattern is mimicked with", + "§7a §bpowerful artifact§7, it may", + "§7be possible to cast a §9Warding", + "§9Spell§7.", + "", + "§5§lEPIC" + ], + "internalname": "GLYPH_VIS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/GUARDIAN;5.json b/items/GUARDIAN;5.json new file mode 100644 index 00000000..6c512759 --- /dev/null +++ b/items/GUARDIAN;5.json @@ -0,0 +1,44 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§7[Lvl {LVL}] §dGuardian", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"26508276-c01a-32a9-9201-7dae1724954e\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMjIxMDI1NDM0MDQ1YmRhNzAyNWIzZTUxNGIzMTZhNGI3NzBjNmZhYTRiYTlhZGI0YmUzODA5NTI2ZGI3N2Y5ZCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Enchanting Pet\",1:\"\",2:\"§7Intelligence: §a{INTELLIGENCE}\",3:\"§7Defense: §a{DEFENSE}\",4:\"\",5:\"§6Laserbeam\",6:\"§7§7Zaps your enemies for §b{0}x\",7:\"§b§7your §b✎ Intelligence §7every\",8:\"§7§a3s§7.\",9:\"\",10:\"§6Enchanting Wisdom Boost\",11:\"§7§7§7Grants §3+{1}☯ Enchanting\",12:\"§3Wisdom§7.\",13:\"\",14:\"§6Mana Pool\",15:\"§7§7Regenerate §b{2}% §7extra mana,\",16:\"§7doubled when near or in water.\",17:\"\",18:\"§6Lucky Seven\",19:\"§7§7Gain §b+{3}% §7chance to find\",20:\"§7§5ultra rare §7books in\",21:\"§7§dSuperpairs§7.\",22:\"\",23:\"§7§eRight-click to add this pet to\",24:\"§eyour pet menu!\",25:\"\",26:\"§d§lMYTHIC\"],Name:\"§f§f§7[Lvl {LVL}] §dGuardian\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"GUARDIAN\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"MYTHIC\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0,\\\"uuid\\\":\\\"80bde392-2e4b-497c-8549-df7edd8939d3\\\",\\\"hideRightClick\\\":false}\",id:\"GUARDIAN;5\"}}", + "damage": 3, + "lore": [ + "§8Enchanting Pet", + "", + "§7Intelligence: §a{INTELLIGENCE}", + "§7Defense: §a{DEFENSE}", + "", + "§6Laserbeam", + "§7§7Zaps your enemies for §b{0}x", + "§b§7your §b✎ Intelligence §7every", + "§7§a3s§7.", + "", + "§6Enchanting Wisdom Boost", + "§7§7§7Grants §3+{1}☯ Enchanting", + "§3Wisdom§7.", + "", + "§6Mana Pool", + "§7§7Regenerate §b{2}% §7extra mana,", + "§7doubled when near or in water.", + "", + "§6Lucky Seven", + "§7§7Gain §b+{3}% §7chance to find", + "§7§5ultra rare §7books in", + "§7§dSuperpairs§7.", + "", + "§7§eRight-click to add this pet to", + "§eyour pet menu!", + "", + "§d§lMYTHIC" + ], + "internalname": "GUARDIAN;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Guardian_Pet", + "https://wiki.hypixel.net/Guardian_Pet" + ] +}
\ No newline at end of file diff --git a/items/GUARDIAN_LUCKY_BLOCK.json b/items/GUARDIAN_LUCKY_BLOCK.json new file mode 100644 index 00000000..06b2e536 --- /dev/null +++ b/items/GUARDIAN_LUCKY_BLOCK.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§6Guardian Lucky Block", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"89f6b4f8-8067-32e6-b78b-a0c2458d78e3\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmZkY2ZiNDAwOTc2YmY3M2VjMzJjMWI5OTYyYzgzMGZjM2Q3MDA2ZDc0OWY4ZjNkYTNiNmUwZmI4MjkwOWIyOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Use at Kat to upgrade a Guardian\",1:\"§7pet to §dmythic §7rarity.\",2:\"\",3:\"§5§kX§5 Rift-Transferable §kX\",4:\"§6§lLEGENDARY\"],Name:\"§f§f§6Guardian Lucky Block\"},ExtraAttributes:{id:\"GUARDIAN_LUCKY_BLOCK\"}}", + "damage": 3, + "lore": [ + "§7Use at Kat to upgrade a Guardian", + "§7pet to §dmythic §7rarity.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§6§lLEGENDARY" + ], + "internalname": "GUARDIAN_LUCKY_BLOCK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Guardian_Lucky_Block" + ] +}
\ No newline at end of file diff --git a/items/GUNTHER_RIFT_NPC.json b/items/GUNTHER_RIFT_NPC.json new file mode 100644 index 00000000..6880bd0d --- /dev/null +++ b/items/GUNTHER_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dGunther (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"56038abe-f6dd-243e-a1c4-0715cb252b16\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQxODY0NzNlODBiYjM1N2IzNTNkYTIyMDQ4YmZlZjEzYjBiMzgxMjcwNzc5OGFiYWFiNTA4MTJlYWZjMzFjN2QifX19\"}]},Name:\"56038abe-f6dd-243e-a1c4-0715cb252b16\"},display:{Lore:[0:\"\"],Name:\"§dGunther (Rift NPC)\"},ExtraAttributes:{id:\"GUNTHER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "GUNTHER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -69, + "y": 72, + "z": -61, + "island": "rift" +}
\ No newline at end of file diff --git a/items/HALF_EATEN_CARROT.json b/items/HALF_EATEN_CARROT.json new file mode 100644 index 00000000..a8736160 --- /dev/null +++ b/items/HALF_EATEN_CARROT.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:carrot", + "displayname": "§fHalf-Eaten Carrot", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§f§lCOMMON\"],Name:\"§fHalf-Eaten Carrot\"},ExtraAttributes:{id:\"HALF_EATEN_CARROT\"}}", + "damage": 0, + "lore": [ + "§f§lCOMMON" + ], + "internalname": "HALF_EATEN_CARROT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Half-Eaten_Carrot", + "https://wiki.hypixel.net/Half-Eaten_Carrot" + ] +}
\ No newline at end of file diff --git a/items/HARMONIOUS_SURGERY_TOOLKIT.json b/items/HARMONIOUS_SURGERY_TOOLKIT.json new file mode 100644 index 00000000..202e31ff --- /dev/null +++ b/items/HARMONIOUS_SURGERY_TOOLKIT.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aHarmonious Surgery Toolkit", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f0936fb5-d452-39ae-9aed-adfab822707e\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWIxNWNlODIzNzcwZDlhMjY5YzFlYmY1ODNkM2U0OTMyNzQ3YTEzZWY0MzYxM2NkNGY3NWY4MDRjYTQifX19\"}]}},display:{Lore:[0:\"§7Rift Time: §a+10s\",1:\"§7Speed: §a+2\",2:\"\",3:\"§7If you touch a larva which\",4:\"§7another player touched, you both\",5:\"§7gain §f+1 Larva Silk §7once it\",6:\"§7is harvested.\",7:\"\",8:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aHarmonious Surgery Toolkit\"},ExtraAttributes:{id:\"HARMONIOUS_SURGERY_TOOLKIT\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+10s", + "§7Speed: §a+2", + "", + "§7If you touch a larva which", + "§7another player touched, you both", + "§7gain §f+1 Larva Silk §7once it", + "§7is harvested.", + "", + "§a§lUNCOMMON ACCESSORY" + ], + "internalname": "HARMONIOUS_SURGERY_TOOLKIT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Harmonious_Surgery_Toolkit", + "https://wiki.hypixel.net/Harmonious_Surgery_Toolkit" + ] +}
\ No newline at end of file diff --git a/items/HEALING_MELON.json b/items/HEALING_MELON.json new file mode 100644 index 00000000..a618e51f --- /dev/null +++ b/items/HEALING_MELON.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:speckled_melon", + "displayname": "§aHealing Melon", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Succulence §e§lRIGHT CLICK\",1:\"§7Take a bite and heal §c7❤§7.\",2:\"§8Mana Cost: §360\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aHealing Melon\"},ExtraAttributes:{id:\"HEALING_MELON\"}}", + "damage": 0, + "lore": [ + "§6Ability: Succulence §e§lRIGHT CLICK", + "§7Take a bite and heal §c7❤§7.", + "§8Mana Cost: §360", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "VAMPIRIC_MELON:2", + "A2": "", + "A3": "", + "B1": "VAMPIRIC_MELON:2", + "B2": "VAMPIRIC_MELON:2", + "B3": "", + "C1": "VAMPIRIC_MELON:2", + "C2": "VAMPIRIC_MELON:2", + "C3": "VAMPIRIC_MELON:2" + }, + "internalname": "HEALING_MELON", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Healing_Melon", + "https://wiki.hypixel.net/Healing_Melon" + ] +}
\ No newline at end of file diff --git a/items/HELMET_OF_THE_PACK.json b/items/HELMET_OF_THE_PACK.json index b3fc9a1b..b2c400c2 100644 --- a/items/HELMET_OF_THE_PACK.json +++ b/items/HELMET_OF_THE_PACK.json @@ -1,22 +1,23 @@ { "itemid": "minecraft:leather_helmet", - "displayname": "§f§f§5Helmet of the Pack", - "nbttag": "{overrideMeta:1b,Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+70\",1:\"§7Defense: §a+65\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense §7aswell.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearers\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players\",12:\"\",13:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",14:\"§5§lEPIC HELMET\"],color:16777215,Name:\"§f§f§5Helmet of the Pack\"},ExtraAttributes:{color:\"255:255:255\",modifier:\"godly\",id:\"HELMET_OF_THE_PACK\"},AttributeModifiers:[]}", + "displayname": "§5Helmet of the Pack", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+70\",1:\"§7Defense: §a+65\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense§7.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearer\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players!\",12:\"\",13:\"§7§8This item can be reforged!\",14:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",15:\"§5§lEPIC HELMET\"],color:16777215,Name:\"§5Helmet of the Pack\"},ExtraAttributes:{id:\"HELMET_OF_THE_PACK\"}}", "damage": 0, "lore": [ "§7Health: §a+70", "§7Defense: §a+65", "", "§7Gain §a+50❈ Defense §7against animals.", - "§7Gain §f+5❂ True Defense §7aswell.", + "§7Gain §f+5❂ True Defense§7.", "", "§6Full Set Bonus: §cArmor of the Pack", "§7Gain §c+35❁ Strength §7and", "§7§a+80❈ Defense §7for each", - "§7§cArmor of the Pack §7wearers", + "§7§cArmor of the Pack §7wearer", "§7within §a30 §7blocks.", - "§8Max of 3 players", + "§8Max of 3 players!", "", + "§7§8This item can be reforged!", "§4☠ §cRequires §5Wolf Slayer 6§c.", "§5§lEPIC HELMET" ], diff --git a/items/HEMOBOMB.json b/items/HEMOBOMB.json new file mode 100644 index 00000000..02234a17 --- /dev/null +++ b/items/HEMOBOMB.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Hemobomb", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3b3486a0-2047-329a-90c0-2bbbc9a332c8\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWY1MzU0Y2EyZWUxYjhmZGM5NTViYjQzN2JiMjYxOTU3NWZjNzk4M2YzNjlhZmEzYTFmN2QxYjk3NTY3ZWE4In19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§5§kX§5 Rift-Transferable §kX\",1:\"§5§lEPIC\"],Name:\"§5Hemobomb\"},ExtraAttributes:{id:\"HEMOBOMB\"}}", + "damage": 3, + "lore": [ + "§5§kX§5 Rift-Transferable §kX", + "§5§lEPIC" + ], + "internalname": "HEMOBOMB", + "crafttext": "Requires: Hemovibe IX", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Hemobomb", + "https://wiki.hypixel.net/Hemobomb" + ] +}
\ No newline at end of file diff --git a/items/HEMOGLASS.json b/items/HEMOGLASS.json new file mode 100644 index 00000000..e919205f --- /dev/null +++ b/items/HEMOGLASS.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Hemoglass", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d7f86fa0-99c1-389e-a99b-a52ea8fe006a\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjQ0OGE0YmFlMTY0MDJiYzk1ZmQyYzFlMWFlNmE2MzJjODQ3NWQ3MmJkZjk4NmQzNmYwYjc2YjFiNzA2NjYzYyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§5§kX§5 Rift-Transferable §kX\",1:\"§9§lRARE\"],Name:\"§9Hemoglass\"},ExtraAttributes:{id:\"HEMOGLASS\"}}", + "damage": 3, + "lore": [ + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "internalname": "HEMOGLASS", + "crafttext": "Requires: Hemovibe III", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Hemoglass", + "https://wiki.hypixel.net/Hemoglass" + ] +}
\ No newline at end of file diff --git a/items/HEMOVIBE.json b/items/HEMOVIBE.json new file mode 100644 index 00000000..37c40e7a --- /dev/null +++ b/items/HEMOVIBE.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:redstone_ore", + "displayname": "§aHemovibe", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Dropped by vampires from the\",1:\"§7multiverse coven.\",2:\"\",3:\"§5§kX§5 Rift-Transferable §kX\",4:\"§a§lUNCOMMON\"],Name:\"§aHemovibe\"},ExtraAttributes:{id:\"HEMOVIBE\"}}", + "damage": 0, + "lore": [ + "§7Dropped by vampires from the", + "§7multiverse coven.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "internalname": "HEMOVIBE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Hemovibe", + "https://wiki.hypixel.net/Hemovibe" + ] +}
\ No newline at end of file diff --git a/items/HOCUS_POCUS_CIPHER.json b/items/HOCUS_POCUS_CIPHER.json new file mode 100644 index 00000000..f10666d5 --- /dev/null +++ b/items/HOCUS_POCUS_CIPHER.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§5Hocus-Pocus Cipher", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"11607c21-8730-3935-90f7-60271635c167\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGI2OTc1YWY3MDcyNGQ2YTQ0ZmQ1OTQ2ZTYwYjI3MTc3MzdkZmRiNTQ1YjRkYWIxODkzMzUxYTljOWRkMTgzYyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7While in the rift:\",1:\" §a+65ф Rift Time\",2:\" §b+5✎ Intelligence\",3:\" §b+5⚡ Mana Regen\",4:\"\",5:\"§8This item §lCANNOT§8 be reforged!\",6:\"§5§kX§5 Rift-Transferable §kX\",7:\"§5§lEPIC ACCESSORY\"],Name:\"§f§f§5Hocus-Pocus Cipher\"},ExtraAttributes:{id:\"HOCUS_POCUS_CIPHER\"}}", + "damage": 3, + "lore": [ + "§7While in the rift:", + " §a+65ф Rift Time", + " §b+5✎ Intelligence", + " §b+5⚡ Mana Regen", + "", + "§8This item §lCANNOT§8 be reforged!", + "§5§kX§5 Rift-Transferable §kX", + "§5§lEPIC ACCESSORY" + ], + "internalname": "HOCUS_POCUS_CIPHER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/HORSEZOOKA.json b/items/HORSEZOOKA.json new file mode 100644 index 00000000..be802c87 --- /dev/null +++ b/items/HORSEZOOKA.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:furnace_minecart", + "displayname": "§5Horsezooka", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Shoot §e§lRIGHT CLICK\",1:\"§7Launches a horse to clear out\",2:\"§7hay.\",3:\"§8Mana Cost: §31\",4:\"\",5:\"§5§lEPIC\"],Name:\"§5Horsezooka\"},ExtraAttributes:{id:\"HORSEZOOKA\"}}", + "damage": 0, + "lore": [ + "§6Ability: Shoot §e§lRIGHT CLICK", + "§7Launches a horse to clear out", + "§7hay.", + "§8Mana Cost: §31", + "", + "§5§lEPIC" + ], + "internalname": "HORSEZOOKA", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Horsezooka", + "https://wiki.hypixel.net/Horsezooka" + ] +}
\ No newline at end of file diff --git a/items/HOT_DOG.json b/items/HOT_DOG.json new file mode 100644 index 00000000..8b6e337e --- /dev/null +++ b/items/HOT_DOG.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§fHot Dog", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d881b57d-d79e-37b1-b741-4b4f97627753\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODI0Yzg2NjdlMWU2NzA5NTI0ZDhmNzYzZDFhZGQwNWE4NDVlNWJhMGE0ZmU5MDc2ZmUwYjU4NzE5MWVmNWMwIn19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Deposit on Joey\u0027s plate.\",1:\"\",2:\"§8§l* §8Soulbound §8§l*\",3:\"§f§lCOMMON\"],Name:\"§fHot Dog\"},ExtraAttributes:{id:\"HOT_DOG\",spawner_uuid:\"861eb179-10ba-4562-874b-5e27c84b8fad\",dontSaveToProfile:1b}}", + "damage": 3, + "lore": [ + "§7Deposit on Joey\u0027s plate.", + "", + "§8§l* §8Soulbound §8§l*", + "§f§lCOMMON" + ], + "internalname": "HOT_DOG", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Hot_Dog" + ] +}
\ No newline at end of file diff --git a/items/HOUND_RIFT_NPC.json b/items/HOUND_RIFT_NPC.json new file mode 100644 index 00000000..6c47ff0d --- /dev/null +++ b/items/HOUND_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dHound (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"80d8f5b7-0f7b-22b8-8d17-9b87b1622c99\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2MzNTlmNjVjOTA4YTk1MmVmYWJjMTAzMjc4YWViZGJmYzg0NmMyMDQ0OGE4ZmUzNTE3MTcwZDlmNTM1MmI3N2YifX19\"}]},Name:\"80d8f5b7-0f7b-22b8-8d17-9b87b1622c99\"},display:{Lore:[0:\"\"],Name:\"§dHound (Rift NPC)\"},ExtraAttributes:{id:\"HOUND_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "HOUND_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -70, + "y": 67, + "z": 148, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/HUB_WIZARD_TOWER_TRAVEL_SCROLL.json b/items/HUB_WIZARD_TOWER_TRAVEL_SCROLL.json new file mode 100644 index 00000000..4e56804c --- /dev/null +++ b/items/HUB_WIZARD_TOWER_TRAVEL_SCROLL.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:map", + "displayname": "§f§f§5Travel Scroll to the Wizard Tower", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Consume this item to add its\",1:\"§7destination to your Fast Travel\",2:\"§7options.\",3:\"\",4:\"§7Island: §aSkyBlock Hub\",5:\"§7Teleport: §eWizard Tower\",6:\"\",7:\"§5§kX§5 Rift-Transferable §kX\",8:\"§5§lEPIC TRAVEL SCROLLt!\"],Name:\"§f§f§5Travel Scroll to the Wizard Tower\"},ExtraAttributes:{id:\"HUB_WIZARD_TOWER_TRAVEL_SCROLL\"}}", + "damage": 0, + "lore": [ + "§7Consume this item to add its", + "§7destination to your Fast Travel", + "§7options.", + "", + "§7Island: §aSkyBlock Hub", + "§7Teleport: §eWizard Tower", + "", + "§5§kX§5 Rift-Transferable §kX", + "§5§lEPIC TRAVEL SCROLLt!" + ], + "internalname": "HUB_WIZARD_TOWER_TRAVEL_SCROLL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Travel_Scroll_To_The_Wizard_Tower" + ] +}
\ No newline at end of file diff --git a/items/INVERTED_SIRIUS_RIFT_NPC.json b/items/INVERTED_SIRIUS_RIFT_NPC.json new file mode 100644 index 00000000..d040cfe2 --- /dev/null +++ b/items/INVERTED_SIRIUS_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dInverted Sirius (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"7fedc449-ae12-284f-b94e-6bc631823436\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUxNTNlMzViNTY5ZDc1MGQ5ZWQ5NjcyZGFmZGUxYTM2MmI4YWRlODYzMjIyMTRiYzAwNmQ1ZDFhZjFjMzQxYjAifX19\"}]},Name:\"7fedc449-ae12-284f-b94e-6bc631823436\"},display:{Lore:[0:\"\"],Name:\"§dInverted Sirius (Rift NPC)\"},ExtraAttributes:{id:\"INVERTED_SIRIUS_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "INVERTED_SIRIUS_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -96, + "y": 76, + "z": 191, + "island": "rift" +}
\ No newline at end of file diff --git a/items/JACQUELLE_RIFT_NPC.json b/items/JACQUELLE_RIFT_NPC.json new file mode 100644 index 00000000..555e012c --- /dev/null +++ b/items/JACQUELLE_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dJacquelle (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ed7980c7-3550-2eea-9de1-4289eb9dff04\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhlYmQzZjk2NmFlZGY3NDc2MTgzZGZkYTk2NmUzM2M5YmZjNDllYTc0ZTEwZDk5YmU4OGUzZTFkM2QwYzI5ODUifX19\"}]},Name:\"ed7980c7-3550-2eea-9de1-4289eb9dff04\"},display:{Lore:[0:\"\"],Name:\"§dJacquelle (Rift NPC)\"},ExtraAttributes:{id:\"JACQUELLE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "JACQUELLE_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -122, + "y": 120, + "z": 137, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/JUICY_HEALING_MELON.json b/items/JUICY_HEALING_MELON.json new file mode 100644 index 00000000..85f507a7 --- /dev/null +++ b/items/JUICY_HEALING_MELON.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:melon", + "displayname": "§5Juicy Healing Melon", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Succulence §e§lRIGHT CLICK\",1:\"§7Take a bite and heal §c9❤§7.\",2:\"§8Mana Cost: §360\",3:\"\",4:\"§5§lEPIC\"],Name:\"§5Juicy Healing Melon\"},ExtraAttributes:{id:\"JUICY_HEALING_MELON\"}}", + "damage": 0, + "lore": [ + "§6Ability: Succulence §e§lRIGHT CLICK", + "§7Take a bite and heal §c9❤§7.", + "§8Mana Cost: §360", + "", + "§5§lEPIC" + ], + "recipe": { + "A1": "COVEN_SEAL:2", + "A2": "COVEN_SEAL:2", + "A3": "COVEN_SEAL:2", + "B1": "COVEN_SEAL:2", + "B2": "HEALING_MELON:1", + "B3": "COVEN_SEAL:2", + "C1": "COVEN_SEAL:2", + "C2": "COVEN_SEAL:2", + "C3": "COVEN_SEAL:2" + }, + "internalname": "JUICY_HEALING_MELON", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Juicy_Healing_Melon", + "https://wiki.hypixel.net/Juicy_Healing_Melon" + ] +}
\ No newline at end of file diff --git a/items/KAT_RIFT_NPC.json b/items/KAT_RIFT_NPC.json new file mode 100644 index 00000000..b39432ec --- /dev/null +++ b/items/KAT_RIFT_NPC.json @@ -0,0 +1,70 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dKat (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9ee934fd-ce71-2b39-a5b0-7d42e61a13ab\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFjMWYyMDBhMTczOGE0ZTJiMTg5NmJmMTI5MjY1MGYyNmE2YjM2ZTA0Y2RhMWNkNzg1ZGVmYzdhZjk3MmRjZDkifX19\"}]},Name:\"9ee934fd-ce71-2b39-a5b0-7d42e61a13ab\"},display:{Lore:[0:\"\"],Name:\"§dKat (Rift NPC)\"},ExtraAttributes:{id:\"KAT_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "KAT_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -34, + "y": 71, + "z": -90, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "DISINFESTOR_GLOVES:1", + "cost": [ + "SHADOW_CRUX:12", + "SKYBLOCK_FLY:4", + "SKYBLOCK_SPIDER:4", + "SKYBLOCK_SILVERFISH:4" + ] + }, + { + "type": "npc_shop", + "result": "VERMIN_BELT:1", + "cost": [ + "LEECH_BELT:1", + "SKYBLOCK_FLY:15" + ] + }, + { + "type": "npc_shop", + "result": "RIFT_FERRET;3:1", + "cost": [ + "RIFTWART_ROOTS:12", + "SKYBLOCK_FLY:20", + "SKYBLOCK_SPIDER:10", + "SKYBLOCK_SILVERFISH:20" + ] + }, + { + "type": "npc_shop", + "result": "KEY_TO_KAT_SOUL:1", + "cost": [ + "SKYBLOCK_SILVERFISH:40" + ] + }, + { + "type": "npc_shop", + "result": "FAKE_NEUROSCIENCE_DEGREE:1", + "cost": [ + "VOLT_CRUX:10", + "SHADOW_CRUX:10", + "SKYBLOCK_MOTE:5000", + "SKYBLOCK_FLY:30", + "SKYBLOCK_SPIDER:40", + "SKYBLOCK_SILVERFISH:60" + ] + } + ], + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Kat_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/KAY_RIFT_NPC.json b/items/KAY_RIFT_NPC.json new file mode 100644 index 00000000..0ac5be99 --- /dev/null +++ b/items/KAY_RIFT_NPC.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dKay (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"823ec4ce-65cd-266a-af56-aa210b7ae70d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2U5ZTIyZGRhZGNlODY4NTZmMjBlNDNiMmI3N2RhMjgxNmI1OWNhMTg0Y2ZlZDdjMWFkOTgwYjgyZjkwNWJkNWUifX19\"}]},Name:\"823ec4ce-65cd-266a-af56-aa210b7ae70d\"},display:{Lore:[0:\"\"],Name:\"§dKay (Rift NPC)\"},ExtraAttributes:{id:\"KAY_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "KAY_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -191, + "y": 69, + "z": 59, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "cost": [ + "LIL_PAD:1" + ], + "result": "SKYBLOCK_MOTE:10" + } + ] +}
\ No newline at end of file diff --git a/items/KEY_TO_KAT_SOUL.json b/items/KEY_TO_KAT_SOUL.json new file mode 100644 index 00000000..9e60186d --- /dev/null +++ b/items/KEY_TO_KAT_SOUL.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:gold_nugget", + "displayname": "§9Key to Infested House Soul", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Hold this item in your inventory\",1:\"§7to use the soul in the infested\",2:\"§7house.\",3:\"\",4:\"§9§lRARE\"],Name:\"§9Key to Infested House Soul\"},ExtraAttributes:{id:\"KEY_TO_KAT_SOUL\"}}", + "damage": 0, + "lore": [ + "§7Hold this item in your inventory", + "§7to use the soul in the infested", + "§7house.", + "", + "§9§lRARE" + ], + "internalname": "KEY_TO_KAT_SOUL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Key_To_Infested_House_Soul" + ] +}
\ No newline at end of file diff --git a/items/LAGOON_LEECH_MONSTER.json b/items/LAGOON_LEECH_MONSTER.json new file mode 100644 index 00000000..322cda62 --- /dev/null +++ b/items/LAGOON_LEECH_MONSTER.json @@ -0,0 +1,42 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aLagoon Leech (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"db3815d5-5c69-43ec-b35c-12d47d6baf14\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY3ZWRlOWM4OGYxYzMzYzk1NGJiYzgxYzhkYTg3MWNhYmZjYzIzZDU1ZjhiNDkzYTU4OWY4MjM5ZDZjMzkifX19\"}]},Name:\"§db3815d5-5c69-43ec-b35c-12d47d6baf14\"},display:{Lore:[0:\"§7Found in the §3Black Lagoon§7.\",1:\"\",2:\"§c❤ Health§8: §c80\"],Name:\"§aLagoon Leech (Monster)\"},ExtraAttributes:{id:\"LAGOON_LEECH_MONSTER\"}}", + "damage": 3, + "lore": [ + "§7Found in the §3Black Lagoon§7.", + "", + "§c❤ Health§8: §c80" + ], + "internalname": "LAGOON_LEECH_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§2Lagoon Leech", + "render": "@neurepo:mobs/lagoon_leech.json", + "level": 2, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "LIL_PAD:6", + "chance": "100%" + }, + { + "id": "LIL_PAD:3", + "chance": "50%" + }, + { + "id": "LIL_PAD:3", + "chance": "50%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/LARVA_HOOK.json b/items/LARVA_HOOK.json new file mode 100644 index 00000000..69651759 --- /dev/null +++ b/items/LARVA_HOOK.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:tripwire_hook", + "displayname": "§aLarva Hook", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Click the §6larvas §7crawling\",1:\"§7around tree branches to\",2:\"§7tactfully extract their silk.\",3:\"\",4:\"§7§7You may harvest §68 larvas\",5:\"§6§7per hook.\",6:\"\",7:\"§a§lUNCOMMON\"],Name:\"§aLarva Hook\"},ExtraAttributes:{id:\"LARVA_HOOK\"}}", + "damage": 0, + "lore": [ + "§7Click the §6larvas §7crawling", + "§7around tree branches to", + "§7tactfully extract their silk.", + "", + "§7§7You may harvest §68 larvas", + "§6§7per hook.", + "", + "§a§lUNCOMMON" + ], + "internalname": "LARVA_HOOK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Larva_Hook", + "https://wiki.hypixel.net/Larva_Hook" + ] +}
\ No newline at end of file diff --git a/items/LAZARUS_RIFT_NPC.json b/items/LAZARUS_RIFT_NPC.json new file mode 100644 index 00000000..fc0c2c95 --- /dev/null +++ b/items/LAZARUS_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dLazarus (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"b70103b2-6c31-22a6-8e72-511650992c4d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYxODMwM2M4MDkyYmJlYThmNjBjOTgzMDM1ODMxNjYyOTg5ZDg4ZTBiZDAzMWU1M2MyYzJiYjJmNmU3MWRmYWUifX19\"}]},Name:\"b70103b2-6c31-22a6-8e72-511650992c4d\"},display:{Lore:[0:\"\"],Name:\"§dLazarus (Rift NPC)\"},ExtraAttributes:{id:\"LAZARUS_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "LAZARUS_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -128, + "y": 80, + "z": 166, + "island": "rift" +}
\ No newline at end of file diff --git a/items/LEECH_BELT.json b/items/LEECH_BELT.json index 1674c467..9a7c39d9 100644 --- a/items/LEECH_BELT.json +++ b/items/LEECH_BELT.json @@ -1,17 +1,17 @@ { "itemid": "minecraft:skull", - "displayname": "§5Leech Belt", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"747022d7-4f1b-3642-a7de-70aa43cd6cd4\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0ODQ4MDI2MzM0MSwKICAicHJvZmlsZUlkIiA6ICJhOGJhMGY1YTFmNjQ0MTgzODZkZGI3OWExZmY5ZWRlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJDcmVlcGVyOTA3NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kYmE2MzBhNzcwMzU2OTBlNjU1ZTY0ZTRhZDMwMTNkMzJmZTdhNGNiZTQzYzVmY2FiYTY0M2QxZjI2YjdhMDkyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Speed: §a+3\",1:\"§7Intelligence: §a+10\",2:\"\",3:\"§7Monster melee attacks reduce §a1\",4:\"§a§7less §aф Rift Time§7.\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§5§lEPIC BELT\"],Name:\"§5Leech Belt\"},ExtraAttributes:{id:\"LEECH_BELT\"}}", + "displayname": "§9Leech Belt", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"747022d7-4f1b-3642-a7de-70aa43cd6cd4\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0ODQ4MDI2MzM0MSwKICAicHJvZmlsZUlkIiA6ICJhOGJhMGY1YTFmNjQ0MTgzODZkZGI3OWExZmY5ZWRlYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJDcmVlcGVyOTA3NSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9kYmE2MzBhNzcwMzU2OTBlNjU1ZTY0ZTRhZDMwMTNkMzJmZTdhNGNiZTQzYzVmY2FiYTY0M2QxZjI2YjdhMDkyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Intelligence: §a+5\",1:\"§7Speed: §a+3\",2:\"\",3:\"§7Monster melee attacks reduce §a1\",4:\"§a§7less §aф Rift Time§7.\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§9§lRARE BELT\"],Name:\"§9Leech Belt\"},ExtraAttributes:{id:\"LEECH_BELT\"}}", "damage": 3, "lore": [ + "§7Intelligence: §a+5", "§7Speed: §a+3", - "§7Intelligence: §a+10", "", "§7Monster melee attacks reduce §a1", "§a§7less §aф Rift Time§7.", "", "§7§8This item can be reforged!", - "§5§lEPIC BELT" + "§9§lRARE BELT" ], "recipe": { "A1": "LEECH_SUPREME_FRAGMENT:1", @@ -26,7 +26,7 @@ }, "internalname": "LEECH_BELT", "clickcommand": "viewrecipe", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "crafttext": "", "infoType": "WIKI_URL", "info": [ diff --git a/items/LEECH_SUPREME_MINIBOSS.json b/items/LEECH_SUPREME_MINIBOSS.json new file mode 100644 index 00000000..1390f1dd --- /dev/null +++ b/items/LEECH_SUPREME_MINIBOSS.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Leech Supreme (Miniboss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"db784d7a-fae1-3d60-9a5a-42a1814037f8\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDk3NmZmZGQyOTJjMzRmZGFiYjJhY2ZhNjJkYmZkNGYwZDEzMDAwODc4NTgwOWJlMDE2ZDNkNzI1N2JiMzFmMiJ9fX0K\"}]}},display:{Lore:[0:\"§7Angered by what he\u0027s found\",1:\"§7below.\",2:\"\",3:\"§c❤ Health§8: §c20,000 - 900,000\",4:\"§c❤ Health §8(MM) : §c1,000,000 - 12,000,000\"],Name:\"§d§lAngry Archeologist (Miniboss)\"},ExtraAttributes:{id:\"ANGRY_ARCHEOLOGIST_MINIBOSS\"}}", + "damage": 3, + "lore": [ + "", + "§c❤ Health§8: §c800" + ], + "internalname": "LEECH_SUPREME_MINIBOSS", + "clickcommand": "viewrecipe", + "modver": "2.1.0-REL", + "infoType": "", + "info": [ + ], + "crafttext": "", + "recipes": [ + { + "name": "§cLeech Supreme", + "render": "@neurepo:mobs/leech_supreme.json", + "level": 10, + "combat_xp": 0, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "LEECH_SUPREME_FRAGMENT:8", + "chance": "100%" + } + ] + } + ] + } diff --git a/items/LEECH_SWORD.json b/items/LEECH_SWORD.json index 24518204..221b2b73 100644 --- a/items/LEECH_SWORD.json +++ b/items/LEECH_SWORD.json @@ -1,25 +1,30 @@ { "itemid": "minecraft:wooden_sword", "displayname": "§9Leech Sword", - "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Refunds §b3 Mana §7on hit.\",1:\"\",2:\"§9§lRARE\"],Name:\"§9Leech Sword\"},ExtraAttributes:{id:\"LEECH_SWORD\"}}", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Speed: §a+2\",1:\"\",2:\"§7Regens §b3 Mana §7on hit.\",3:\"\",4:\"§7§8This item can be reforged!\",5:\"§9§lRARE SWORD\"],Name:\"§9Leech Sword\"},ExtraAttributes:{id:\"LEECH_SWORD\"}}", "damage": 0, "lore": [ - "§7Refunds §b3 Mana §7on hit.", + "§7Speed: §a+2", "", - "§9§lRARE" + "§7Regens §b3 Mana §7on hit.", + "", + "§7§8This item can be reforged!", + "§9§lRARE SWORD" ], "recipe": { - "A1": "", - "A2": "LEECH_SUPREME_FRAGMENT:4", - "A3": "", - "B1": "", - "B2": "LEECH_SUPREME_FRAGMENT:4", - "B3": "", - "C1": "", - "C2": "DEADGEHOG_SPINE:12", - "C3": "" + "A1": "DEADGEHOG_SPINE:2", + "A2": "LEECH_SUPREME_FRAGMENT:2", + "A3": "DEADGEHOG_SPINE:2", + "B1": "DEADGEHOG_SPINE:2", + "B2": "LEECH_SUPREME_FRAGMENT:2", + "B3": "DEADGEHOG_SPINE:2", + "C1": "DEADGEHOG_SPINE:2", + "C2": "WYLD_SWORD:1", + "C3": "DEADGEHOG_SPINE:2" }, "internalname": "LEECH_SWORD", "clickcommand": "viewrecipe", - "modver": "2.1.0-REL" + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "" }
\ No newline at end of file diff --git a/items/LEGGINGS_OF_THE_COVEN.json b/items/LEGGINGS_OF_THE_COVEN.json new file mode 100644 index 00000000..0e78bca4 --- /dev/null +++ b/items/LEGGINGS_OF_THE_COVEN.json @@ -0,0 +1,42 @@ +{ + "itemid": "minecraft:leather_leggings", + "displayname": "§5Leggings of the Coven", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+80s\",1:\"§7Hearts: §a+1\",2:\"§7Mana Regen: §a+6%\",3:\"\",4:\"§6Ability: Friendship is Power\",5:\"§7Gain §5+1❁ Rift Damage §7and\",6:\"§7§b+2⚡ Mana Regen §7for each\",7:\"§7other §7wearer within §a64\",8:\"§a§7blocks.\",9:\"§8Max of 3 players!\",10:\"\",11:\"§7§dSame color \u003d 2x stats!\",12:\"§eLeft-click to pick color!\",13:\"\",14:\"§5§lEPIC LEGGINGS\"],color:10040115,Name:\"§5Leggings of the Coven\"},ExtraAttributes:{id:\"LEGGINGS_OF_THE_COVEN\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+80s", + "§7Hearts: §a+1", + "§7Mana Regen: §a+6%", + "", + "§6Ability: Friendship is Power", + "§7Gain §5+1❁ Rift Damage §7and", + "§7§b+2⚡ Mana Regen §7for each", + "§7other §7wearer within §a64", + "§a§7blocks.", + "§8Max of 3 players!", + "", + "§7§dSame color \u003d 2x stats!", + "§eLeft-click to pick color!", + "", + "§5§lEPIC LEGGINGS" + ], + "recipe": { + "A1": "FEMURGROWTH_LEGGINGS:1", + "A2": "BLOODBADGE:1", + "A3": "LEGGINGS_OF_THE_PACK:1", + "B1": "METAL_HEART:6", + "B2": "", + "B3": "METAL_HEART:6", + "C1": "METAL_HEART:6", + "C2": "", + "C3": "METAL_HEART:6" + }, + "internalname": "LEGGINGS_OF_THE_COVEN", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Leggings_Of_The_Coven" + ] +}
\ No newline at end of file diff --git a/items/LEGGINGS_OF_THE_PACK.json b/items/LEGGINGS_OF_THE_PACK.json index 6e9febb8..14f68392 100644 --- a/items/LEGGINGS_OF_THE_PACK.json +++ b/items/LEGGINGS_OF_THE_PACK.json @@ -1,23 +1,25 @@ { "itemid": "minecraft:iron_leggings", "displayname": "§f§f§5Leggings of the Pack", - "nbttag": "{overrideMeta:1b,Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+80\",1:\"§7Defense: §a+75\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense §7aswell.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearers\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players\",12:\"\",13:\"§4☠ §cRequires §5Wolf Slayer 6§c.\",14:\"§5§lEPIC LEGGINGS\"],Name:\"§f§f§5Leggings of the Pack\"},ExtraAttributes:{modifier:\"strong\",id:\"LEGGINGS_OF_THE_PACK\"},AttributeModifiers:[]}", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Health: §a+80\",1:\"§7Defense: §a+75\",2:\"\",3:\"§7Gain §a+50❈ Defense §7against animals.\",4:\"§7Gain §f+5❂ True Defense§7.\",5:\"\",6:\"§6Full Set Bonus: §cArmor of the Pack\",7:\"§7Gain §c+35❁ Strength §7and\",8:\"§7§a+80❈ Defense §7for each\",9:\"§7§cArmor of the Pack §7wearer\",10:\"§7within §a30 §7blocks.\",11:\"§8Max of 3 players!\",12:\"\",13:\"§7§8This item can be reforged!\",14:\"§7§4☠ §cRequires §5Wolf Slayer 6§c.\",15:\"§5§kX§5 Rift-Transferable §kX\",16:\"§5§lEPIC LEGGINGS\"],Name:\"§f§f§5Leggings of the Pack\"},ExtraAttributes:{id:\"LEGGINGS_OF_THE_PACK\"}}", "damage": 0, "lore": [ "§7Health: §a+80", "§7Defense: §a+75", "", "§7Gain §a+50❈ Defense §7against animals.", - "§7Gain §f+5❂ True Defense §7aswell.", + "§7Gain §f+5❂ True Defense§7.", "", "§6Full Set Bonus: §cArmor of the Pack", "§7Gain §c+35❁ Strength §7and", "§7§a+80❈ Defense §7for each", - "§7§cArmor of the Pack §7wearers", + "§7§cArmor of the Pack §7wearer", "§7within §a30 §7blocks.", - "§8Max of 3 players", + "§8Max of 3 players!", "", - "§4☠ §cRequires §5Wolf Slayer 6§c.", + "§7§8This item can be reforged!", + "§7§4☠ §cRequires §5Wolf Slayer 6§c.", + "§5§kX§5 Rift-Transferable §kX", "§5§lEPIC LEGGINGS" ], "recipe": { diff --git a/items/LIVING_METAL.json b/items/LIVING_METAL.json new file mode 100644 index 00000000..a87573e1 --- /dev/null +++ b/items/LIVING_METAL.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:stained_glass", + "displayname": "§9Living Metal", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7It snakes around your blocky\",1:\"§7hand as your hold it.\",2:\"\",3:\"§eRight-click to view recipes!\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Living Metal\"},ExtraAttributes:{id:\"LIVING_METAL\"}}", + "damage": 11, + "lore": [ + "§7It snakes around your blocky", + "§7hand as your hold it.", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "LIVING_METAL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Living_Metal", + "https://wiki.hypixel.net/Living_Metal" + ] +}
\ No newline at end of file diff --git a/items/LIVING_METAL_ANVIL.json b/items/LIVING_METAL_ANVIL.json new file mode 100644 index 00000000..37cc14fe --- /dev/null +++ b/items/LIVING_METAL_ANVIL.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:anvil", + "displayname": "§9Living Metal Anchor", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7This anchor has a life.\",1:\"§7§7It likes music!\",2:\"§7§7Its favorite genre?\",3:\"§7§7Heavy metal.\",4:\"§7\",5:\"§7§8Reed needs this item.\",6:\"\",7:\"§9§lRARE\"],Name:\"§9Living Metal Anchor\"},ExtraAttributes:{id:\"LIVING_METAL_ANVIL\"}}", + "damage": 0, + "lore": [ + "§7This anchor has a life.", + "§7§7It likes music!", + "§7§7Its favorite genre?", + "§7§7Heavy metal.", + "§7", + "§7§8Reed needs this item.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "METAL_HEART:3", + "A2": "METAL_HEART:3", + "A3": "METAL_HEART:3", + "B1": "", + "B2": "LIVING_METAL:32", + "B3": "", + "C1": "LIVING_METAL:32", + "C2": "LIVING_METAL:32", + "C3": "LIVING_METAL:32" + }, + "internalname": "LIVING_METAL_ANVIL", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Living Metal Heart II", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Living_Metal_Anchor", + "https://wiki.hypixel.net/Living_Metal_Anchor" + ] +}
\ No newline at end of file diff --git a/items/LM_EGG_BOOTS.json b/items/LM_EGG_BOOTS.json new file mode 100644 index 00000000..9d1e4c90 --- /dev/null +++ b/items/LM_EGG_BOOTS.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:spawn_egg", + "displayname": "§9Living Metal Bootspawn", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Spawn §e§lRIGHT CLICK\",1:\"§7Spawns a living metal autoarmor\",2:\"§7which can be assimilated into\",3:\"§7your own armor.\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Living Metal Bootspawn\"},ExtraAttributes:{id:\"LM_EGG_BOOTS\"}}", + "damage": 58, + "lore": [ + "§6Ability: Spawn §e§lRIGHT CLICK", + "§7Spawns a living metal autoarmor", + "§7which can be assimilated into", + "§7your own armor.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "", + "A3": "", + "B1": "LIVING_METAL:1", + "B2": "", + "B3": "LIVING_METAL:1", + "C1": "LIVING_METAL:1", + "C2": "", + "C3": "LIVING_METAL:1" + }, + "internalname": "LM_EGG_BOOTS", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Living_Metal_Bootspawn" + ] +}
\ No newline at end of file diff --git a/items/LM_EGG_CAP.json b/items/LM_EGG_CAP.json new file mode 100644 index 00000000..6991569b --- /dev/null +++ b/items/LM_EGG_CAP.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:spawn_egg", + "displayname": "§9Living Metal Capspawn", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Spawn §e§lRIGHT CLICK\",1:\"§7Spawns a living metal autoarmor\",2:\"§7which can be assimilated into\",3:\"§7your own armor.\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Living Metal Capspawn\"},ExtraAttributes:{id:\"LM_EGG_CAP\"}}", + "damage": 94, + "lore": [ + "§6Ability: Spawn §e§lRIGHT CLICK", + "§7Spawns a living metal autoarmor", + "§7which can be assimilated into", + "§7your own armor.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "LIVING_METAL:1", + "A2": "LIVING_METAL:1", + "A3": "LIVING_METAL:1", + "B1": "LIVING_METAL:1", + "B2": "", + "B3": "LIVING_METAL:1", + "C1": "", + "C2": "", + "C3": "" + }, + "internalname": "LM_EGG_CAP", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Living_Metal_Capspawn" + ] +}
\ No newline at end of file diff --git a/items/LM_EGG_CHEST.json b/items/LM_EGG_CHEST.json new file mode 100644 index 00000000..6655586c --- /dev/null +++ b/items/LM_EGG_CHEST.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:spawn_egg", + "displayname": "§9Living Metal Chestspawn", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Spawn §e§lRIGHT CLICK\",1:\"§7Spawns a living metal autoarmor\",2:\"§7which can be assimilated into\",3:\"§7your own armor.\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Living Metal Chestspawn\"},ExtraAttributes:{id:\"LM_EGG_CHEST\"}}", + "damage": 67, + "lore": [ + "§6Ability: Spawn §e§lRIGHT CLICK", + "§7Spawns a living metal autoarmor", + "§7which can be assimilated into", + "§7your own armor.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "LIVING_METAL:1", + "A2": "", + "A3": "LIVING_METAL:1", + "B1": "LIVING_METAL:1", + "B2": "LIVING_METAL:1", + "B3": "LIVING_METAL:1", + "C1": "LIVING_METAL:1", + "C2": "LIVING_METAL:1", + "C3": "LIVING_METAL:1" + }, + "internalname": "LM_EGG_CHEST", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Living_Metal_Chestspawn" + ] +}
\ No newline at end of file diff --git a/items/LM_EGG_LEGS.json b/items/LM_EGG_LEGS.json new file mode 100644 index 00000000..9d3aed49 --- /dev/null +++ b/items/LM_EGG_LEGS.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:spawn_egg", + "displayname": "§9Living Metal Pantspawn", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Spawn §e§lRIGHT CLICK\",1:\"§7Spawns a living metal autoarmor\",2:\"§7which can be assimilated into\",3:\"§7your own armor.\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Living Metal Pantspawn\"},ExtraAttributes:{id:\"LM_EGG_LEGS\"}}", + "damage": 54, + "lore": [ + "§6Ability: Spawn §e§lRIGHT CLICK", + "§7Spawns a living metal autoarmor", + "§7which can be assimilated into", + "§7your own armor.", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "LIVING_METAL:1", + "A2": "LIVING_METAL:1", + "A3": "LIVING_METAL:1", + "B1": "LIVING_METAL:1", + "B2": "", + "B3": "LIVING_METAL:1", + "C1": "LIVING_METAL:1", + "C2": "", + "C3": "LIVING_METAL:1" + }, + "internalname": "LM_EGG_LEGS", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Living_Metal_Pantspawn" + ] +}
\ No newline at end of file diff --git a/items/LUSH_ARTIFACT.json b/items/LUSH_ARTIFACT.json new file mode 100644 index 00000000..d9df18ef --- /dev/null +++ b/items/LUSH_ARTIFACT.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Lush Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"692b1bd5-db25-3506-9481-a711e6162beb\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3OTY3MDI2MTE4MiwKICAicHJvZmlsZUlkIiA6ICIwOTZkYWUzZWY1MmU0YWU4ODk3ODY2N2EyOGIwZWFhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJPb29rYXl5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM5YTljZTcwZGMxNjNmM2YwNjlmYzg5NTg2MDIzNGNjOTM3MWVkNjkzY2JmYTZlMGViNGI0OGE5ZmU1ODhjMTkiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"\",1:\"§5§lEPIC ACCESSORY\"],Name:\"§5Lush Artifact\"},ExtraAttributes:{id:\"LUSH_ARTIFACT\"}}", + "damage": 3, + "lore": [ + "", + "§5§lEPIC ACCESSORY" + ], + "recipe": { + "A1": "ENCHANTED_LUSH_BERBERIS:64", + "A2": "ENCHANTED_LUSH_BERBERIS:64", + "A3": "ENCHANTED_LUSH_BERBERIS:64", + "B1": "ENCHANTED_LUSH_BERBERIS:64", + "B2": "LUSH_RING:1", + "B3": "ENCHANTED_LUSH_BERBERIS:64", + "C1": "ENCHANTED_LUSH_BERBERIS:64", + "C2": "ENCHANTED_LUSH_BERBERIS:64", + "C3": "ENCHANTED_LUSH_BERBERIS:64" + }, + "internalname": "LUSH_ARTIFACT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Lush_Artifact", + "https://wiki.hypixel.net/Lush_Artifact" + ] +}
\ No newline at end of file diff --git a/items/LUSH_BERBERIS.json b/items/LUSH_BERBERIS.json new file mode 100644 index 00000000..e8a50887 --- /dev/null +++ b/items/LUSH_BERBERIS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:double_plant", + "displayname": "§aLush Berberis", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7A wonderful plant!\",1:\"\",2:\"§eRight-click to view recipes!\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aLush Berberis\"},ExtraAttributes:{id:\"LUSH_BERBERIS\"}}", + "damage": 3, + "lore": [ + "§7A wonderful plant!", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "LUSH_BERBERIS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Lush_Berberis", + "https://wiki.hypixel.net/Lush_Berberis" + ] +}
\ No newline at end of file diff --git a/items/LUSH_RING.json b/items/LUSH_RING.json new file mode 100644 index 00000000..3cf784da --- /dev/null +++ b/items/LUSH_RING.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Lush Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ec31827c-b25c-30cf-9dc3-5d956ea29df1\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmY5YzcxYWYzZjdlODE5ZWMzYzQ0OTZmMjkxNTY3YWVmYjk4ZjU1ODQ1MTdkYTI2NmJhMGE2ZWNjYWE5YTZlMyJ9fX0\u003d\"}]}},display:{Lore:[0:\"\",1:\"§9§lRARE ACCESSORY\"],Name:\"§9Lush Ring\"},ExtraAttributes:{id:\"LUSH_RING\"}}", + "damage": 3, + "lore": [ + "", + "§9§lRARE ACCESSORY" + ], + "recipe": { + "A1": "ENCHANTED_LUSH_BERBERIS:8", + "A2": "ENCHANTED_LUSH_BERBERIS:8", + "A3": "ENCHANTED_LUSH_BERBERIS:8", + "B1": "ENCHANTED_LUSH_BERBERIS:8", + "B2": "LUSH_TALISMAN:1", + "B3": "ENCHANTED_LUSH_BERBERIS:8", + "C1": "ENCHANTED_LUSH_BERBERIS:8", + "C2": "ENCHANTED_LUSH_BERBERIS:8", + "C3": "ENCHANTED_LUSH_BERBERIS:8" + }, + "internalname": "LUSH_RING", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Lush_Ring", + "https://wiki.hypixel.net/Lush_Ring" + ] +}
\ No newline at end of file diff --git a/items/LUSH_TALISMAN.json b/items/LUSH_TALISMAN.json new file mode 100644 index 00000000..ee166d6b --- /dev/null +++ b/items/LUSH_TALISMAN.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aLush Talisman", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3e082970-3153-3b28-84b2-422f9f8ef5bb\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjNiYTQ4NDQ4MTg5YmVmNGZkM2IzZTU2ZWU2ZjlmNWMxN2YxZWQ5NjQ4ZGE5NTU0NTFlZjFmZTY1NjAxYiJ9fX0\u003d\"}]}},display:{Lore:[0:\"\",1:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aLush Talisman\"},ExtraAttributes:{id:\"LUSH_TALISMAN\"}}", + "damage": 3, + "lore": [ + "", + "§a§lUNCOMMON ACCESSORY" + ], + "recipe": { + "A1": "LUSH_BERBERIS:64", + "A2": "LUSH_BERBERIS:64", + "A3": "LUSH_BERBERIS:64", + "B1": "LUSH_BERBERIS:64", + "B2": "LUSH_BERBERIS:64", + "B3": "LUSH_BERBERIS:64", + "C1": "LUSH_BERBERIS:64", + "C2": "LUSH_BERBERIS:64", + "C3": "LUSH_BERBERIS:64" + }, + "internalname": "LUSH_TALISMAN", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Lush_Talisman", + "https://wiki.hypixel.net/Lush_Talisman" + ] +}
\ No newline at end of file diff --git a/items/METAL_HEART.json b/items/METAL_HEART.json new file mode 100644 index 00000000..ca7bc026 --- /dev/null +++ b/items/METAL_HEART.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Living Metal Heart", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"c678b8cc-c130-31d1-baf3-14660f8ef742\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NjQ3NjQ1NjcyNywKICAicHJvZmlsZUlkIiA6ICI5MGQ1NDY0OGEzNWE0YmExYTI2Yjg1YTg4NTU4OGJlOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJFdW4wbWlhIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YwMjc4ZWU1M2E1M2I3NzMzYzdiODQ1MmZjZjc5NGRmYmZiYzNiMDMyZTc1MGE2OTkzNTczYjViZDAyOTkxMzUiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Something about DNA...\",1:\"\",2:\"§9§lRARE\"],Name:\"§9Living Metal Heart\"},ExtraAttributes:{id:\"METAL_HEART\"}}", + "damage": 3, + "lore": [ + "§7Something about DNA...", + "", + "§9§lRARE" + ], + "internalname": "METAL_HEART", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Living_Metal_Heart", + "https://wiki.hypixel.net/Living_Metal_Heart" + ] +}
\ No newline at end of file diff --git a/items/METAPHORIC_EGG.json b/items/METAPHORIC_EGG.json new file mode 100644 index 00000000..5d9ed637 --- /dev/null +++ b/items/METAPHORIC_EGG.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:egg", + "displayname": "§9Metaphoric Egg", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7A ticking time bomb to new life.\",1:\"§7Acquired using Berberis Blowgun.\",2:\"\",3:\"§eRight-click to view recipes!\",4:\"\",5:\"§9§lRARE\"],Name:\"§9Metaphoric Egg\"},ExtraAttributes:{id:\"METAPHORIC_EGG\"}}", + "damage": 0, + "lore": [ + "§7A ticking time bomb to new life.", + "§7Acquired using Berberis Blowgun.", + "", + "§eRight-click to view recipes!", + "", + "§9§lRARE" + ], + "internalname": "METAPHORIC_EGG", + "clickcommand": "", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Metaphoric_Egg", + "https://wiki.hypixel.net/Metaphoric_Egg" + ] +}
\ No newline at end of file diff --git a/items/MINIATURIZED_TUBULATOR.json b/items/MINIATURIZED_TUBULATOR.json new file mode 100644 index 00000000..032711b4 --- /dev/null +++ b/items/MINIATURIZED_TUBULATOR.json @@ -0,0 +1,24 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aMiniaturized Tubulator", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"316284de-3237-3344-89c4-0f560b3197cc\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmRjNzkxMzIyOWNiMmU4OTgwNzFiMGMyYmM4ZjEzYmQ4ZGJhNjlkYmRjY2FmNGQxZGE2NDNhYjcyNmI5MjVhZiJ9fX0\u003d\"}]}},display:{Lore:[0:\"\",1:\"§7Don\u0027t hate the player, hate the\",2:\"§7game. - Ice T\",3:\"\",4:\"§8§l* §8Co-op Soulbound §8§l*\",5:\"§5§kX§5 Rift-Transferable §kX\",6:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aMiniaturized Tubulator\"},ExtraAttributes:{id:\"MINIATURIZED_TUBULATOR\"}}", + "damage": 3, + "lore": [ + "", + "§7Don\u0027t hate the player, hate the", + "§7game. - Ice T", + "", + "§8§l* §8Co-op Soulbound §8§l*", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON ACCESSORY" + ], + "internalname": "MINIATURIZED_TUBULATOR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Miniaturized_Tubulator", + "https://wiki.hypixel.net/Miniaturized_Tubulator" + ] +}
\ No newline at end of file diff --git a/items/MOTES_GRUBBER_RIFT_NPC.json b/items/MOTES_GRUBBER_RIFT_NPC.json new file mode 100644 index 00000000..30f64bbb --- /dev/null +++ b/items/MOTES_GRUBBER_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dMotes Grubber (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7c0ec203-5ec2-27af-9339-733dd4d24b9c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2E2YTZiZTA1YmJlNmZlZTFlNGEwNDgxNDg0MzcwNmE0YTVjOTA3ZWUyNTdhNGMxMTlkNTdiNjVkYjVhNzkxOCJ9fX0\u003d\"}]},Name:\"7c0ec203-5ec2-27af-9339-733dd4d24b9c\"},display:{Lore:[0:\"\"],Name:\"§dMotes Grubber (Rift NPC)\"},ExtraAttributes:{id:\"MOTES_GRUBBER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "MOTES_GRUBBER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -92, + "y": 66, + "z": 157, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/MUTED_BARK.json b/items/MUTED_BARK.json new file mode 100644 index 00000000..6ac7ffd8 --- /dev/null +++ b/items/MUTED_BARK.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aMuted Bark", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"e761bb77-076a-3f96-9ea0-e57648194b46\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3ODIwMzI5NjgxMSwKICAicHJvZmlsZUlkIiA6ICI5MGQ1NDY0OGEzNWE0YmExYTI2Yjg1YTg4NTU4OGJlOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJFdW4wbWlhIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY3MWUzNDQ2ZWZhYmYwZmQ1NDdhM2Q1NGU5M2ZhM2M3ODA0MGFiMzNmODhjNDBkOTE5YjRlZGQ3ZWE0YmI3NSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7No longer barking.\",1:\"\",2:\"§a§lUNCOMMON\"],Name:\"§aMuted Bark\"},ExtraAttributes:{id:\"MUTED_BARK\"}}", + "damage": 3, + "lore": [ + "§7No longer barking.", + "", + "§a§lUNCOMMON" + ], + "internalname": "MUTED_BARK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Muted_Bark" + ] +}
\ No newline at end of file diff --git a/items/NEARLY_COHERENT_ROD.json b/items/NEARLY_COHERENT_ROD.json new file mode 100644 index 00000000..f6791001 --- /dev/null +++ b/items/NEARLY_COHERENT_ROD.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:carrot_on_a_stick", + "displayname": "§aNearly Coherent doR gnihsiF", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Hold this and §aGloria §7will\",1:\"§7follow you instead of running\",2:\"§7away.\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aNearly Coherent doR gnihsiF\"},ExtraAttributes:{id:\"NEARLY_COHERENT_ROD\"}}", + "damage": 0, + "lore": [ + "§7Hold this and §aGloria §7will", + "§7follow you instead of running", + "§7away.", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "MIRRORED_STICK:1", + "A2": "", + "A3": "", + "B1": "MIRRORED_STRING:1", + "B2": "MIRRORED_STICK:1", + "B3": "", + "C1": "NEARLY_WHOLE_CARROT:16", + "C2": "", + "C3": "MIRRORED_STICK:1" + }, + "internalname": "NEARLY_COHERENT_ROD", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Half-Eaten Carrot IV", + "infoType": "" +}
\ No newline at end of file diff --git a/items/NEARLY_WHOLE_CARROT.json b/items/NEARLY_WHOLE_CARROT.json new file mode 100644 index 00000000..a3f196dd --- /dev/null +++ b/items/NEARLY_WHOLE_CARROT.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:carrot", + "displayname": "§aNearly-Whole Carrot", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7The whole is better than the sum\",1:\"§7of its parts...\",2:\"\",3:\"§a§lUNCOMMON\"],Name:\"§aNearly-Whole Carrot\"},ExtraAttributes:{id:\"NEARLY_WHOLE_CARROT\"}}", + "damage": 0, + "lore": [ + "§7The whole is better than the sum", + "§7of its parts...", + "", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "HALF_EATEN_CARROT:16", + "A3": "", + "B1": "HALF_EATEN_CARROT:16", + "B2": "HALF_EATEN_CARROT:16", + "B3": "HALF_EATEN_CARROT:16", + "C1": "", + "C2": "HALF_EATEN_CARROT:16", + "C3": "" + }, + "internalname": "NEARLY_WHOLE_CARROT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Half-Eaten Carrot I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Nearly-Whole_Carrot", + "https://wiki.hypixel.net/Nearly-Whole_Carrot" + ] +}
\ No newline at end of file diff --git a/items/NOT_CHICKEN_MONSTER.json b/items/NOT_CHICKEN_MONSTER.json new file mode 100644 index 00000000..0d3a51ca --- /dev/null +++ b/items/NOT_CHICKEN_MONSTER.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aNot Chicken (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"00000000-0000-0000-0000-000000000000\",Properties:{textures:[0:{Value:\"e3RleHR1cmVzOntTS0lOOnt1cmw6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWI3MDIyOTY2ZTJkMTE4N2Q4NTFmYzI3ZWNkODgxYzA1YWUwNTMyZmYzNDIzN2ZkYjA4MGYwMjU4ZTNhZWUifX19\"}]}}}", + "damage": 3, + "lore": [ + "§7Shoot with §9Berberis Blowgun §7to kill.", + "§7Found near the §eDreadfarm §7in §dthe Rift§7.", + "", + "§c❤ Health§8: §c3" + ], + "internalname": "NOT_CHICKEN_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "type": "drops", + "coins": 0, + "level": 1, + "combat_xp": 0, + "drops": [ + "METAPHORIC_EGG:1" + ], + "render": "Chicken", + "panorama": "rift", + "name": "§2Not Chicken", + "xp": 0, + "extra": [] + } + ] +}
\ No newline at end of file diff --git a/items/NOT_DEADGEHOG_MASK.json b/items/NOT_DEADGEHOG_MASK.json new file mode 100644 index 00000000..ccced912 --- /dev/null +++ b/items/NOT_DEADGEHOG_MASK.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aNot-Dead-Gehog Mask", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"45744687-a207-3612-8df1-be96c7c2454e\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MTE0NTkxNDMxNSwKICAicHJvZmlsZUlkIiA6ICJiYzRlZGZiNWYzNmM0OGE3YWM5ZjFhMzlkYzIzZjRmOCIsCiAgInByb2ZpbGVOYW1lIiA6ICI4YWNhNjgwYjIyNDYxMzQwIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzc5YThhMGIyZmMzNDU3NmIxM2M3YWYwMjA3OTA3NGY3NWUyNmJiNDkyNDRlZWE1ZTg4NDFmMGIxM2ZhN2YwNjIiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+30s\",1:\"§7Intelligence: §a+15\",2:\"\",3:\"§6Ability: Helmets All The Way Up\",4:\"§7Regain §a+1ф §7when killing a\",5:\"§7monster.\",6:\"\",7:\"§a§lUNCOMMON HELMET\"],Name:\"§aNot-Dead-Gehog Mask\"},ExtraAttributes:{id:\"NOT_DEADGEHOG_MASK\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+30s", + "§7Intelligence: §a+15", + "", + "§6Ability: Helmets All The Way Up", + "§7Regain §a+1ф §7when killing a", + "§7monster.", + "", + "§a§lUNCOMMON HELMET" + ], + "internalname": "NOT_DEADGEHOG_MASK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Not-Dead-Gehog_Mask", + "https://wiki.hypixel.net/Not-Dead-Gehog_Mask" + ], + "recipe": { + "A1": "VOLT_CRUX:8", + "A2": "WYLD_LEGGINGS:1", + "A3": "VOLT_CRUX:8", + "B1": "METAPHORIC_EGG:8", + "B2": "", + "B3": "METAPHORIC_EGG:8", + "C1": "METAPHORIC_EGG:8", + "C2": "", + "C3": "METAPHORIC_EGG:8" + } +} diff --git a/items/NULLIFIED_METAL.json b/items/NULLIFIED_METAL.json new file mode 100644 index 00000000..36a2e937 --- /dev/null +++ b/items/NULLIFIED_METAL.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:carpet", + "displayname": "§aNullified Metal", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§eRight-click to view recipes!\",1:\"\",2:\"§a§lUNCOMMON\"],Name:\"§aNullified Metal\"},ExtraAttributes:{id:\"NULLIFIED_METAL\"}}", + "damage": 11, + "lore": [ + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "NULLIFIED_METAL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Nullified_Metal", + "https://wiki.hypixel.net/Nullified_Metal" + ] +}
\ No newline at end of file diff --git a/items/ORANGE_CHESTPLATE.json b/items/ORANGE_CHESTPLATE.json new file mode 100644 index 00000000..4c843f68 --- /dev/null +++ b/items/ORANGE_CHESTPLATE.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:leather_chestplate", + "displayname": "§5Orange Chestplate", + "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+45s\",1:\"§7Intelligence: §a+5\",2:\"§7Mana Regen: §a+10%\",3:\"\",4:\"§5§lEPIC CHESTPLATE\"],color:16729600,Name:\"§5Orange Chestplate\"},ExtraAttributes:{id:\"ORANGE_CHESTPLATE\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+45s", + "§7Intelligence: §a+5", + "§7Mana Regen: §a+10%", + "", + "§5§lEPIC CHESTPLATE" + ], + "recipe": { + "A1": "HALF_EATEN_CARROT:64", + "A2": "", + "A3": "HALF_EATEN_CARROT:64", + "B1": "HALF_EATEN_CARROT:64", + "B2": "ETALPTSEHC_NORI:1", + "B3": "HALF_EATEN_CARROT:64", + "C1": "HALF_EATEN_CARROT:64", + "C2": "HALF_EATEN_CARROT:64", + "C3": "HALF_EATEN_CARROT:64" + }, + "internalname": "ORANGE_CHESTPLATE", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Half-Eaten Carrot II", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Orange_Chestplate", + "https://wiki.hypixel.net/Orange_Chestplate" + ] +}
\ No newline at end of file diff --git a/items/PHASER_RIFT_NPC.json b/items/PHASER_RIFT_NPC.json new file mode 100644 index 00000000..24824a2b --- /dev/null +++ b/items/PHASER_RIFT_NPC.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dPhaser (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"2d1eb7ff-37db-24c2-9973-e98d16cef30a\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzg3MzRiYjk3ODdlYmM2OWRiZmMyOWY3ZmI3OTgwMDM5ZTdjZDYxM2MwMjk2MzMxOWI1Y2NhZjlhN2FkODg0NGQifX19\"}]},Name:\"2d1eb7ff-37db-24c2-9973-e98d16cef30a\"},display:{Lore:[0:\"\"],Name:\"§dPhaser (Rift NPC)\"},ExtraAttributes:{id:\"PHASER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "PHASER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": 60, + "y": 71, + "z": -88, + "island": "rift", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Phaser" + ] +}
\ No newline at end of file diff --git a/items/PLACEABLE_FAIRY_SOUL_RIFT.json b/items/PLACEABLE_FAIRY_SOUL_RIFT.json new file mode 100644 index 00000000..d4457d6f --- /dev/null +++ b/items/PLACEABLE_FAIRY_SOUL_RIFT.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Placeable Fairy Soul", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"57a4c8dc-9b8e-3d41-80da-a608901a6147\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjk2OTIzYWQyNDczMTAwMDdmNmFlNWQzMjZkODQ3YWQ1Mzg2NGNmMTZjMzU2NWExODFkYzhlNmIyMGJlMjM4NyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Place this fairy soul down on\",1:\"§7your island so you and others\",2:\"§7can find it.\",3:\"\",4:\"§5§kX§5 Rift-Transferable §kX\",5:\"§5§lEPIC\"],Name:\"§5Placeable Fairy Soul\"},ExtraAttributes:{id:\"PLACEABLE_FAIRY_SOUL_RIFT\"}}", + "damage": 3, + "lore": [ + "§7Place this fairy soul down on", + "§7your island so you and others", + "§7can find it.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§5§lEPIC" + ], + "internalname": "PLACEABLE_FAIRY_SOUL_RIFT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Placeable_Fairy_Soul" + ] +}
\ No newline at end of file diff --git a/items/PLUMBER_JOE_RIFT_NPC.json b/items/PLUMBER_JOE_RIFT_NPC.json new file mode 100644 index 00000000..cb374e8d --- /dev/null +++ b/items/PLUMBER_JOE_RIFT_NPC.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dPlumber Joe (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0d8391c2-1748-4869-8631-935ff2d55e07\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNGNhOGVmMjQ1OGEyYjEwMjYwYjg3NTY1NThmNzY3OWJjYjdlZjY5MWQ0MWY1MzRlZmVhMmJhNzUxMDczMTVjYyJ9fX0\u003d\"}]}},display:{Lore:[0:\"\"],Name:\"§dPlumber Joe (Rift NPC)\"},ExtraAttributes:{id:\"PLUMBER_JOE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "PLUMBER_JOE_RIFT_NPC", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Plumber_Joe", + "https://wiki.hypixel.net/Plumber_Joe" + ], + "crafttext": "", + "x": -63, + "y": 70, + "z": -77, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "RIFT_BUCKET:1", + "cost": [ + "SKYBLOCK_MOTE:1000" + ] + } + ] +}
\ No newline at end of file diff --git a/items/POLARVOID_BOOK.json b/items/POLARVOID_BOOK.json new file mode 100644 index 00000000..564dbbf0 --- /dev/null +++ b/items/POLARVOID_BOOK.json @@ -0,0 +1,41 @@ +{ + "itemid": "minecraft:book", + "displayname": "§9Polarvoid Book", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§8Combinable in Anvil\",1:\"\",2:\"§7When applied to a drill, grants\",3:\"§7§6+10⸕ Mining Speed§7.\",4:\"\",5:\"§7This can be applied to an item\",6:\"§7up to §a5 §7times!\",7:\"\",8:\"§7If at least 1 book is applied,\",9:\"§7grants §2+1Ⓟ Breaking Power§7.\",10:\"\",11:\"§5§kX§5 Rift-Transferable §kX\",12:\"§9§lRARE\"],Name:\"§9Polarvoid Book\"},ExtraAttributes:{id:\"POLARVOID_BOOK\"}}", + "damage": 0, + "lore": [ + "§7§8Combinable in Anvil", + "", + "§7When applied to a drill, grants", + "§7§6+10⸕ Mining Speed§7.", + "", + "§7This can be applied to an item", + "§7up to §a5 §7times!", + "", + "§7If at least 1 book is applied,", + "§7grants §2+1Ⓟ Breaking Power§7.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE" + ], + "recipe": { + "A1": "", + "A2": "", + "A3": "", + "B1": "", + "B2": "FROSTY_CRUX:1", + "B3": "FROSTY_CRUX:1", + "C1": "", + "C2": "FROSTY_CRUX:1", + "C3": "METAL_HEART:20" + }, + "internalname": "POLARVOID_BOOK", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Living Metal Heart IV", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Polarvoid_Book", + "https://wiki.hypixel.net/Polarvoid_Book" + ] +}
\ No newline at end of file diff --git a/items/PORHTAL_RIFT_NPC.json b/items/PORHTAL_RIFT_NPC.json new file mode 100644 index 00000000..9ca8c21a --- /dev/null +++ b/items/PORHTAL_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dPorhtal (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"b373a056-c89f-2bcb-bc52-348d412fb8cf\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzVlZTg1OGZjZjg1YzkxNDgwZWU5YTkxMjkxZDQ1MmEzYWVjNzY3ZjVmOWMwYzk3MGY3ZTRlOWMzODViOWRkMCJ9fX0\u003d\"}]},Name:\"b373a056-c89f-2bcb-bc52-348d412fb8cf\"},display:{Lore:[0:\"\"],Name:\"§dPorhtal (Rift NPC)\"},ExtraAttributes:{id:\"PORHTAL_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "PORHTAL_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -157, + "y": 72, + "z": 162, + "island": "rift" +}
\ No newline at end of file diff --git a/items/PRESUMED_GALLON_OF_RED_PAINT.json b/items/PRESUMED_GALLON_OF_RED_PAINT.json new file mode 100644 index 00000000..39e96e9c --- /dev/null +++ b/items/PRESUMED_GALLON_OF_RED_PAINT.json @@ -0,0 +1,29 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Presumed Gallon of Red Paint", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9bdc71be-8122-3315-837f-5cb0a72b2c21\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTkwZDNjNTIyY2U1MzNiNjU5NzU1NmMwNmQ4MGFlYmViMjY0MGVlMGQxYmY4YzQ5ODc0MGE3NjBkOGI3YzExZCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Reforge Stone\",1:\"§7§8Combinable in Reforge Anvil\",2:\"\",3:\"§7Applies the §9Blood-Soaked\",4:\"§9§7reforge when combined with a\",5:\"§7cloak§7.\",6:\"\",7:\"§7§8§oNot sure if paint.\",8:\"\",9:\"§7Requires §aMining Skill Level\",10:\"§aXXIV§7!\",11:\"\",12:\"§9§lRARE REFORGE STONE\"],Name:\"§9Presumed Gallon of Red Paint\"},ExtraAttributes:{id:\"PRESUMED_GALLON_OF_RED_PAINT\"}}", + "damage": 3, + "lore": [ + "§8Reforge Stone", + "§7§8Combinable in Reforge Anvil", + "", + "§7Applies the §9Blood-Soaked", + "§9§7reforge when combined with a", + "§7cloak§7.", + "", + "§7§8§oNot sure if paint.", + "", + "§7Requires §aMining Skill Level", + "§aXXIV§7!", + "", + "§9§lRARE REFORGE STONE" + ], + "internalname": "PRESUMED_GALLON_OF_RED_PAINT", + "crafttext": "Requires: Hemovibe VIII", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Presumed_Gallon_Of_Red_Paint" + ] +}
\ No newline at end of file diff --git a/items/PROTOCHICKEN.json b/items/PROTOCHICKEN.json new file mode 100644 index 00000000..a0fcb7ae --- /dev/null +++ b/items/PROTOCHICKEN.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Proto-Chicken", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9e4ddea1-e1fa-322e-96dd-97440d9892cb\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3OTMzNDUzOTYzMSwKICAicHJvZmlsZUlkIiA6ICJkYjYzNWE3MWI4N2U0MzQ5YThhYTgwOTMwOWFhODA3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJFbmdlbHMxNzQiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjg0YTNjNTcwYmQxZGQ3ZjgyNmVmOGQzNWFmNTk2OGQ1Yjk0NmIyOWY2ZDk2YWQ2ZjAzNGIwMTE4MDcwYjAxMiIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7The animal which came right\",1:\"§7before the first chicken.\",2:\"\",3:\"§eRight-click to view recipes!\",4:\"\",5:\"§5§lEPIC\"],Name:\"§5Proto-Chicken\"},ExtraAttributes:{id:\"PROTOCHICKEN\"}}", + "damage": 3, + "lore": [ + "§7The animal which came right", + "§7before the first chicken.", + "", + "§eRight-click to view recipes!", + "", + "§5§lEPIC" + ], + "internalname": "PROTOCHICKEN", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Proto-Chicken", + "https://wiki.hypixel.net/Proto-Chicken" + ] +}
\ No newline at end of file diff --git a/items/PUNCHCARD_ARTIFACT.json b/items/PUNCHCARD_ARTIFACT.json new file mode 100644 index 00000000..93cbde9b --- /dev/null +++ b/items/PUNCHCARD_ARTIFACT.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Punchcard Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3df2e69d-2f94-34dc-9034-0104dfabc146\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODQzYTRhOGZhNzlmOGQxNjIxZDVlYTQ5MGI5ZTAyMTc5NjJmOTA1OTRlZGE4OTY3NWZjMTNiMjlkNTI5MDQ3NCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+30s\",1:\"\",2:\"§6Ability: Punch in! §e§lLEFT CLICK\",3:\"§7Punch another player while this\",4:\"§7is in your inventory to both\",5:\"§7regain §a+25ф Rift Time§7.\",6:\"§7§8Usable once per player per\",7:\"§8rift visit up to 20 players.\",8:\"\",9:\"§5§lEPIC ACCESSORY\"],Name:\"§5Punchcard Artifact\"},ExtraAttributes:{id:\"PUNCHCARD_ARTIFACT\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+30s", + "", + "§6Ability: Punch in! §e§lLEFT CLICK", + "§7Punch another player while this", + "§7is in your inventory to both", + "§7regain §a+25ф Rift Time§7.", + "§7§8Usable once per player per", + "§8rift visit up to 20 players.", + "", + "§5§lEPIC ACCESSORY" + ], + "internalname": "PUNCHCARD_ARTIFACT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Punchcard_Artifact", + "https://wiki.hypixel.net/Punchcard_Artifact" + ] +}
\ No newline at end of file diff --git a/items/QUANTUM;3.json b/items/QUANTUM;3.json new file mode 100644 index 00000000..fdf11ba8 --- /dev/null +++ b/items/QUANTUM;3.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Quantum III\",1:\"§7Grants §4+2.4♨ Vitality §7on\",2:\"§7weekdays and §3+1.2☯ §7of a\",3:\"§7random §3Wisdom §7stat on\",4:\"§7weekends.\",5:\"\",6:\"§7Applicable on: §9Necklace\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aIII-V: §7Riftwalker Bloodfiend\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fNecklace\",15:\"\",16:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"QUANTUM;3\",enchantments:{quantum:3}}}", + "damage": 0, + "lore": [ + "§9Quantum III", + "§7Grants §4+2.4♨ Vitality §7on", + "§7weekdays and §3+1.2☯ §7of a", + "§7random §3Wisdom §7stat on", + "§7weekends.", + "", + "§7Applicable on: §9Necklace", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aIII-V: §7Riftwalker Bloodfiend", + "", + "§6Applied To:", + "§7- §fNecklace", + "", + "§f§lCOMMON" + ], + "internalname": "QUANTUM;3", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/QUANTUM;4.json b/items/QUANTUM;4.json new file mode 100644 index 00000000..1f6a8d47 --- /dev/null +++ b/items/QUANTUM;4.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Quantum IV\",1:\"§7Grants §4+3.2♨ Vitality §7on\",2:\"§7weekdays and §3+1.6☯ §7of a\",3:\"§7random §3Wisdom §7stat on\",4:\"§7weekends.\",5:\"\",6:\"§7Applicable on: §9Necklace\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aIII-V: §7Riftwalker Bloodfiend\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fNecklace\",15:\"\",16:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"QUANTUM;4\",enchantments:{quantum:4}}}", + "damage": 0, + "lore": [ + "§9Quantum IV", + "§7Grants §4+3.2♨ Vitality §7on", + "§7weekdays and §3+1.6☯ §7of a", + "§7random §3Wisdom §7stat on", + "§7weekends.", + "", + "§7Applicable on: §9Necklace", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aIII-V: §7Riftwalker Bloodfiend", + "", + "§6Applied To:", + "§7- §fNecklace", + "", + "§f§lCOMMON" + ], + "internalname": "QUANTUM;4", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/QUANTUM;5.json b/items/QUANTUM;5.json new file mode 100644 index 00000000..2a23792b --- /dev/null +++ b/items/QUANTUM;5.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§aEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Quantum V\",1:\"§7Grants §4+4♨ Vitality §7on\",2:\"§7weekdays and §3+2☯ §7of a\",3:\"§7random §3Wisdom §7stat on\",4:\"§7weekends.\",5:\"\",6:\"§7Applicable on: §9Necklace\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aIII-V: §7Riftwalker Bloodfiend\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fNecklace\",15:\"\",16:\"§a§lUNCOMMON\"],Name:\"§aEnchanted Book\"},ExtraAttributes:{id:\"QUANTUM;5\",enchantments:{quantum:5}}}", + "damage": 0, + "lore": [ + "§9Quantum V", + "§7Grants §4+4♨ Vitality §7on", + "§7weekdays and §3+2☯ §7of a", + "§7random §3Wisdom §7stat on", + "§7weekends.", + "", + "§7Applicable on: §9Necklace", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aIII-V: §7Riftwalker Bloodfiend", + "", + "§6Applied To:", + "§7- §fNecklace", + "", + "§a§lUNCOMMON" + ], + "internalname": "QUANTUM;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REED_BOAT.json b/items/REED_BOAT.json new file mode 100644 index 00000000..078a62a9 --- /dev/null +++ b/items/REED_BOAT.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:boat", + "displayname": "§aRift Boat", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Built by Reed, who turns out to\",1:\"§7be a bit of a scammer.\",2:\"\",3:\"§a§lUNCOMMON\"],Name:\"§aRift Boat\"},ExtraAttributes:{id:\"REED_BOAT\"}}", + "damage": 0, + "lore": [ + "§7Built by Reed, who turns out to", + "§7be a bit of a scammer.", + "", + "§a§lUNCOMMON" + ], + "internalname": "REED_BOAT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Rift_Boat", + "https://wiki.hypixel.net/Rift_Boat" + ] +}
\ No newline at end of file diff --git a/items/REED_RIFT_NPC.json b/items/REED_RIFT_NPC.json new file mode 100644 index 00000000..3ef57d93 --- /dev/null +++ b/items/REED_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dReed (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"cb8fb3e4-0b83-242a-9623-769cf7fb23fd\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzIyM2I4NGQzZTQ5N2E5NDc1N2ExNGE3ZWI2NDk0MDk2N2ZmMzIwMGZlOTQyMDZkZjM3YmM0YWU4ZDEwMzA2YzkifX19\"}]},Name:\"cb8fb3e4-0b83-242a-9623-769cf7fb23fd\"},display:{Lore:[0:\"\"],Name:\"§dReed (Rift NPC)\"},ExtraAttributes:{id:\"REED_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "REED_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -212, + "y": 73, + "z": 61, + "island": "rift" +}
\ No newline at end of file diff --git a/items/REFLECTION;1.json b/items/REFLECTION;1.json new file mode 100644 index 00000000..2f752e25 --- /dev/null +++ b/items/REFLECTION;1.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Reflection I\",1:\"§7Grants §b+2✎ Intelligence§7.\",2:\"§7Grants §f+1❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b2x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Applicable on: §9Chestplate\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aI-V: §7Rift Mirrorverse\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fChestplate\",15:\"\",16:\"§6Conflicts:\",17:\"§7- §cThorns\",18:\"\",19:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"REFLECTION;1\",enchantments:{reflection:1}}}", + "damage": 0, + "lore": [ + "§9Reflection I", + "§7Grants §b+2✎ Intelligence§7.", + "§7Grants §f+1❂ True Defense§7.", + "§7When damaged by an arrow, deal §b2x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Applicable on: §9Chestplate", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aI-V: §7Rift Mirrorverse", + "", + "§6Applied To:", + "§7- §fChestplate", + "", + "§6Conflicts:", + "§7- §cThorns", + "", + "§f§lCOMMON" + ], + "internalname": "REFLECTION;1", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REFLECTION;2.json b/items/REFLECTION;2.json new file mode 100644 index 00000000..3535c46d --- /dev/null +++ b/items/REFLECTION;2.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Reflection II\",1:\"§7Grants §b+4✎ Intelligence§7.\",2:\"§7Grants §f+2❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b5x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Applicable on: §9Chestplate\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aI-V: §7Rift Mirrorverse\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fChestplate\",15:\"\",16:\"§6Conflicts:\",17:\"§7- §cThorns\",18:\"\",19:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"REFLECTION;2\",enchantments:{reflection:2}}}", + "damage": 0, + "lore": [ + "§9Reflection II", + "§7Grants §b+4✎ Intelligence§7.", + "§7Grants §f+2❂ True Defense§7.", + "§7When damaged by an arrow, deal §b5x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Applicable on: §9Chestplate", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aI-V: §7Rift Mirrorverse", + "", + "§6Applied To:", + "§7- §fChestplate", + "", + "§6Conflicts:", + "§7- §cThorns", + "", + "§f§lCOMMON" + ], + "internalname": "REFLECTION;2", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REFLECTION;3.json b/items/REFLECTION;3.json new file mode 100644 index 00000000..361112b6 --- /dev/null +++ b/items/REFLECTION;3.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Reflection III\",1:\"§7Grants §b+6✎ Intelligence§7.\",2:\"§7Grants §f+3❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b10x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Applicable on: §9Chestplate\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aI-V: §7Rift Mirrorverse\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fChestplate\",15:\"\",16:\"§6Conflicts:\",17:\"§7- §cThorns\",18:\"\",19:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"REFLECTION;3\",enchantments:{reflection:3}}}", + "damage": 0, + "lore": [ + "§9Reflection III", + "§7Grants §b+6✎ Intelligence§7.", + "§7Grants §f+3❂ True Defense§7.", + "§7When damaged by an arrow, deal §b10x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Applicable on: §9Chestplate", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aI-V: §7Rift Mirrorverse", + "", + "§6Applied To:", + "§7- §fChestplate", + "", + "§6Conflicts:", + "§7- §cThorns", + "", + "§f§lCOMMON" + ], + "internalname": "REFLECTION;3", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REFLECTION;4.json b/items/REFLECTION;4.json new file mode 100644 index 00000000..99ce16d4 --- /dev/null +++ b/items/REFLECTION;4.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Reflection IV\",1:\"§7Grants §b+8✎ Intelligence§7.\",2:\"§7Grants §f+4❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b20x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Applicable on: §9Chestplate\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aI-V: §7Rift Mirrorverse\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fChestplate\",15:\"\",16:\"§6Conflicts:\",17:\"§7- §cThorns\",18:\"\",19:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"REFLECTION;4\",enchantments:{reflection:4}}}", + "damage": 0, + "lore": [ + "§9Reflection IV", + "§7Grants §b+8✎ Intelligence§7.", + "§7Grants §f+4❂ True Defense§7.", + "§7When damaged by an arrow, deal §b20x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Applicable on: §9Chestplate", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aI-V: §7Rift Mirrorverse", + "", + "§6Applied To:", + "§7- §fChestplate", + "", + "§6Conflicts:", + "§7- §cThorns", + "", + "§f§lCOMMON" + ], + "internalname": "REFLECTION;4", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REFLECTION;5.json b/items/REFLECTION;5.json new file mode 100644 index 00000000..972bdafc --- /dev/null +++ b/items/REFLECTION;5.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§aEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Reflection V\",1:\"§7Grants §b+10✎ Intelligence§7.\",2:\"§7Grants §f+5❂ True Defense§7.\",3:\"§7When damaged by an arrow, deal §b30x §7your\",4:\"§7§b✎ Intelligence §7to its shooter.\",5:\"\",6:\"§7Applicable on: §9Chestplate\",7:\"§7Use this on an item in an Anvil\",8:\"§7to apply it!\",9:\"\",10:\"§6Source:\",11:\"§aI-V: §7Rift Mirrorverse\",12:\"\",13:\"§6Applied To:\",14:\"§7- §fChestplate\",15:\"\",16:\"§6Conflicts:\",17:\"§7- §cThorns\",18:\"\",19:\"§a§lUNCOMMON\"],Name:\"§aEnchanted Book\"},ExtraAttributes:{id:\"REFLECTION;5\",enchantments:{reflection:5}}}", + "damage": 0, + "lore": [ + "§9Reflection V", + "§7Grants §b+10✎ Intelligence§7.", + "§7Grants §f+5❂ True Defense§7.", + "§7When damaged by an arrow, deal §b30x §7your", + "§7§b✎ Intelligence §7to its shooter.", + "", + "§7Applicable on: §9Chestplate", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aI-V: §7Rift Mirrorverse", + "", + "§6Applied To:", + "§7- §fChestplate", + "", + "§6Conflicts:", + "§7- §cThorns", + "", + "§a§lUNCOMMON" + ], + "internalname": "REFLECTION;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/REHEATED_GUMMY_POLAR_BEAR.json b/items/REHEATED_GUMMY_POLAR_BEAR.json index 73d5baba..e65c0e93 100644 --- a/items/REHEATED_GUMMY_POLAR_BEAR.json +++ b/items/REHEATED_GUMMY_POLAR_BEAR.json @@ -1,20 +1,21 @@ { "itemid": "minecraft:skull", - "displayname": "§f§f§aRe-heated Gummy Polar Bear", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"74ddb947-f95e-3d16-bfb8-8d7fdadba323\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMwNjU4N2VjMzhjMjQ0NmQzODlhNTgxZTA2OTE1NTZmYTU4ZmNlMGEwMmQwODQ2ZDIzZmQ2OGUzNjU2YTI0OSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Grants the §aSmoldering\",1:\"§aPolarization §7effect.\",2:\"\",3:\"§aSmoldering Polarization I §f(1:00:00)\",4:\"§7Grants §3+10% Combat XP §7from\",5:\"§7Blazes and pacifies nearby\",6:\"§7Blazes while fighting §4Inferno\",7:\"§4Demonlord§7.\",8:\"\",9:\"§eRight-click to consume!\",10:\"\",11:\"§a§lUNCOMMON\"],Name:\"§f§f§aRe-heated Gummy Polar Bear\"},ExtraAttributes:{id:\"REHEATED_GUMMY_POLAR_BEAR\"}}", + "displayname": "§aRe-heated Gummy Polar Bear", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"74ddb947-f95e-3d16-bfb8-8d7fdadba323\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDMwNjU4N2VjMzhjMjQ0NmQzODlhNTgxZTA2OTE1NTZmYTU4ZmNlMGEwMmQwODQ2ZDIzZmQ2OGUzNjU2YTI0OSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Grants the §aSmoldering\",1:\"§aPolarization §7effect.\",2:\"\",3:\"§aSmoldering Polarization I §f(1:00:00)\",4:\"§7Grants §3+10☯ Combat Wisdom\",5:\"§3§7from Blazes and pacifies\",6:\"§7nearby Blazes while fighting\",7:\"§7§4Inferno Demonlord§7.\",8:\"\",9:\"§eRight-click to consume!\",10:\"\",11:\"§5§kX§5 Rift-Transferable §kX\",12:\"§a§lUNCOMMON\"],Name:\"§aRe-heated Gummy Polar Bear\"},ExtraAttributes:{id:\"REHEATED_GUMMY_POLAR_BEAR\"}}", "damage": 3, "lore": [ "§7Grants the §aSmoldering", "§aPolarization §7effect.", "", "§aSmoldering Polarization I §f(1:00:00)", - "§7Grants §3+10% Combat XP §7from", - "§7Blazes and pacifies nearby", - "§7Blazes while fighting §4Inferno", - "§4Demonlord§7.", + "§7Grants §3+10☯ Combat Wisdom", + "§3§7from Blazes and pacifies", + "§7nearby Blazes while fighting", + "§7§4Inferno Demonlord§7.", "", "§eRight-click to consume!", "", + "§5§kX§5 Rift-Transferable §kX", "§a§lUNCOMMON" ], "recipe": { @@ -31,7 +32,7 @@ "internalname": "REHEATED_GUMMY_POLAR_BEAR", "crafttext": "Requires: Chili Pepper I", "clickcommand": "viewrecipe", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "WIKI_URL", "info": [ "https://hypixel-skyblock.fandom.com/wiki/Re-heated_Gummy_Polar_Bear", diff --git a/items/RETRO_ENCABULATING_VISOR.json b/items/RETRO_ENCABULATING_VISOR.json new file mode 100644 index 00000000..3844ccc9 --- /dev/null +++ b/items/RETRO_ENCABULATING_VISOR.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dRetro-Encabulating Visor", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"6da7834b-3c29-39dc-8743-60b275d5d3ec\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0OTMxNDYyOTc2NSwKICAicHJvZmlsZUlkIiA6ICJlZjJlZDE2NDA4YjU0NWQyYjAwMGM5YmE2Y2Y0MTJhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJiYXNlbmVzcyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82ZTIxYTMxNTEyMWRmMDE5OWFjODMxNjQyZThhNTQ2YWRiYjVlZDM2MTY1MWZmYTRkNjk0NjZkOTkyNzk2MTI4IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Intelligence: §a-50\",1:\"\",2:\"§7Lets you see presumably\",3:\"§7invisible cables when worn.\",4:\"\",5:\"§8Kloon built this in a cave!\",6:\"§8With a bunch of scraps!\",7:\"\",8:\"§d§lMYTHIC HELMET\"],Name:\"§dRetro-Encabulating Visor\"},ExtraAttributes:{id:\"RETRO_ENCABULATING_VISOR\"}}", + "damage": 3, + "lore": [ + "§7Intelligence: §a-50", + "", + "§7Lets you see presumably", + "§7invisible cables when worn.", + "", + "§8Kloon built this in a cave!", + "§8With a bunch of scraps!", + "", + "§d§lMYTHIC HELMET" + ], + "internalname": "RETRO_ENCABULATING_VISOR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Retro-Encabulating_Visor" + ] +}
\ No newline at end of file diff --git a/items/RIFTWART_ROOTS.json b/items/RIFTWART_ROOTS.json new file mode 100644 index 00000000..fbd58952 --- /dev/null +++ b/items/RIFTWART_ROOTS.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:nether_wart", + "displayname": "§aRiftwart Roots", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Do not eat.\",1:\"\",2:\"§a§lUNCOMMON\"],Name:\"§aRiftwart Roots\"},ExtraAttributes:{id:\"RIFTWART_ROOTS\"}}", + "damage": 0, + "lore": [ + "§7Do not eat.", + "", + "§a§lUNCOMMON" + ], + "internalname": "RIFTWART_ROOTS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Riftwart_Roots" + ] +}
\ No newline at end of file diff --git a/items/RIFT_BARTENDER_NPC.json b/items/RIFT_BARTENDER_NPC.json new file mode 100644 index 00000000..2cf2f8b4 --- /dev/null +++ b/items/RIFT_BARTENDER_NPC.json @@ -0,0 +1,46 @@ +{ + "internalname": "RIFT_BARTENDER_NPC", + "itemid": "minecraft:skull", + "displayname": "§9Rift Bartender (NPC)", + "clickcommand": "viewrecipe", + "damage": 3, + "nbttag": "{HideFlags:254,display:{Lore:[0:\"\"],Name:\"§9Rift Bartender (NPC)\"},ExtraAttributes:{id:\"RIFT_BARTENDER_NPC\"}}", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "TODO" + ], + "lore": [ + "" + ], + "x": -121, + "y": 74, + "z": 172, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "RIFT_SPEED_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "ABIPHONE_XIII_PRO:1.0" + ] + }, + { + "type": "npc_shop", + "result": "RIFT_JUMP_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "ABICASE_BLUE_AQUA:1.0" + ] + }, + { + "type": "npc_shop", + "result": "RIFT_STRENGTH_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "ABIPHONE_XII_MEGA_COLOR:1.0" + ] + } + ] +}
\ No newline at end of file diff --git a/items/RIFT_BUCKET.json b/items/RIFT_BUCKET.json new file mode 100644 index 00000000..8f0afc76 --- /dev/null +++ b/items/RIFT_BUCKET.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:water_bucket", + "displayname": "§aPlumber\u0027s Bucket", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Instructions:\",1:\" §b1. §7Empty water bucket.\",2:\" §b2. §7Do it again because it\u0027s infinite.\",3:\" §b3. §7Triple-bill client.\",4:\"\",5:\"§8Thanks Plumber Joe!\",6:\"\",7:\"§a§lUNCOMMON\"],Name:\"§aPlumber\u0027s Bucket\"},ExtraAttributes:{id:\"RIFT_BUCKET\"}}", + "damage": 0, + "lore": [ + "§7Instructions:", + " §b1. §7Empty water bucket.", + " §b2. §7Do it again because it\u0027s infinite.", + " §b3. §7Triple-bill client.", + "", + "§8Thanks Plumber Joe!", + "", + "§a§lUNCOMMON" + ], + "internalname": "RIFT_BUCKET", + "clickcommand": "", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Plumber%27s_Bucket", + "https://wiki.hypixel.net/Plumber%27s_Bucket" + ] +}
\ No newline at end of file diff --git a/items/RIFT_FERRET;3.json b/items/RIFT_FERRET;3.json new file mode 100644 index 00000000..d29dcd08 --- /dev/null +++ b/items/RIFT_FERRET;3.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§7[Lvl {LVL}] §5Rift Ferret", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b73ba979-5adc-379f-87f4-9c412db732e7\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY1MTYzOTI2MTI5NywKICAicHJvZmlsZUlkIiA6ICIyMWUzNjdkNzI1Y2Y0ZTNiYjI2OTJjNGEzMDBhNGRlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJHZXlzZXJNQyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9iNmIxMTM5OTQ0ODI2MDE4NWRhMWQxN2U1NGM5ODQ1MTVmYWFiNmQ4NTg1ZjAwOTcyNDUxZWMyYjQzZDQ2Zjk0IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§8Combat Pet\",1:\"\",2:\"§7Speed: §a{SPEED}\",3:\"§7Intelligence: §a-{INTELLIGENCE}\",4:\"\",5:\"§6Orbs are Fun\",6:\"§7§7Gain §a+{0}% §7experience from\",7:\"§7§bXP Orbs§7.\",8:\"\",9:\"§7§eRight-click to add this pet to\",10:\"§eyour pet menu!\",11:\"\",12:\"§8§l* §8Soulbound §8§l*\",13:\"§5§kX§5 Rift-Transferable §kX\",14:\"§5§lEPIC\"],Name:\"§7[Lvl {LVL}] §5Rift Ferret\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"RIFT_FERRET\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"EPIC\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0,\\\"hideRightClick\\\":false}\",id:\"RIFT_FERRET;3\"}}", + "damage": 3, + "lore": [ + "§8Combat Pet", + "", + "§7Speed: §a{SPEED}", + "§7Intelligence: §a-{INTELLIGENCE}", + "", + "§6Orbs are Fun", + "§7§7Gain §a+{0}% §7experience from", + "§7§bXP Orbs§7.", + "", + "§7§eRight-click to add this pet to", + "§eyour pet menu!", + "", + "§8§l* §8Soulbound §8§l*", + "§5§kX§5 Rift-Transferable §kX", + "§5§lEPIC" + ], + "internalname": "RIFT_FERRET;3", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Rift_Ferret_Pet", + "https://wiki.hypixel.net/Rift_Ferret_Pet" + ] +}
\ No newline at end of file diff --git a/items/RIFT_JUMP_ELIXIR.json b/items/RIFT_JUMP_ELIXIR.json new file mode 100644 index 00000000..ce430b5c --- /dev/null +++ b/items/RIFT_JUMP_ELIXIR.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Jump Elixir", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"119d5d06-b657-3bb3-9a07-73a5afce79c9\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjJhYzk5MjZkY2ZiNzY0MWExNjIxMjY5MTEyNmUwM2Q5NWQ2NDZhZDM0NWI3NWExOTIwNjFhMWE5MzlkODkwMiJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Grants §aJump Boost I §7(0:20)\",1:\"\",2:\"§9§lRARE\"],Name:\"§9Jump Elixir\"},ExtraAttributes:{id:\"RIFT_JUMP_ELIXIR\"}}", + "damage": 3, + "lore": [ + "§7Grants §aJump Boost I §7(0:20)", + "", + "§9§lRARE" + ], + "internalname": "RIFT_JUMP_ELIXIR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Jump_Elixir" + ] +}
\ No newline at end of file diff --git a/items/RIFT_NECKLACE_INSIDE.json b/items/RIFT_NECKLACE_INSIDE.json new file mode 100644 index 00000000..1abe6b9e --- /dev/null +++ b/items/RIFT_NECKLACE_INSIDE.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§d§dRift Necklace", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad049247-1862-300f-a0db-dfd5cf5f6220\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+60s\",1:\"\",2:\"§7The most powerful necklace ever\",3:\"§7created by §dElise XXXIII§7.\",4:\"\",5:\"§7Becomes more powerful as you\",6:\"§7fill the §dRift Gallery§7.\",7:\"§7Secured: §c1/8 Timecharms\",8:\"\",9:\"§8§l* §8Soulbound §8§l*\",10:\"§d§lMYTHIC NECKLACE\"],Name:\"§d§dRift Necklace\"},ExtraAttributes:{id:\"RIFT_NECKLACE_INSIDE\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+60s", + "", + "§7The most powerful necklace ever", + "§7created by §dElise XXXIII§7.", + "", + "§7Becomes more powerful as you", + "§7fill the §dRift Gallery§7.", + "§7Secured: §c1/8 Timecharms", + "", + "§8§l* §8Soulbound §8§l*", + "§d§lMYTHIC NECKLACE" + ], + "internalname": "RIFT_NECKLACE_INSIDE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Rift_Necklace" + ] +}
\ No newline at end of file diff --git a/items/RIFT_NECKLACE_INSIDE_1.json b/items/RIFT_NECKLACE_INSIDE_1.json deleted file mode 100644 index 63c20bb9..00000000 --- a/items/RIFT_NECKLACE_INSIDE_1.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "itemid": "minecraft:skull", - "displayname": "§a§dRift Necklace", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad049247-1862-300f-a0db-dfd5cf5f6220\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7A very powerful piece of\",1:\"§7equipment, bound to another\",2:\"§7necklace in the real world.\",3:\"\",4:\"§7Upgrade tier: §dI\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§a§lUNCOMMON NECKLACE\"],Name:\"§a§dRift Necklace\"},ExtraAttributes:{id:\"RIFT_NECKLACE_INSIDE_1\"}}", - "damage": 3, - "lore": [ - "§7A very powerful piece of", - "§7equipment, bound to another", - "§7necklace in the real world.", - "", - "§7Upgrade tier: §dI", - "", - "§7§8This item can be reforged!", - "§a§lUNCOMMON NECKLACE" - ], - "internalname": "RIFT_NECKLACE_INSIDE_1", - "crafttext": "", - "clickcommand": "", - "modver": "2.1.0-REL", - "infoType": "" -}
\ No newline at end of file diff --git a/items/RIFT_NECKLACE_INSIDE_2.json b/items/RIFT_NECKLACE_INSIDE_2.json deleted file mode 100644 index 6632870e..00000000 --- a/items/RIFT_NECKLACE_INSIDE_2.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "itemid": "minecraft:skull", - "displayname": "§a§dRift Necklace", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad049247-1862-300f-a0db-dfd5cf5f6220\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7A very powerful piece of\",1:\"§7equipment, bound to another\",2:\"§7necklace in the real world.\",3:\"\",4:\"§7Upgrade tier: §dII\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§a§lUNCOMMON NECKLACE\"],Name:\"§a§dRift Necklace\"},ExtraAttributes:{id:\"RIFT_NECKLACE_INSIDE_2\"}}", - "damage": 3, - "lore": [ - "§7A very powerful piece of", - "§7equipment, bound to another", - "§7necklace in the real world.", - "", - "§7Upgrade tier: §dII", - "", - "§7§8This item can be reforged!", - "§a§lUNCOMMON NECKLACE" - ], - "recipe": { - "A1": "SHAME_CRUX:2", - "A2": "SHAME_CRUX:2", - "A3": "SHAME_CRUX:2", - "B1": "SHAME_CRUX:2", - "B2": "RIFT_NECKLACE_INSIDE_1:1", - "B3": "SHAME_CRUX:2", - "C1": "SHAME_CRUX:2", - "C2": "SHAME_CRUX:2", - "C3": "SHAME_CRUX:2" - }, - "internalname": "RIFT_NECKLACE_INSIDE_2", - "clickcommand": "viewrecipe", - "modver": "2.1.0-REL", - "crafttext": "", - "infoType": "" -}
\ No newline at end of file diff --git a/items/RIFT_NECKLACE_INSIDE_3.json b/items/RIFT_NECKLACE_INSIDE_3.json deleted file mode 100644 index 2130e78a..00000000 --- a/items/RIFT_NECKLACE_INSIDE_3.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "itemid": "minecraft:skull", - "displayname": "§a§dRift Necklace", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad049247-1862-300f-a0db-dfd5cf5f6220\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7A very powerful piece of\",1:\"§7equipment, bound to another\",2:\"§7necklace in the real world.\",3:\"\",4:\"§7Upgrade tier: §dIII\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§a§lUNCOMMON NECKLACE\"],Name:\"§a§dRift Necklace\"},ExtraAttributes:{id:\"RIFT_NECKLACE_INSIDE_3\"}}", - "damage": 3, - "lore": [ - "§7A very powerful piece of", - "§7equipment, bound to another", - "§7necklace in the real world.", - "", - "§7Upgrade tier: §dIII", - "", - "§7§8This item can be reforged!", - "§a§lUNCOMMON NECKLACE" - ], - "recipe": { - "A1": "DEADGEHOG_SPINE:1", - "A2": "DEADGEHOG_SPINE:1", - "A3": "DEADGEHOG_SPINE:1", - "B1": "DEADGEHOG_SPINE:1", - "B2": "RIFT_NECKLACE_INSIDE_2:1", - "B3": "DEADGEHOG_SPINE:1", - "C1": "DEADGEHOG_SPINE:1", - "C2": "DEADGEHOG_SPINE:1", - "C3": "DEADGEHOG_SPINE:1" - }, - "internalname": "RIFT_NECKLACE_INSIDE_3", - "clickcommand": "viewrecipe", - "modver": "2.1.0-REL", - "crafttext": "", - "infoType": "" -}
\ No newline at end of file diff --git a/items/RIFT_NECKLACE_OUTSIDE.json b/items/RIFT_NECKLACE_OUTSIDE.json new file mode 100644 index 00000000..8f20ce3c --- /dev/null +++ b/items/RIFT_NECKLACE_OUTSIDE.json @@ -0,0 +1,32 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6§dRift Necklace", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad049247-1862-300f-a0db-dfd5cf5f6220\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0Nzg2ODQ3MDQxOCwKICAicHJvZmlsZUlkIiA6ICIwNjNhMTc2Y2RkMTU0ODRiYjU1MjRhNjQyMGM1YjdhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJkYXZpcGF0dXJ5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzljMDg5NDkzMWE1MTAzODdlNGY2MTM4MjhmMDIzOWNhNGQ5MDg1MzQ5OTYzN2Y2MDc5ZDM5MzI3ZjE0NmYwZTkiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Strength: §c+5\",1:\"§7Health: §a+40\",2:\"§7Intelligence: §a+30\",3:\"§7Magic Find: §a+3\",4:\"\",5:\"§7A very powerful piece of\",6:\"§7equipment originating from the\",7:\"§7§dRift Dimension§7.\",8:\"\",9:\"§7Becomes more powerful as you\",10:\"§7fill the §dRift Gallery§7.\",11:\"§7Secured: §c3/8 Timecharms\",12:\"\",13:\"§7§8This item can be reforged!\",14:\"§8§l* §8Soulbound §8§l*\",15:\"§6§lLEGENDARY NECKLACE\"],Name:\"§6§dRift Necklace\"},ExtraAttributes:{id:\"RIFT_NECKLACE_OUTSIDE\"}}", + "damage": 3, + "lore": [ + "§7Strength: §c+5", + "§7Health: §a+40", + "§7Intelligence: §a+30", + "§7Magic Find: §a+3", + "", + "§7A very powerful piece of", + "§7equipment originating from the", + "§7§dRift Dimension§7.", + "", + "§7Becomes more powerful as you", + "§7fill the §dRift Gallery§7.", + "§7Secured: §c3/8 Timecharms", + "", + "§7§8This item can be reforged!", + "§8§l* §8Soulbound §8§l*", + "§6§lLEGENDARY NECKLACE" + ], + "internalname": "RIFT_NECKLACE_OUTSIDE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Rift_Necklace" + ] +}
\ No newline at end of file diff --git a/items/RIFT_PRISM.json b/items/RIFT_PRISM.json new file mode 100644 index 00000000..02e416a5 --- /dev/null +++ b/items/RIFT_PRISM.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Rift Prism", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"18713d21-3831-3242-937d-9bae2debf512\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2NhYTViZjFiZWRlOWEyN2EwZDBiOTg1Zjc3ZThiOTczMGQ1ZGIzZWRhOTUyZGZlM2YxYTMxYjg3ZDVlZmVjOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7While in your accessory bag, you may\",1:\"§7join the §dRift §7at §ano cost§7.\",2:\"\",3:\"§7Talk with §9Erihann §7in the\",4:\"§7Wizard Tower of the Hub to\",5:\"§7consume this accessory.\",6:\"\",7:\"§5§kX§5 Rift-Transferable §kX\",8:\"§9§lRARE ACCESSORY\"],Name:\"§9Rift Prism\"},ExtraAttributes:{id:\"RIFT_PRISM\"}}", + "damage": 3, + "lore": [ + "§7While in your accessory bag, you may", + "§7join the §dRift §7at §ano cost§7.", + "", + "§7Talk with §9Erihann §7in the", + "§7Wizard Tower of the Hub to", + "§7consume this accessory.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§9§lRARE ACCESSORY" + ], + "internalname": "RIFT_PRISM", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Rift_Prism", + "https://wiki.hypixel.net/Rift_Prism" + ] +}
\ No newline at end of file diff --git a/items/RIFT_SPEED_ELIXIR.json b/items/RIFT_SPEED_ELIXIR.json new file mode 100644 index 00000000..32fd4706 --- /dev/null +++ b/items/RIFT_SPEED_ELIXIR.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Speed Elixir", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"bf19b3e8-2b7c-3d1b-92bd-6e296d367b4f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMWFmODE1MWRlYjM5NTUzMjkyYjlhNjk2NzQ4MzJkZGE4MDAxNzgwY2E5ODE4MGEwNmVhZjliMzY4OTMwYjViYiJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Grants §fSpeed I §7(5:00)\",1:\"\",2:\"§9§lRARE\"],Name:\"§9Speed Elixir\"},ExtraAttributes:{id:\"RIFT_SPEED_ELIXIR\"}}", + "damage": 3, + "lore": [ + "§7Grants §fSpeed I §7(5:00)", + "", + "§9§lRARE" + ], + "internalname": "RIFT_SPEED_ELIXIR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Speed_Elixir" + ] +}
\ No newline at end of file diff --git a/items/RIFT_STABILITY_ELIXIR.json b/items/RIFT_STABILITY_ELIXIR.json new file mode 100644 index 00000000..6d6cfcb8 --- /dev/null +++ b/items/RIFT_STABILITY_ELIXIR.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Stability Elixir", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"af2c6f6d-575f-36b2-ba1e-122772f3bbd1\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNjU1NTM4MTIwOWJmOTg5ZThjYWFjM2FlOGQ2YjdlMTkzMzczZjE3MTgwODhmNWRiZjEyMmY3MWY1ZWFmOTBmMCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Useful to stay integral in case\",1:\"§7you\u0027ve accidentally inverted\",2:\"§7yourself.\",3:\"\",4:\"§9§lRARE\"],Name:\"§9Stability Elixir\"},ExtraAttributes:{id:\"RIFT_STABILITY_ELIXIR\"}}", + "damage": 3, + "lore": [ + "§7Useful to stay integral in case", + "§7you\u0027ve accidentally inverted", + "§7yourself.", + "", + "§9§lRARE" + ], + "internalname": "RIFT_STABILITY_ELIXIR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Stability_Elixir", + "https://wiki.hypixel.net/Stability_Elixir" + ] +}
\ No newline at end of file diff --git a/items/RIFT_STRENGTH_ELIXIR.json b/items/RIFT_STRENGTH_ELIXIR.json new file mode 100644 index 00000000..5a3e9049 --- /dev/null +++ b/items/RIFT_STRENGTH_ELIXIR.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Strength Elixir", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"5f95b8e2-1c93-3c6f-aec1-2a6f3bd9dfd7\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGEwMGM1M2NmNTdjYWNjN2Y1ZThlM2ZlODRiMmY1ZGIxMjJjZDc2ZmNlZDc4MGE5NTNiOTk2MzlmYjMxOTg4MiJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Grants §cStrength §7(10:00)§7,\",1:\"§7granting §5+3❁ Rift Damage§7.\",2:\"\",3:\"§9§lRARE\"],Name:\"§9Strength Elixir\"},ExtraAttributes:{id:\"RIFT_STRENGTH_ELIXIR\"}}", + "damage": 3, + "lore": [ + "§7Grants §cStrength §7(10:00)§7,", + "§7granting §5+3❁ Rift Damage§7.", + "", + "§9§lRARE" + ], + "internalname": "RIFT_STRENGTH_ELIXIR", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Strength_Elixir" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_CHICKEN_N_EGG.json b/items/RIFT_TROPHY_CHICKEN_N_EGG.json new file mode 100644 index 00000000..6a6ece27 --- /dev/null +++ b/items/RIFT_TROPHY_CHICKEN_N_EGG.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:soul_sand", + "displayname": "§cChicken N Egg Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cChicken N Egg Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_CHICKEN_N_EGG\",uuid:\"9382ebd1-2634-4f37-99fe-34d24bcddc06\",timestamp:\"6/21/23 10:41 AM\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "recipe": { + "A1": "CADUCOUS_STEM_BUNCH:1", + "A2": "METAPHORIC_EGG:2", + "A3": "AGARICUS_CAP_BUNCH:1", + "B1": "METAPHORIC_EGG:2", + "B2": "PROTOCHICKEN:1", + "B3": "METAPHORIC_EGG:2", + "C1": "WILTED_BERBERIS_BUNCH:1", + "C2": "METAPHORIC_EGG:2", + "C3": "WILTED_BERBERIS_BUNCH:1" + }, + "internalname": "RIFT_TROPHY_CHICKEN_N_EGG", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Chicken_N_Egg_Timecharm", + "https://wiki.hypixel.net/Chicken_N_Egg_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_CITIZEN.json b/items/RIFT_TROPHY_CITIZEN.json new file mode 100644 index 00000000..6f7aabc3 --- /dev/null +++ b/items/RIFT_TROPHY_CITIZEN.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:jukebox", + "displayname": "§cSkyBlock Citizen Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cSkyBlock Citizen Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_CITIZEN\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "internalname": "RIFT_TROPHY_CITIZEN", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/SkyBlock_Citizen_Timecharm", + "https://wiki.hypixel.net/SkyBlock_Citizen_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_LAZY_LIVING.json b/items/RIFT_TROPHY_LAZY_LIVING.json new file mode 100644 index 00000000..9314b0dc --- /dev/null +++ b/items/RIFT_TROPHY_LAZY_LIVING.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:lapis_ore", + "displayname": "§cLiving Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cLiving Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_LAZY_LIVING\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "recipe": { + "A1": "LIVING_METAL:20", + "A2": "LIVING_METAL:20", + "A3": "LIVING_METAL:20", + "B1": "LIVING_METAL:20", + "B2": "FROSTY_CRUX:20", + "B3": "LIVING_METAL:20", + "C1": "LIVING_METAL:20", + "C2": "LIVING_METAL:20", + "C3": "LIVING_METAL:20" + }, + "internalname": "RIFT_TROPHY_LAZY_LIVING", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Living_Timecharm", + "https://wiki.hypixel.net/Living_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_MIRRORED.json b/items/RIFT_TROPHY_MIRRORED.json new file mode 100644 index 00000000..2c4589c4 --- /dev/null +++ b/items/RIFT_TROPHY_MIRRORED.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:glass", + "displayname": "§cmrahcemiT esrevrorriM", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cmrahcemiT esrevrorriM\"},ExtraAttributes:{id:\"RIFT_TROPHY_MIRRORED\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "internalname": "RIFT_TROPHY_MIRRORED", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_SLIME.json b/items/RIFT_TROPHY_SLIME.json new file mode 100644 index 00000000..8a4d08ba --- /dev/null +++ b/items/RIFT_TROPHY_SLIME.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:slime", + "displayname": "§cGlobulate Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cGlobulate Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_SLIME\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "internalname": "RIFT_TROPHY_SLIME", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Globulate_Timecharm", + "https://wiki.hypixel.net/Globulate_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_VAMPIRIC.json b/items/RIFT_TROPHY_VAMPIRIC.json new file mode 100644 index 00000000..a9b682fa --- /dev/null +++ b/items/RIFT_TROPHY_VAMPIRIC.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:redstone_block", + "displayname": "§cVampiric Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cVampiric Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_VAMPIRIC\"}}", + "damage": 0, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "recipe": { + "A1": "BLOODBADGE:2", + "A2": "WILTED_BERBERIS_BUNCH:1", + "A3": "BLOODBADGE:2", + "B1": "BLOODBADGE:2", + "B2": "WILTED_BERBERIS_BUNCH:1", + "B3": "BLOODBADGE:2", + "C1": "BLOODBADGE:2", + "C2": "WILTED_BERBERIS_BUNCH:1", + "C3": "BLOODBADGE:2" + }, + "internalname": "RIFT_TROPHY_VAMPIRIC", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampiric_Timecharm", + "https://wiki.hypixel.net/Vampiric_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RIFT_TROPHY_WYLDLY_SUPREME.json b/items/RIFT_TROPHY_WYLDLY_SUPREME.json new file mode 100644 index 00000000..0430e461 --- /dev/null +++ b/items/RIFT_TROPHY_WYLDLY_SUPREME.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:leaves", + "displayname": "§cSupreme Timecharm", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Place this timecharm in the\",1:\"§7§dRift Gallery §7to secure it\",2:\"§7forever!\",3:\"\",4:\"§8§l* §8Soulbound §8§l*\",5:\"§c§lSPECIAL RIFT TIMECHARM\"],Name:\"§cSupreme Timecharm\"},ExtraAttributes:{id:\"RIFT_TROPHY_WYLDLY_SUPREME\"}}", + "damage": 1, + "lore": [ + "§7Place this timecharm in the", + "§7§dRift Gallery §7to secure it", + "§7forever!", + "", + "§8§l* §8Soulbound §8§l*", + "§c§lSPECIAL RIFT TIMECHARM" + ], + "recipe": { + "A1": "BOTTLED_ODONATA:1", + "A2": "LIL_PAD:16", + "A3": "BOTTLED_ODONATA:1", + "B1": "DEADGEHOG_SPINE:12", + "B2": "LEECH_SUPREME_FRAGMENT:4", + "B3": "DEADGEHOG_SPINE:12", + "C1": "BOTTLED_ODONATA:1", + "C2": "LIL_PAD:16", + "C3": "BOTTLED_ODONATA:1" + }, + "internalname": "RIFT_TROPHY_WYLDLY_SUPREME", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Supreme_Timecharm", + "https://wiki.hypixel.net/Supreme_Timecharm" + ] +}
\ No newline at end of file diff --git a/items/RING_OF_BROKEN_LOVE.json b/items/RING_OF_BROKEN_LOVE.json new file mode 100644 index 00000000..2f132488 --- /dev/null +++ b/items/RING_OF_BROKEN_LOVE.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Ring of Broken Love", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"975c087c-7a30-36d9-b8e0-882b92bd406c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNzQwZTdjMDE2YTgzYzdjNTgwNmI4ZWZmMGZhMTJmMjczYzAzNmExOGU1MDY2YmRlZDI4MGZhNmJlZGU3Y2M5ZCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+80s\",1:\"\",2:\"§7This time around, fate really\",3:\"§7got in the way of love.\",4:\"\",5:\"§6§lLEGENDARY ACCESSORY\"],Name:\"§6Ring of Broken Love\"},ExtraAttributes:{id:\"RING_OF_BROKEN_LOVE\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+80s", + "", + "§7This time around, fate really", + "§7got in the way of love.", + "", + "§6§lLEGENDARY ACCESSORY" + ], + "internalname": "RING_OF_BROKEN_LOVE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Ring_Of_Broken_Love" + ] +}
\ No newline at end of file diff --git a/items/ROGER_RIFT_NPC.json b/items/ROGER_RIFT_NPC.json new file mode 100644 index 00000000..0377edf4 --- /dev/null +++ b/items/ROGER_RIFT_NPC.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dRoger (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"847594e3-7b7d-2fde-bf32-629b6b697726\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2YyNjE5MjYwOWQ2YzQ2YWRlNzNlODA3ZmM0MGRiYzNhMWExYWZiYjQ1NmFlMTY1Nzg1YjBmZTgzNGRkMWNiNTcifX19\"}]},Name:\"847594e3-7b7d-2fde-bf32-629b6b697726\"},display:{Lore:[0:\"\"],Name:\"§dRoger (Rift NPC)\"},ExtraAttributes:{id:\"ROGER_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ROGER_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -2, + "y": 71, + "z": -43, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "HUB_WIZARD_TOWER_TRAVEL_SCROLL:1", + "cost": [ + "SKYBLOCK_MOTE:5000" + ] + } + ], + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Roger" + ] +}
\ No newline at end of file diff --git a/items/ROY_NPC.json b/items/ROY_NPC.json new file mode 100644 index 00000000..4990eb69 --- /dev/null +++ b/items/ROY_NPC.json @@ -0,0 +1,21 @@ +{ + "internalname": "ROY_NPC", + "itemid": "minecraft:skull", + "displayname": "§9Roy (NPC)", + "clickcommand": "viewrecipe", + "damage": 3, + "nbttag": "{HideFlags:254,display:{Lore:[0:\"\"],Name:\"§9Roy (NPC)\"},ExtraAttributes:{id:\"ROY_NPC\"}}", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "TODO" + ], + "lore": [ + "" + ], + "x": -204, + "y": 75, + "z": 50, + "island": "rift", + "recipes": [] +}
\ No newline at end of file diff --git a/items/ROY_RIFT_NPC.json b/items/ROY_RIFT_NPC.json new file mode 100644 index 00000000..0dce5f43 --- /dev/null +++ b/items/ROY_RIFT_NPC.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dRoy (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"6e5b19d6-2dcc-2537-b66a-e9df9476912f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Q2N2JiNjA0NzMzMWZhNjQzZjFkYTE2N2QzMzE3YzU2MTE5ODlkZDY0OGQ5OGNjZDcyZjMzMDVlODM4ZGNhMTYifX19\"}]},Name:\"6e5b19d6-2dcc-2537-b66a-e9df9476912f\"},display:{Lore:[0:\"\"],Name:\"§dRoy (Rift NPC)\"},ExtraAttributes:{id:\"ROY_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "ROY_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -205, + "y": 76, + "z": 49, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "SKYBLOCK_ENIGMA_SOUL:1", + "cost": [ + "SKYBLOCK_MOTE:4000", + "DEADGEHOG_SPINE:8" + ] + } + ], + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Roy" + ] +}
\ No newline at end of file diff --git a/items/SCARF_STUDIES.json b/items/SCARF_STUDIES.json index e593bd37..9e055c55 100644 --- a/items/SCARF_STUDIES.json +++ b/items/SCARF_STUDIES.json @@ -1,9 +1,10 @@ { "itemid": "minecraft:skull", - "displayname": "§9Scarf\u0027s Studies", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"eb6966be-d293-35e9-9aa0-26d233d7e91d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmRlNGFiMTI5ZTEzN2Y5ZjRjYmY3MDYwMzE4ZWUxNzQ4ZGMzOWRhOWI1ZDEyOWE4ZGEwZTYxNGUyMzM3NjkzIn19fQ\"}]}},display:{Lore:[0:\"§7Gain dungeon class experience\",1:\"§7§a+2% §7faster.\",2:\"\",3:\"§7§7§oThe collection of his\",4:\"§7§ostudies, beautiful handwriting!\",5:\"\",6:\"§eRight-click to view recipes!\",7:\"\",8:\"§9§lRARE DUNGEON ACCESSORY\"],Name:\"§9Scarf\u0027s Studies\"},ExtraAttributes:{id:\"SCARF_STUDIES\"}}", + "displayname": "§f§f§9Scarf\u0027s Studies", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"eb6966be-d293-35e9-9aa0-26d233d7e91d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmRlNGFiMTI5ZTEzN2Y5ZjRjYmY3MDYwMzE4ZWUxNzQ4ZGMzOWRhOWI1ZDEyOWE4ZGEwZTYxNGUyMzM3NjkzIn19fQ\"}]}},display:{Lore:[0:\"\",1:\"§7Gain dungeon class experience\",2:\"§7§a+2% §7faster.\",3:\"\",4:\"§7§7§oThe collection of his\",5:\"§7§ostudies, beautiful handwriting!\",6:\"\",7:\"§eRight-click to view recipes!\",8:\"\",9:\"§5§kX§5 Rift-Transferable §kX\",10:\"§9§lRARE DUNGEON ACCESSORY\"],Name:\"§f§f§9Scarf\u0027s Studies\"},ExtraAttributes:{id:\"SCARF_STUDIES\"}}", "damage": 3, "lore": [ + "", "§7Gain dungeon class experience", "§7§a+2% §7faster.", "", @@ -12,6 +13,7 @@ "", "§eRight-click to view recipes!", "", + "§5§kX§5 Rift-Transferable §kX", "§9§lRARE DUNGEON ACCESSORY" ], "internalname": "SCARF_STUDIES", diff --git a/items/SCRIBE_CRUX.json b/items/SCRIBE_CRUX.json new file mode 100644 index 00000000..f33e8880 --- /dev/null +++ b/items/SCRIBE_CRUX.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aScribe Crux", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b8b2491c-595e-3997-820f-bfcabe97de9c\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NjkwOTc0MDA5NSwKICAicHJvZmlsZUlkIiA6ICI1MTY4ZjZlMjIyM2E0Y2FjYjdiN2QyZjYyZWMxZGFhOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJkZWZfbm90X2FzaCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9lMGVlNzgxYjc5YjFmZGMxNGFjMDhiNTA0NDhjZDkxNzRmNzFlMTU1NTE2ZTNiZjU0MmEyZDZjNDY2ZWFjZjgyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7What dinosaur is a scribe\u0027s best\",1:\"§7friend?\",2:\"§7Thesaurus.\",3:\"\",4:\"§eRight-click to view recipes!\",5:\"\",6:\"§a§lUNCOMMON\"],Name:\"§aScribe Crux\"},ExtraAttributes:{id:\"SCRIBE_CRUX\"}}", + "damage": 3, + "lore": [ + "§7What dinosaur is a scribe\u0027s best", + "§7friend?", + "§7Thesaurus.", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "SCRIBE_CRUX", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Scribe_Crux", + "https://wiki.hypixel.net/Scribe_Crux" + ] +}
\ No newline at end of file diff --git a/items/SCRIBE_MONSTER.json b/items/SCRIBE_MONSTER.json new file mode 100644 index 00000000..4cb46149 --- /dev/null +++ b/items/SCRIBE_MONSTER.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aScribe (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"67f8f782-f3c0-4f63-89a1-e3142d003a5c\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3Njk2NDE4NDUxMywKICAicHJvZmlsZUlkIiA6ICIzZWUxYWRlMzljZDI0ZjFkOWYwODliYjA2ZTkzNTY5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSdXNvR01SIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzQ4NWYyMjhiNWM1MTg1YWIyZDczM2RmY2VkOGJmZDliNDE1ODkwOTE1NThmYTI0NDIxZjA4YzE1N2Y5ZGZjNzUiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§c❤ Health§8: §c130\"],Name:\"§aScribe (Monster)\"},ExtraAttributes:{id:\"SCRIBE_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c130" + ], + "internalname": "SCRIBE_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§eVolt", + "render": "@neurepo:mobs/scribe.json", + "level": 5, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:100", + "chance": "100%" + }, + { + "id": "SCRIBE_CRUX:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/SELF_RECURSIVE_PICKAXE.json b/items/SELF_RECURSIVE_PICKAXE.json new file mode 100644 index 00000000..88ec79f3 --- /dev/null +++ b/items/SELF_RECURSIVE_PICKAXE.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:diamond_pickaxe", + "displayname": "§9Self-Recursive Pickaxe", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Damage: §a+5\",1:\"\",2:\"§7Allows you to break living metal\",3:\"§7ore and, potentially, living\",4:\"§7metal faces.\",5:\"\",6:\"§7Regens §b4 Mana §7on hit.\",7:\"\",8:\"§9§lRARE SWORD\"],Name:\"§9Self-Recursive Pickaxe\"},ExtraAttributes:{id:\"SELF_RECURSIVE_PICKAXE\"}}", + "damage": 0, + "lore": [ + "§7Rift Damage: §a+5", + "", + "§7Allows you to break living metal", + "§7ore and, potentially, living", + "§7metal faces.", + "", + "§7Regens §b4 Mana §7on hit.", + "", + "§9§lRARE SWORD" + ], + "internalname": "SELF_RECURSIVE_PICKAXE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Self-Recursive_Pickaxe", + "https://wiki.hypixel.net/Self-Recursive_Pickaxe" + ] +}
\ No newline at end of file diff --git a/items/SERAPHINE_RIFT_NPC.json b/items/SERAPHINE_RIFT_NPC.json new file mode 100644 index 00000000..74973b52 --- /dev/null +++ b/items/SERAPHINE_RIFT_NPC.json @@ -0,0 +1,31 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dSeraphine (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0f3f93af-110c-2219-a5e9-d1424fd70c72\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2QxMDBkOWJjMDVlYWQ2ZTdiNTY1ZmQwNjBiMzAxZDJmMjMyZTA3OTVlMDJhMGVlYWZmNmZiZGY3OTM5MGM1NCJ9fX0\u003d\"}]},Name:\"0f3f93af-110c-2219-a5e9-d1424fd70c72\"},display:{Lore:[0:\"\"],Name:\"§dSeraphine (Rift NPC)\"},ExtraAttributes:{id:\"SERAPHINE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "SERAPHINE_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -16, + "y": 72, + "z": -101, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "DETRANSFIGURED_MASK:1", + "cost": [ + "SKYBLOCK_MOTE:1500", + "AGARICUS_CAP_CAP" + ] + } + ], + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Seraphine_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/SEYMOUR_RIFT_NPC.json b/items/SEYMOUR_RIFT_NPC.json new file mode 100644 index 00000000..565f7f64 --- /dev/null +++ b/items/SEYMOUR_RIFT_NPC.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dSeymour (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"01af6895-5fa0-27ec-b59c-114df2f2e368\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2M4YWFjNGU2MzEzOThjMGY0N2ZlODU2MTVlN2Y0OTIxNTUwMDA0MGJiOTA4MTlkNTY4ZTgyNGFjZjk0YmZhNGUifX19\"}]},Name:\"01af6895-5fa0-27ec-b59c-114df2f2e368\"},display:{Lore:[0:\"\"],Name:\"§dSeymour (Rift NPC)\"},ExtraAttributes:{id:\"SEYMOUR_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "SEYMOUR_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -27, + "y": 72, + "z": -44, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "EXCEEDINGLY_COMFY_SNEAKERS:1", + "cost": [ + "SKYBLOCK_MOTE:49999", + "GUNTHER_SNEAKERS" + ] + } + ] +}
\ No newline at end of file diff --git a/items/SHADOW_CRUX.json b/items/SHADOW_CRUX.json index a425da8f..1af97cca 100644 --- a/items/SHADOW_CRUX.json +++ b/items/SHADOW_CRUX.json @@ -1,18 +1,20 @@ { "itemid": "minecraft:skull", "displayname": "§aShadow Crux", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"febc83be-f2cf-306a-876e-10f4efda68f6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0OTIzMzA1NzU4MCwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2NjYzhhNjkwYzg5ZWJmMDFhZGYwNDQwYzBhM2Q1NDBlMmRiODljZmM5N2FkM2I4ZTAxODEwYmYzMjg5ZjY3YSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Trust no one.\",1:\"§7Not even your own shadow.\",2:\"§7It\u0027s always acting shady.\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aShadow Crux\"},ExtraAttributes:{id:\"SHADOW_CRUX\"}}", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"febc83be-f2cf-306a-876e-10f4efda68f6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0OTIzMzA1NzU4MCwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvM2NjYzhhNjkwYzg5ZWJmMDFhZGYwNDQwYzBhM2Q1NDBlMmRiODljZmM5N2FkM2I4ZTAxODEwYmYzMjg5ZjY3YSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Trust no one.\",1:\"§7Not even your own shadow.\",2:\"§7It\u0027s always acting shady.\",3:\"\",4:\"§eRight-click to view recipes!\",5:\"\",6:\"§a§lUNCOMMON\"],Name:\"§aShadow Crux\"},ExtraAttributes:{id:\"SHADOW_CRUX\"}}", "damage": 3, "lore": [ "§7Trust no one.", "§7Not even your own shadow.", "§7It\u0027s always acting shady.", "", + "§eRight-click to view recipes!", + "", "§a§lUNCOMMON" ], "internalname": "SHADOW_CRUX", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "" }
\ No newline at end of file diff --git a/items/SHADOW_MONSTER.json b/items/SHADOW_MONSTER.json new file mode 100644 index 00000000..eba28a7f --- /dev/null +++ b/items/SHADOW_MONSTER.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aShadow (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d1182c14-1580-4af8-891a-fabcfd9c9ecf\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0OTIzMTczNTA1MiwKICAicHJvZmlsZUlkIiA6ICIwMGZiNTRiOWI4NDA0YTA0YTViMmJhMzBlYzBlYTAxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrbGxveWQ3MCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82MTMzYzA4MTEyZWE2NTJhOGY4YjhkZjQ1Y2I2MmYyZGJiNDA3MzdjZGQ0Nzg2NWYxMzVkODRmOTBjODA5ODNlIgogICAgfQogIH0KfQ\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§c❤ Health§8: §c125\"],Name:\"§aShadow (Monster)\"},ExtraAttributes:{id:\"SHADOW_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c125" + ], + "internalname": "SHADOW_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§8Shadow", + "render": "@neurepo:mobs/shadow.json", + "level": 3, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:150", + "chance": "100%" + }, + { + "id": "SHADOW_CRUX:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/SHAME_CRUX.json b/items/SHAME_CRUX.json index b1ece266..2599fc44 100644 --- a/items/SHAME_CRUX.json +++ b/items/SHAME_CRUX.json @@ -1,19 +1,20 @@ { "itemid": "minecraft:skull", "displayname": "§aShy Crux", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"aae1e6c3-fddc-3748-8c47-09c40364f88c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjc1N2NmYzdjMTFiMWU2ZjEwMjhiODA0NjJkMWU0MzAyZGNhNWFiODU5MjIyNWVhOGM4Yjc2MzljNzBlNjFmOSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§eRight-click to view recipes!\",1:\"§7Rumors are that Argofays and\",2:\"§7other creatures really like\",3:\"§7this.\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aShy Crux\"},ExtraAttributes:{id:\"SHAME_CRUX\"}}", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"aae1e6c3-fddc-3748-8c47-09c40364f88c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZjc1N2NmYzdjMTFiMWU2ZjEwMjhiODA0NjJkMWU0MzAyZGNhNWFiODU5MjIyNWVhOGM4Yjc2MzljNzBlNjFmOSJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Rumors are that Argofays and\",1:\"§7other creatures really like\",2:\"§7this.\",3:\"\",4:\"§eRight-click to view recipes!\",5:\"\",6:\"§a§lUNCOMMON\"],Name:\"§aShy Crux\"},ExtraAttributes:{id:\"SHAME_CRUX\"}}", "damage": 3, "lore": [ - "§eRight-click to view recipes!", "§7Rumors are that Argofays and", "§7other creatures really like", "§7this.", "", + "§eRight-click to view recipes!", + "", "§a§lUNCOMMON" ], "internalname": "SHAME_CRUX", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "" }
\ No newline at end of file diff --git a/items/SHANIA_RIFT_NPC.json b/items/SHANIA_RIFT_NPC.json new file mode 100644 index 00000000..601a1708 --- /dev/null +++ b/items/SHANIA_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dShania (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f2dfc29a-a121-33a8-8773-226e9131421f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNWQ2YzZlZGE5NDJmN2Y1ZjcxYzMxNjFjNzMwNmY0YWVkMzA3ZDgyODk1ZjlkMmIwN2FiNDUyNTcxOGVkYzUifX19\"}]},Name:\"00000000-0000-0000-0000-000000000000\"},display:{Lore:[0:\"\"],Name:\"§dShania (Rift NPC)\"},ExtraAttributes:{id:\"SHANIA_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "SHANIA_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -48, + "y": 73, + "z": -161, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/SHIFTED_RIFT_NPC.json b/items/SHIFTED_RIFT_NPC.json new file mode 100644 index 00000000..f72aaf28 --- /dev/null +++ b/items/SHIFTED_RIFT_NPC.json @@ -0,0 +1,43 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dShifted (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"0c5ec038-5c50-4902-a696-b633522d8fbd\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"eyJ0aW1lc3RhbXAiOjE1NzUyOTg4MzI3NzcsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzZjMDFiMjEzNTc0ZjYzMDYxNmRkMDBiN2EzYmM2MTc3NGZkN2Q0NjcxMzY0NzZiZDdiN2E5OWVjMjVlZTI3NTcifX19\"}]},Name:\"§0c5ec038-5c50-4902-a696-b633522d8fbd\"},display:{Lore:[0:\"\"],Name:\"§dShifted (Rift NPC)\"},ExtraAttributes:{id:\"SHIFTED_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "SHIFTED_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -121, + "y": 74, + "z": 174, + "island": "rift", + "recipes": [ + { + "type": "npc_shop", + "result": "RIFT_SPEED_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "SKYBLOCK_MOTE:10000.0" + ] + }, + { + "type": "npc_shop", + "result": "RIFT_JUMP_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "SKYBLOCK_MOTE:5000.0" + ] + }, + { + "type": "npc_shop", + "result": "RIFT_STRENGTH_ELIXIR:1.0", + "cost": [ + "SHAME_CRUX:5.0", + "SKYBLOCK_MOTE:12000.0" + ] + } + ] + +}
\ No newline at end of file diff --git a/items/SHY_MONSTER.json b/items/SHY_MONSTER.json new file mode 100644 index 00000000..0f210da4 --- /dev/null +++ b/items/SHY_MONSTER.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aShy (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"897d94b2-5656-46df-ba23-966ca6c74b80\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0NzU4NzkyNDI4NywKICAicHJvZmlsZUlkIiA6ICJmMTYwZTMxMzJjYWM0YjRiOWM5OTk2NDQ1OGIxOWM0ZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJUb255S0tLIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2FjOWFkY2Q5NzVhOTE2OTE0YjVkMjlhZGFjZjVmNTJlNzk1MTQ3ODU4MzQ3NjU1MmE0ZjZmZThkOTRmNDhjMmEiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ==\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§7A very shy boy, only found\",1:\"§7in §dthe Rift§7.\",2:\"\",3:\"§c❤ Health§8: §c110\"],Name:\"§aShy (Monster)\"},ExtraAttributes:{id:\"SHY_MONSTER\"}}", + "damage": 3, + "lore": [ + "§7A very shy boy, only found", + "§7in §dthe Rift§7.", + "", + "§c❤ Health§8: §c110" + ], + "internalname": "SHY_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§2Shy", + "render": "@neurepo:mobs/shy.json", + "level": 1, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:100", + "chance": "100%" + }, + { + "id": "SHAME_CRUX:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/SILKRIDER_SAFETY_BELT.json b/items/SILKRIDER_SAFETY_BELT.json index 1094d239..0c524c29 100644 --- a/items/SILKRIDER_SAFETY_BELT.json +++ b/items/SILKRIDER_SAFETY_BELT.json @@ -1,7 +1,7 @@ { "itemid": "minecraft:skull", - "displayname": "§9Silkrider Safety Belt", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0cdf40f0-71c8-3e8a-868d-a01742a51cd0\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0NzcxNTE3OTkyNCwKICAicHJvZmlsZUlkIiA6ICIxYWZhZjc2NWI1ZGY0NjA3YmY3ZjY1ZGYzYWIwODhhOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMb3lfQmxvb2RBbmdlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83MDdiYjRmMDMwODE3YWY3NDFjNTU0MjE1NmJjYmExNTU4YzgyYjAwOTE2ZDkxNTllMmMyOTcyZGE3NWQ5MGIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Speed: §a+2\",1:\"\",2:\"§7Monster melee attacks reduce §a1\",3:\"§a§7less §aф Rift Time§7.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§9§lRARE BELT\"],Name:\"§9Silkrider Safety Belt\"},ExtraAttributes:{id:\"SILKRIDER_SAFETY_BELT\"}}", + "displayname": "§aSilkrider Safety Belt", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"0cdf40f0-71c8-3e8a-868d-a01742a51cd0\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY0NzcxNTE3OTkyNCwKICAicHJvZmlsZUlkIiA6ICIxYWZhZjc2NWI1ZGY0NjA3YmY3ZjY1ZGYzYWIwODhhOCIsCiAgInByb2ZpbGVOYW1lIiA6ICJMb3lfQmxvb2RBbmdlbCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS83MDdiYjRmMDMwODE3YWY3NDFjNTU0MjE1NmJjYmExNTU4YzgyYjAwOTE2ZDkxNTllMmMyOTcyZGE3NWQ5MGIyIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Speed: §a+2\",1:\"\",2:\"§7Monster melee attacks reduce §a1\",3:\"§a§7less §aф Rift Time§7.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON BELT\"],Name:\"§aSilkrider Safety Belt\"},ExtraAttributes:{id:\"SILKRIDER_SAFETY_BELT\"}}", "damage": 3, "lore": [ "§7Speed: §a+2", @@ -10,12 +10,12 @@ "§a§7less §aф Rift Time§7.", "", "§7§8This item can be reforged!", - "§9§lRARE BELT" + "§a§lUNCOMMON BELT" ], "internalname": "SILKRIDER_SAFETY_BELT", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "WIKI_URL", "info": [ "https://hypixel-skyblock.fandom.com/wiki/Silkrider_Safety_Belt" diff --git a/items/SILKWIRE_STICK.json b/items/SILKWIRE_STICK.json new file mode 100644 index 00000000..3352f7e0 --- /dev/null +++ b/items/SILKWIRE_STICK.json @@ -0,0 +1,24 @@ +{ + "itemid": "minecraft:stick", + "displayname": "§9Silkwire Stick", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Click on a §eSilkwire §7to\",1:\"§7attach to it, pretending to\",2:\"§7§bfly§7.\",3:\"\",4:\"§7Once attached, §e§lCLICK §7to\",5:\"§7hitch forward!\",6:\"\",7:\"§9§lRARE\"],Name:\"§9Silkwire Stick\"},ExtraAttributes:{id:\"SILKWIRE_STICK\"}}", + "damage": 0, + "lore": [ + "§7Click on a §eSilkwire §7to", + "§7attach to it, pretending to", + "§7§bfly§7.", + "", + "§7Once attached, §e§lCLICK §7to", + "§7hitch forward!", + "", + "§9§lRARE" + ], + "internalname": "SILKWIRE_STICK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Silkwire_Stick" + ] +}
\ No newline at end of file diff --git a/items/SILVERTWIST_KARAMBIT.json b/items/SILVERTWIST_KARAMBIT.json new file mode 100644 index 00000000..7abaed19 --- /dev/null +++ b/items/SILVERTWIST_KARAMBIT.json @@ -0,0 +1,27 @@ +{ + "itemid": "minecraft:iron_sword", + "displayname": "§5Silver-Twist Karambit", + "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Damage: §a+6\",1:\"§7Speed: §a+15\",2:\"\",3:\"§7Gain §5+5❁ Rift Damage §7against\",4:\"§7§4Vampires§7.\",5:\"\",6:\"§7Regens §b6 Mana §7and §c0.5❤\",7:\"§c§7on hit.\",8:\"\",9:\"§5§lEPIC SWORD\"],Name:\"§5Silver-Twist Karambit\"},ExtraAttributes:{id:\"SILVERTWIST_KARAMBIT\"}}", + "damage": 0, + "lore": [ + "§7Rift Damage: §a+6", + "§7Speed: §a+15", + "", + "§7Gain §5+5❁ Rift Damage §7against", + "§7§4Vampires§7.", + "", + "§7Regens §b6 Mana §7and §c0.5❤", + "§c§7on hit.", + "", + "§5§lEPIC SWORD" + ], + "internalname": "SILVERTWIST_KARAMBIT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Silver-Twist_Karambit", + "https://wiki.hypixel.net/Silver-Twist_Karambit" + ] +}
\ No newline at end of file diff --git a/items/SKYBLOCK_ENIGMA_SOUL.json b/items/SKYBLOCK_ENIGMA_SOUL.json new file mode 100644 index 00000000..a207ea1c --- /dev/null +++ b/items/SKYBLOCK_ENIGMA_SOUL.json @@ -0,0 +1,19 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dEnigma Soul (Rift)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ad5f635a-f850-4db4-9b2b-1b36dedf44cb\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOTMwZmU3NzFmY2MzZWNjMDUzMGVlOTU0NWFiMDc3OTc0MzdmOTVlMDlhMGVhYTliNTEyNDk3ZmU4OTJmNTJmYiJ9fX0\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§7Used for NEU NPC-Shops\",1:\"\",2:\"§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka\"],Name:\"§dEnigma Soul (Rift)\"},ExtraAttributes:{id:\"SKYBLOCK_ENIGMA_SOUL\"}}", + "damage": 3, + "lore": [ + "§7Used for NEU NPC-Shops", + "", + "§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka" + ], + "internalname": "SKYBLOCK_ENIGMA_SOUL", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Enigma_Souls" + ] +}
\ No newline at end of file diff --git a/items/SKYBLOCK_FLY.json b/items/SKYBLOCK_FLY.json new file mode 100644 index 00000000..a5fecc51 --- /dev/null +++ b/items/SKYBLOCK_FLY.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dFly (Rift)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b61c88a0-2ab4-44a1-9d2d-af34a9ddb334\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZTMwYWMxZjljNjQ5Yzk5Y2Q2MGU0YmZhNTMzNmNjMTg1MGYyNzNlYWI5ZjViMGI3OTQwZDRkNGQ3ZGM4MjVkYyJ9fX0\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§7Used for NEU NPC-Shops\",1:\"§7Can be collected with the\",2:\"§9Turbomax Vacuum Cleaner§7.\",3:\"\",4:\"§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka\"],Name:\"§dFly (Rift)\"},ExtraAttributes:{id:\"SKYBLOCK_FLY\"}}", + "damage": 3, + "lore": [ + "§7Used for NEU NPC-Shops", + "§7Can be collected with the", + "§9Turbomax Vacuum Cleaner§7.", + "", + "§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka" + ], + "internalname": "SKYBLOCK_FLY", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Kat_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/SKYBLOCK_MOTE.json b/items/SKYBLOCK_MOTE.json new file mode 100644 index 00000000..2c1067db --- /dev/null +++ b/items/SKYBLOCK_MOTE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:double_plant", + "displayname": "§aMote", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Used for NEU NPC-Shops\",1:\"\",2:\"§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka\"],Name:\"§aMote\"},ExtraAttributes:{id:\"SKYBLOCK_MOTE\"}}", + "damage": 1, + "lore": [ + "§7Used for NEU NPC-Shops", + "", + "§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka" + ], + "internalname": "SKYBLOCK_MOTE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Motes", + "https://wiki.hypixel.net/Motes" + ] +}
\ No newline at end of file diff --git a/items/SKYBLOCK_SILVERFISH.json b/items/SKYBLOCK_SILVERFISH.json new file mode 100644 index 00000000..e9bde732 --- /dev/null +++ b/items/SKYBLOCK_SILVERFISH.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dSilverfish (Rift)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"79e570d8-f66e-375c-9e70-97224ccd5692\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGE5MWRhYjgzOTFhZjVmZGE1NGFjZDJjMGIxOGZiZDgxOWI4NjVlMWE4ZjFkNjIzODEzZmE3NjFlOTI0NTQwIn19fQ\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§7Used for NEU NPC-Shops\",1:\"§7Can be collected with the\",2:\"§9Turbomax Vacuum Cleaner§7.\",3:\"\",4:\"§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka\"],Name:\"§dSilverfish (Rift)\"},ExtraAttributes:{id:\"SKYBLOCK_SILVERFISH\"}}", + "damage": 3, + "lore": [ + "§7Used for NEU NPC-Shops", + "§7Can be collected with the", + "§9Turbomax Vacuum Cleaner§7.", + "", + "§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka" + ], + "internalname": "SKYBLOCK_SILVERFISH", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Kat_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/SKYBLOCK_SPIDER.json b/items/SKYBLOCK_SPIDER.json new file mode 100644 index 00000000..c72f685f --- /dev/null +++ b/items/SKYBLOCK_SPIDER.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dSpider (Rift)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"248e0c38-34b5-4ed2-a343-1b2b10a0199c\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY1MDU1NjEzMTkxNywKICAicHJvZmlsZUlkIiA6ICI0ODI5MmJkMjI1OTc0YzUwOTZiMTZhNjEyOGFmMzY3NSIsCiAgInByb2ZpbGVOYW1lIiA6ICJLVVJPVE9ZVEIyOCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS84ZmRmNjJkNGUwM2NhNTk0YzhjZDIxZGQxNzUzMjdmMWNmNzdjNGJjMDU3YTA5NTk2MDNkODNhNjhiYTI3MDA4IgogICAgfQogIH0KfQ\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§7Used for NEU NPC-Shops\",1:\"§7Can be collected with the\",2:\"§9Turbomax Vacuum Cleaner§7.\",3:\"\",4:\"§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka\"],Name:\"§dSpider (Rift)\"},ExtraAttributes:{id:\"SKYBLOCK_SPIDER\"}}", + "damage": 3, + "lore": [ + "§7Used for NEU NPC-Shops", + "§7Can be collected with the", + "§9Turbomax Vacuum Cleaner§7.", + "", + "§c§l§ka§r §c§l§c§lSPECIAL §c§l§ka" + ], + "internalname": "SKYBLOCK_SPIDER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Kat_(Rift)" + ] +}
\ No newline at end of file diff --git a/items/SNAKE_IN_A_BOOT.json b/items/SNAKE_IN_A_BOOT.json new file mode 100644 index 00000000..3d0716ad --- /dev/null +++ b/items/SNAKE_IN_A_BOOT.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:leather_boots", + "displayname": "§5Snake-in-a-Boot", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+60s\",1:\"§7Speed: §a+7\",2:\"\",3:\"§7You\u0027ve got a friend in me.\",4:\"\",5:\"§5§lEPIC BOOTS\"],color:1704012,Name:\"§5Snake-in-a-Boot\"},ExtraAttributes:{id:\"SNAKE_IN_A_BOOT\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+60s", + "§7Speed: §a+7", + "", + "§7You\u0027ve got a friend in me.", + "", + "§5§lEPIC BOOTS" + ], + "recipe": { + "A1": "", + "A2": "", + "A3": "", + "B1": "METAL_HEART:5", + "B2": "", + "B3": "METAL_HEART:5", + "C1": "METAL_HEART:5", + "C2": "", + "C3": "EXCEEDINGLY_COMFY_SNEAKERS:1" + }, + "internalname": "SNAKE_IN_A_BOOT", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Living Metal Heart I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Snake-in-a-Boot", + "https://wiki.hypixel.net/Snake-in-a-Boot" + ] +}
\ No newline at end of file diff --git a/items/SORCERER_OKRON_RIFT_NPC.json b/items/SORCERER_OKRON_RIFT_NPC.json new file mode 100644 index 00000000..c991fdf0 --- /dev/null +++ b/items/SORCERER_OKRON_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dSorcerer Okron (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"4813c4d5-e57b-2d63-afc8-f9049655f700\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzlhZmE4MGU2MDQ1MTE2YTIwOGM1MGI5OWVkYzQxYTRiODgxNmU4ODE2MDExYzFjZDQwZjIyZjdhOGQ5NmU4NTIifX19\"}]},Name:\"4813c4d5-e57b-2d63-afc8-f9049655f700\"},display:{Lore:[0:\"\"],Name:\"§dSorcerer Okron (Rift NPC)\"},ExtraAttributes:{id:\"SORCERER_OKRON_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "SORCERER_OKRON_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -70, + "y": 82, + "z": -110, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/SPIDER;5.json b/items/SPIDER;5.json new file mode 100644 index 00000000..c4be33e5 --- /dev/null +++ b/items/SPIDER;5.json @@ -0,0 +1,48 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§7[Lvl {LVL}] §dSpider", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7c63f3cf-a963-311a-aeca-3a075b417806\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvY2Q1NDE1NDFkYWFmZjUwODk2Y2QyNThiZGJkZDRjZjgwYzNiYTgxNjczNTcyNjA3OGJmZTM5MzkyN2U1N2YxIn19fQ\u003d\u003d\"}]}},display:{Lore:[0:\"§8Combat Pet\",1:\"\",2:\"§7Strength: §c{STRENGTH}\",3:\"§7Crit Chance: §c{CRIT_CHANCE}%\",4:\"\",5:\"§6One With The Spider\",6:\"§7§7Gain §a{0} §c❁ Strength §7for\",7:\"§7every nearby spider.\",8:\"§8Max 10 spiders\",9:\"\",10:\"§6Web-weaver\",11:\"§7§7Upon hitting a monster, it\",12:\"§7becomes slowed by §a{1}%§7.\",13:\"\",14:\"§6Spider Whisperer\",15:\"§7§7Spider and tarantula minions\",16:\"§7work §a{2}% §7faster while on\",17:\"§7your island.\",18:\"\",19:\"§6Web Battlefield\",20:\"§7§7Killing mobs grants §c+6❁\",21:\"§cStrength §7and §b+1✯ Magic Find\",22:\"§b§7for §a40s §7to all players\",23:\"§7staying within §a20 §7blocks\",24:\"§7§7of where they died. §8Stacks\",25:\"§8up to 10 times.\",26:\"\",27:\"§7§eRight-click to add this pet to\",28:\"§eyour pet menu!\",29:\"\",30:\"§d§lMYTHIC\"],Name:\"§f§f§7[Lvl {LVL}] §dSpider\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"SPIDER\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"MYTHIC\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0,\\\"uuid\\\":\\\"b25630a8-b61a-43e1-8e85-3549b0dddb54\\\",\\\"hideRightClick\\\":false}\",id:\"SPIDER;5\"}}", + "damage": 3, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §c{STRENGTH}", + "§7Crit Chance: §c{CRIT_CHANCE}%", + "", + "§6One With The Spider", + "§7§7Gain §a{0} §c❁ Strength §7for", + "§7every nearby spider.", + "§8Max 10 spiders", + "", + "§6Web-weaver", + "§7§7Upon hitting a monster, it", + "§7becomes slowed by §a{1}%§7.", + "", + "§6Spider Whisperer", + "§7§7Spider and tarantula minions", + "§7work §a{2}% §7faster while on", + "§7your island.", + "", + "§6Web Battlefield", + "§7§7Killing mobs grants §c+6❁", + "§cStrength §7and §b+1✯ Magic Find", + "§b§7for §a40s §7to all players", + "§7staying within §a20 §7blocks", + "§7§7of where they died. §8Stacks", + "§8up to 10 times.", + "", + "§7§eRight-click to add this pet to", + "§eyour pet menu!", + "", + "§d§lMYTHIC" + ], + "internalname": "SPIDER;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Spider_Pet", + "https://wiki.hypixel.net/Spider_Pet" + ] +}
\ No newline at end of file diff --git a/items/SPLATTER_CRUX.json b/items/SPLATTER_CRUX.json new file mode 100644 index 00000000..9f238432 --- /dev/null +++ b/items/SPLATTER_CRUX.json @@ -0,0 +1,24 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aSplatter Crux", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"ae014763-fba9-3ea6-8ecb-e2d1836e44e4\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3NzE1NDA2Mzc5MiwKICAicHJvZmlsZUlkIiA6ICI3NTE0NDQ4MTkxZTY0NTQ2OGM5NzM5YTZlMzk1N2JlYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJUaGFua3NNb2phbmciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI0NzVjMmExMTRmMzBmMGQ2NjA1Y2VmNzA4MTEwYTUzMzMzZjE3MjNiYzc2MjYyMmFiNGEyNWRjZmNkMGZkNCIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7How many vampires does it take\",1:\"§7to change a light bulb?\",2:\"§7\",3:\"§7None... why would they need it?\",4:\"\",5:\"§eRight-click to view recipes!\",6:\"\",7:\"§a§lUNCOMMON\"],Name:\"§aSplatter Crux\"},ExtraAttributes:{id:\"SPLATTER_CRUX\"}}", + "damage": 3, + "lore": [ + "§7How many vampires does it take", + "§7to change a light bulb?", + "§7", + "§7None... why would they need it?", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "SPLATTER_CRUX", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Splatter_Crux", + "https://wiki.hypixel.net/Splatter_Crux" + ] +}
\ No newline at end of file diff --git a/items/STEAK_STAKE.json b/items/STEAK_STAKE.json new file mode 100644 index 00000000..a2e535fd --- /dev/null +++ b/items/STEAK_STAKE.json @@ -0,0 +1,34 @@ +{ + "itemid": "minecraft:cooked_mutton", + "displayname": "§9Steak Stake", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: A bit of Impalement §e§lLEFT CLICK\",1:\"§7Stab a §4Vampire §7at §c20%❤\",2:\"§c§7to instantly vanquish it.\",3:\"§8(Does not actually hurt the vampire)\",4:\"\",5:\"§9§lRARE SWORD\"],Name:\"§9Steak Stake\"},ExtraAttributes:{id:\"STEAK_STAKE\"}}", + "damage": 0, + "lore": [ + "§6Ability: A bit of Impalement §e§lLEFT CLICK", + "§7Stab a §4Vampire §7at §c20%❤", + "§c§7to instantly vanquish it.", + "§8(Does not actually hurt the vampire)", + "", + "§9§lRARE SWORD" + ], + "recipe": { + "A1": "COVEN_SEAL:3", + "A2": "WILTED_BERBERIS_BUNCH:1", + "A3": "COVEN_SEAL:3", + "B1": "COVEN_SEAL:3", + "B2": "WILTED_BERBERIS_BUNCH:1", + "B3": "COVEN_SEAL:3", + "C1": "COVEN_SEAL:3", + "C2": "WILTED_BERBERIS_BUNCH:1", + "C3": "COVEN_SEAL:3" + }, + "internalname": "STEAK_STAKE", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Steak_Stake", + "https://wiki.hypixel.net/Steak_Stake" + ] +}
\ No newline at end of file diff --git a/items/TACTICIAN_MURDER_WEAPON.json b/items/TACTICIAN_MURDER_WEAPON.json new file mode 100644 index 00000000..a0b0c246 --- /dev/null +++ b/items/TACTICIAN_MURDER_WEAPON.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:stone_sword", + "displayname": "§9Tactician\u0027s Murder Weapon", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Damage: §a+4\",1:\"\",2:\"§7Regens §b4 Mana §7on hit.\",3:\"\",4:\"§9§lRARE SWORD\"],Name:\"§9Tactician\u0027s Murder Weapon\"},ExtraAttributes:{id:\"TACTICIAN_MURDER_WEAPON\"}}", + "damage": 0, + "lore": [ + "§7Rift Damage: §a+4", + "", + "§7Regens §b4 Mana §7on hit.", + "", + "§9§lRARE SWORD" + ], + "internalname": "TACTICIAN_MURDER_WEAPON", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Tactician%27s_Murder_Weapon", + "https://wiki.hypixel.net/Tactician%27s_Murder_Weapon" + ] +}
\ No newline at end of file diff --git a/items/TARANTULA;4.json b/items/TARANTULA;4.json index 26b44036..464bc8e8 100644 --- a/items/TARANTULA;4.json +++ b/items/TARANTULA;4.json @@ -1,7 +1,7 @@ { "itemid": "minecraft:skull", "displayname": "§f§f§7[Lvl {LVL}] §6Tarantula", - "nbttag": "{overrideMeta:1b,HideFlags:254,SkullOwner:{Id:\"3e5474d4-4365-3ea7-b4bc-b4edc54da341\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMwMDk4NmVkMGEwNGVhNzk5MDRmNmFlNTNmNDllZDNhMGZmNWIxZGY2MmJiYTYyMmVjYmQzNzc3ZjE1NmRmOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Combat Pet\",1:\"\",2:\"§7Crit Chance: §c+{CRIT_CHANCE}%\",3:\"§7Strength: §c+{STRENGTH}\",4:\"§7Crit Damage: §c+{CRIT_DAMAGE}%\",5:\"\",6:\"§6Webbed Cells\",7:\"§7§7Anti-healing is §a{0}% §7less\",8:\"§7effective against you.\",9:\"\",10:\"§6Eight Legs\",11:\"§7§7Decreases the mana cost of\",12:\"§7Spider, Tarantula and Spirit\",13:\"§7Boots by §a{1}%§7.\",14:\"\",15:\"§6Arachnid Slayer\",16:\"§7§7Gain §a+{2}% §3☯ Combat\",17:\"§3Wisdom §7against §aSpiders§7.\",18:\"\",19:\"§7§eRight-click to add this pet to\",20:\"§eyour pet menu!\",21:\"\",22:\"§6§lLEGENDARY\"],Name:\"§f§f§7[Lvl {LVL}] §6Tarantula\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"TARANTULA\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"LEGENDARY\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0}\",id:\"TARANTULA;4\"},AttributeModifiers:[]}", + "nbttag": "{overrideMeta:1b,HideFlags:254,SkullOwner:{Id:\"3e5474d4-4365-3ea7-b4bc-b4edc54da341\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMwMDk4NmVkMGEwNGVhNzk5MDRmNmFlNTNmNDllZDNhMGZmNWIxZGY2MmJiYTYyMmVjYmQzNzc3ZjE1NmRmOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Combat Pet\",1:\"\",2:\"§7Crit Chance: §c+{CRIT_CHANCE}%\",3:\"§7Strength: §c+{STRENGTH}\",4:\"§7Crit Damage: §c+{CRIT_DAMAGE}%\",5:\"\",6:\"§6Webbed Cells\",7:\"§7§7Anti-healing is §a{0}% §7less\",8:\"§7effective against you.\",9:\"\",10:\"§6Eight Legs\",11:\"§7§7Decreases the mana cost of\",12:\"§7Spider, Tarantula and Spirit\",13:\"§7Boots by §a{1}%§7.\",14:\"\",15:\"§6Arachnid Slayer\",16:\"§7§7Gain §b{2}x §7Combat XP\",17:\"§7§7against §aSpiders§7.\",18:\"\",19:\"§7§eRight-click to add this pet to\",20:\"§eyour pet menu!\",21:\"\",22:\"§6§lLEGENDARY\"],Name:\"§f§f§7[Lvl {LVL}] §6Tarantula\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"TARANTULA\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"LEGENDARY\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0}\",id:\"TARANTULA;4\"},AttributeModifiers:[]}", "damage": 3, "lore": [ "§8Combat Pet", @@ -20,8 +20,8 @@ "§7Boots by §a{1}%§7.", "", "§6Arachnid Slayer", - "§7§7Gain §a+{2}% §3☯ Combat", - "§3Wisdom §7against §aSpiders§7.", + "§7§7Gain §b{2}x §7Combat XP", + "§7§7against §aSpiders§7.", "", "§7§eRight-click to add this pet to", "§eyour pet menu!", diff --git a/items/TARANTULA;5.json b/items/TARANTULA;5.json new file mode 100644 index 00000000..d7b1d2f6 --- /dev/null +++ b/items/TARANTULA;5.json @@ -0,0 +1,48 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§7[Lvl {LVL}] §dTarantula", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3e5474d4-4365-3ea7-b4bc-b4edc54da341\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvODMwMDk4NmVkMGEwNGVhNzk5MDRmNmFlNTNmNDllZDNhMGZmNWIxZGY2MmJiYTYyMmVjYmQzNzc3ZjE1NmRmOCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§8Combat Pet\",1:\"\",2:\"§7Strength: §c{STRENGTH}\",3:\"§7Crit Chance: §c{CRIT_CHANCE}%\",4:\"§7Crit Damage: §c{CRIT_DAMAGE}%\",5:\"\",6:\"§6Webbed Cells\",7:\"§7§7Anti-healing is §a{0}% §7less\",8:\"§7effective against you.\",9:\"\",10:\"§6Eight Legs\",11:\"§7§7Decreases the mana cost of\",12:\"§7Spider, Tarantula and Spirit\",13:\"§7Boots by §a{1}%§7.\",14:\"\",15:\"§6Arachnid Slayer\",16:\"§7§7Gain §b{2}x §7Combat XP\",17:\"§7§7against §aSpiders§7.\",18:\"\",19:\"§6Web Battlefield\",20:\"§7§7Killing mobs grants §c+6❁\",21:\"§cStrength §7and §b+1✯ Magic Find\",22:\"§b§7for §a40s §7to all players\",23:\"§7staying within §a20 §7blocks\",24:\"§7§7of where they died. §8Stacks\",25:\"§8up to 10 times.\",26:\"\",27:\"§7§eRight-click to add this pet to\",28:\"§eyour pet menu!\",29:\"\",30:\"§d§lMYTHIC\"],Name:\"§f§f§7[Lvl {LVL}] §dTarantula\"},ExtraAttributes:{petInfo:\"{\\\"type\\\":\\\"TARANTULA\\\",\\\"active\\\":false,\\\"exp\\\":0,\\\"tier\\\":\\\"MYTHIC\\\",\\\"hideInfo\\\":false,\\\"candyUsed\\\":0,\\\"uuid\\\":\\\"6b37a715-8c96-41d0-88a7-2b6523be44cb\\\",\\\"hideRightClick\\\":false}\",id:\"TARANTULA;5\"}}", + "damage": 3, + "lore": [ + "§8Combat Pet", + "", + "§7Strength: §c{STRENGTH}", + "§7Crit Chance: §c{CRIT_CHANCE}%", + "§7Crit Damage: §c{CRIT_DAMAGE}%", + "", + "§6Webbed Cells", + "§7§7Anti-healing is §a{0}% §7less", + "§7effective against you.", + "", + "§6Eight Legs", + "§7§7Decreases the mana cost of", + "§7Spider, Tarantula and Spirit", + "§7Boots by §a{1}%§7.", + "", + "§6Arachnid Slayer", + "§7§7Gain §b{2}x §7Combat XP", + "§7§7against §aSpiders§7.", + "", + "§6Web Battlefield", + "§7§7Killing mobs grants §c+6❁", + "§cStrength §7and §b+1✯ Magic Find", + "§b§7for §a40s §7to all players", + "§7staying within §a20 §7blocks", + "§7§7of where they died. §8Stacks", + "§8up to 10 times.", + "", + "§7§eRight-click to add this pet to", + "§eyour pet menu!", + "", + "§d§lMYTHIC" + ], + "internalname": "TARANTULA;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Tarantula_Pet", + "https://wiki.hypixel.net/Tarantula_Pet" + ] +}
\ No newline at end of file diff --git a/items/TEL_KAR_RIFT_NPC.json b/items/TEL_KAR_RIFT_NPC.json new file mode 100644 index 00000000..582bfbbe --- /dev/null +++ b/items/TEL_KAR_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dTel Kar (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"819dcbb2-d255-2d8b-9686-ebc329dc878e\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU3YjM1NTJjNWFmMmFiMmRjNGUxZjg0ZDc4Y2E0YzRkNjc2ZGVjMDY4MTU3MjI1YTNjMjY3NGU1NTc0ZDIzNDgifX19\"}]},Name:\"819dcbb2-d255-2d8b-9686-ebc329dc878e\"},display:{Lore:[0:\"\"],Name:\"§dTel Kar (Rift NPC)\"},ExtraAttributes:{id:\"TEL_KAR_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "TEL_KAR_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -113, + "y": 70, + "z": 62, + "island": "rift" +}
\ No newline at end of file diff --git a/items/TRANSMISSION_TUNER.json b/items/TRANSMISSION_TUNER.json index c99ea236..e2dc13cf 100644 --- a/items/TRANSMISSION_TUNER.json +++ b/items/TRANSMISSION_TUNER.json @@ -1,7 +1,7 @@ { "itemid": "minecraft:skull", "displayname": "§5Transmission Tuner", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9185d4cc-03d4-3a46-8c92-de3e7319285d\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNDk1MDE2MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI2MjYxNzhiODRkYmQzOTRjZjI0MDk0NjcyMTAyODJlNTIxMDMyMTc2ZGIyMWIyODFmZGM4YWU5Y2JlMmIyZiIKICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7§8Combinable in Anvil\",1:\"\",2:\"§7When applied to an item offering\",3:\"§7a Transmission ability, its\",4:\"§7ability range is increased by\",5:\"§7§d+1§7. Can be applied up to §a4\",6:\"§a§7times!\",7:\"\",8:\"§5§lEPIC\"],Name:\"§5Transmission Tuner\"},ExtraAttributes:{id:\"TRANSMISSION_TUNER\"}}", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9185d4cc-03d4-3a46-8c92-de3e7319285d\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTYyMTYxNDk1MDE2MiwKICAicHJvZmlsZUlkIiA6ICI0MWQzYWJjMmQ3NDk0MDBjOTA5MGQ1NDM0ZDAzODMxYiIsCiAgInByb2ZpbGVOYW1lIiA6ICJNZWdha2xvb24iLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNTI2MjYxNzhiODRkYmQzOTRjZjI0MDk0NjcyMTAyODJlNTIxMDMyMTc2ZGIyMWIyODFmZGM4YWU5Y2JlMmIyZiIKICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7§8Combinable in Anvil\",1:\"\",2:\"§7When applied to an item offering\",3:\"§7a Transmission ability, its\",4:\"§7ability range is increased by\",5:\"§7§d+1§7. Can be applied up to §a4\",6:\"§a§7times!\",7:\"\",8:\"§5§kX§5 Rift-Transferable §kX\",9:\"§5§lEPIC\"],Name:\"§5Transmission Tuner\"},ExtraAttributes:{id:\"TRANSMISSION_TUNER\"}}", "damage": 3, "lore": [ "§7§8Combinable in Anvil", @@ -12,12 +12,13 @@ "§7§d+1§7. Can be applied up to §a4", "§a§7times!", "", + "§5§kX§5 Rift-Transferable §kX", "§5§lEPIC" ], "internalname": "TRANSMISSION_TUNER", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "WIKI_URL", "info": [ "https://hypixel-skyblock.fandom.com/wiki/Transmission_Tuner", diff --git a/items/TRANSYLVANIAN;4.json b/items/TRANSYLVANIAN;4.json new file mode 100644 index 00000000..a0a35db1 --- /dev/null +++ b/items/TRANSYLVANIAN;4.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§fEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Transylvanian IV\",1:\"§7Heal §c2❤§7/s §7per enemy within\",2:\"§7§a10 §7blocks, up to §c20❤§7/s.\",3:\"\",4:\"§7Applicable on: §9Helmet\",5:\"§7Use this on an item in an Anvil\",6:\"§7to apply it!\",7:\"\",8:\"§6Source:\",9:\"§aIV-V: §7Hemovibe Collection\",10:\"\",11:\"§6Applied To:\",12:\"§7- §fHelmet\",13:\"\",14:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"TRANSYLVANIAN;4\",enchantments:{transylvanian:4}}}", + "damage": 0, + "lore": [ + "§9Transylvanian IV", + "§7Heal §c2❤§7/s §7per enemy within", + "§7§a10 §7blocks, up to §c20❤§7/s.", + "", + "§7Applicable on: §9Helmet", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aIV-V: §7Hemovibe Collection", + "", + "§6Applied To:", + "§7- §fHelmet", + "", + "§f§lCOMMON" + ], + "recipe": { + "A1": "", + "A2": "", + "A3": "", + "B1": "", + "B2": "PAPER:8", + "B3": "PAPER:8", + "C1": "", + "C2": "PAPER:8", + "C3": "HEMOGLASS:8" + }, + "internalname": "TRANSYLVANIAN;4", + "crafttext": "Requires: Hemovibe IV", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/TRANSYLVANIAN;5.json b/items/TRANSYLVANIAN;5.json new file mode 100644 index 00000000..47d71bce --- /dev/null +++ b/items/TRANSYLVANIAN;5.json @@ -0,0 +1,28 @@ +{ + "itemid": "minecraft:enchanted_book", + "displayname": "§aEnchanted Book", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Transylvanian V\",1:\"§7Heal §c3❤§7/s §7per enemy within\",2:\"§7§a10 §7blocks, up to §c30❤§7/s.\",3:\"\",4:\"§7Applicable on: §9Helmet\",5:\"§7Use this on an item in an Anvil\",6:\"§7to apply it!\",7:\"\",8:\"§6Source:\",9:\"§aIV-V: §7Hemovibe Collection\",10:\"\",11:\"§6Applied To:\",12:\"§7- §fHelmet\",13:\"\",14:\"§a§lUNCOMMON\"],Name:\"§aEnchanted Book\"},ExtraAttributes:{id:\"TRANSYLVANIAN;5\",enchantments:{transylvanian:5}}}", + "damage": 0, + "lore": [ + "§9Transylvanian V", + "§7Heal §c3❤§7/s §7per enemy within", + "§7§a10 §7blocks, up to §c30❤§7/s.", + "", + "§7Applicable on: §9Helmet", + "§7Use this on an item in an Anvil", + "§7to apply it!", + "", + "§6Source:", + "§aIV-V: §7Hemovibe Collection", + "", + "§6Applied To:", + "§7- §fHelmet", + "", + "§a§lUNCOMMON" + ], + "internalname": "TRANSYLVANIAN;5", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/TYBALT_RIFT_NPC.json b/items/TYBALT_RIFT_NPC.json new file mode 100644 index 00000000..c761ef23 --- /dev/null +++ b/items/TYBALT_RIFT_NPC.json @@ -0,0 +1,16 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dTybalt (Rift NPC)", + "nbttag": "{SkullOwner:{Id:\"40915ae6-f4a2-29f4-9579-60bb3633189d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUxNTRiOGIyNDU3MmZiYTBmY2ZiZTc3NDc3YzA2NTc2MGVjMTVmYWJlYWM3MmJmOWQ5OWNmZDhjMzAzYzVjN2QifX19\"}]},Name:\"40915ae6-f4a2-29f4-9579-60bb3633189d\"},display:{Lore:[0:\"\"],Name:\"§dTybalt (Rift NPC)\"},ExtraAttributes:{id:\"TYBALT_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "TYBALT_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -129, + "y": 80, + "z": 169, + "island": "rift" +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_1.json b/items/VAMPIRE_GENERATOR_1.json new file mode 100644 index 00000000..2d9b0bdd --- /dev/null +++ b/items/VAMPIRE_GENERATOR_1.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion I", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"8ee659be-524e-335f-b8bc-2590e7346654\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDI4Mzg1NSwKICAicHJvZmlsZUlkIiA6ICIyM2YxYTU5ZjQ2OWI0M2RkYmRiNTM3YmZlYzEwNDcxZiIsCiAgInByb2ZpbGVOYW1lIiA6ICIyODA3IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzViMGMyZGI0MmU5MGY4M2ZhZTY1NTFjOTZlODM2NjkyMTFhNzdjMmMxNTVjNTRkMTUyM2FmMzA3OWY5NTY1ZWQiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a190s\",6:\"§7Max Storage: §e64\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion I\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_1\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a190s", + "§7Max Storage: §e64", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOVIBE:10", + "A2": "HEMOVIBE:10", + "A3": "HEMOVIBE:10", + "B1": "HEMOVIBE:10", + "B2": "BAT_PERSON_HELMET:1", + "B3": "HEMOVIBE:10", + "C1": "HEMOVIBE:10", + "C2": "HEMOVIBE:10", + "C3": "HEMOVIBE:10" + }, + "internalname": "VAMPIRE_GENERATOR_1", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_10.json b/items/VAMPIRE_GENERATOR_10.json new file mode 100644 index 00000000..aff30fd0 --- /dev/null +++ b/items/VAMPIRE_GENERATOR_10.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion X", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"a612df1f-ce7b-36f7-8d16-44af2b6df56d\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDQ1NzYwNywKICAicHJvZmlsZUlkIiA6ICI5ZWEyMTQ0NGFiNjI0MWZkYjg5YjE2NDFhNDg2MGZiZiIsCiAgInByb2ZpbGVOYW1lIiA6ICI3QUJDSE9VTiIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS80ZGVhZWIxNzEwZTZkOTMwMzA2MGRjYTg1MzA4NDM3NjUxY2E0MTE2OWZlNjZmOTNhNmIwYWU4ZjYzNDAxN2U4IgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a117s\",6:\"§7Max Storage: §e960\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion X\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_10\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a117s", + "§7Max Storage: §e960", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:32", + "A2": "HEMOGLASS:32", + "A3": "HEMOGLASS:32", + "B1": "HEMOGLASS:32", + "B2": "VAMPIRE_GENERATOR_9:1", + "B3": "HEMOGLASS:32", + "C1": "HEMOGLASS:32", + "C2": "HEMOGLASS:32", + "C3": "HEMOGLASS:32" + }, + "internalname": "VAMPIRE_GENERATOR_10", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_11.json b/items/VAMPIRE_GENERATOR_11.json new file mode 100644 index 00000000..f1a4c1cb --- /dev/null +++ b/items/VAMPIRE_GENERATOR_11.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion XI", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7f2a9ce5-b3be-3987-add6-0f42c0dcdac6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDQ3MjQyNywKICAicHJvZmlsZUlkIiA6ICJiNDA5ZmMyZjg4OTk0ZTVkOWZmNWFiMmUyOWZjNjQzMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJkb2dzaGp0IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2M1NzJjM2I0Y2RlZGVmMTE2MmE2ZGE5YmU3ZjEwZGQyNGZjZjY0Mjc5M2Q2YzQ5YWEwOGVlMGJmNGY5ZDMzMTMiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a95s\",6:\"§7Max Storage: §e960\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion XI\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_11\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a95s", + "§7Max Storage: §e960", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:64", + "A2": "HEMOGLASS:64", + "A3": "HEMOGLASS:64", + "B1": "HEMOGLASS:64", + "B2": "VAMPIRE_GENERATOR_10:1", + "B3": "HEMOGLASS:64", + "C1": "HEMOGLASS:64", + "C2": "HEMOGLASS:64", + "C3": "HEMOGLASS:64" + }, + "internalname": "VAMPIRE_GENERATOR_11", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_2.json b/items/VAMPIRE_GENERATOR_2.json new file mode 100644 index 00000000..ff32e8a1 --- /dev/null +++ b/items/VAMPIRE_GENERATOR_2.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion II", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"a785ff9f-2d49-3e06-9d53-ca252819dc0d\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDI5OTMzMywKICAicHJvZmlsZUlkIiA6ICI5NTE3OTkxNjljYzE0MGY1OGM2MmRjOGZmZTU3NjBiZCIsCiAgInByb2ZpbGVOYW1lIiA6ICJZdWFyaWciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTg4ZGI5OGU4MmNjMWQ1NDAxNGJmNzg2MjdjZGViYjRhNTcxNjdiZjc0ZGM1MjEwMDA2ZmMwNjI1YjJiNGExIgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a190s\",6:\"§7Max Storage: §e192\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion II\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_2\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a190s", + "§7Max Storage: §e192", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOVIBE:20", + "A2": "HEMOVIBE:20", + "A3": "HEMOVIBE:20", + "B1": "HEMOVIBE:20", + "B2": "VAMPIRE_GENERATOR_1:1", + "B3": "HEMOVIBE:20", + "C1": "HEMOVIBE:20", + "C2": "HEMOVIBE:20", + "C3": "HEMOVIBE:20" + }, + "internalname": "VAMPIRE_GENERATOR_2", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_3.json b/items/VAMPIRE_GENERATOR_3.json new file mode 100644 index 00000000..bc56ed24 --- /dev/null +++ b/items/VAMPIRE_GENERATOR_3.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion III", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7e9a621e-6484-38ac-bc3c-948034908d01\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDMxNTEyNCwKICAicHJvZmlsZUlkIiA6ICJhYzIzZmEzNzRhMmM0YjU2YmYzYzU2ZTVhODY3NjIzNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJxdWVlbnNoYW5pd2EiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYTI3MzA1MGM1ZjdhYzdhZTJhNWQzMGYyYWEyZTI0ZDNmMGUyYzU3NDBkMTE2NTljMWVkNWIzMTZjZjg5MWQyNyIKICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a175s\",6:\"§7Max Storage: §e192\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion III\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_3\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a175s", + "§7Max Storage: §e192", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOVIBE:40", + "A2": "HEMOVIBE:40", + "A3": "HEMOVIBE:40", + "B1": "HEMOVIBE:40", + "B2": "VAMPIRE_GENERATOR_2:1", + "B3": "HEMOVIBE:40", + "C1": "HEMOVIBE:40", + "C2": "HEMOVIBE:40", + "C3": "HEMOVIBE:40" + }, + "internalname": "VAMPIRE_GENERATOR_3", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_4.json b/items/VAMPIRE_GENERATOR_4.json new file mode 100644 index 00000000..6d702d5f --- /dev/null +++ b/items/VAMPIRE_GENERATOR_4.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion IV", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"90b5506a-461f-3b07-a2c5-c6fafde86ce2\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDMyOTk0NCwKICAicHJvZmlsZUlkIiA6ICJmZDYwZjM2ZjU4NjE0ZjEyYjNjZDQ3YzJkODU1Mjk5YSIsCiAgInByb2ZpbGVOYW1lIiA6ICJSZWFkIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2ExMDBhNWIzMjQzY2ViNGViYTFlMzBiNmE2NTc5MTc4MGJjODQ4YTU3OGNmMmI3ZTFiZjQ2MDMyMThjNGNkODkiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a175s\",6:\"§7Max Storage: §e384\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion IV\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_4\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a175s", + "§7Max Storage: §e384", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOVIBE:64", + "A2": "HEMOVIBE:64", + "A3": "HEMOVIBE:64", + "B1": "HEMOVIBE:64", + "B2": "VAMPIRE_GENERATOR_3:1", + "B3": "HEMOVIBE:64", + "C1": "HEMOVIBE:64", + "C2": "HEMOVIBE:64", + "C3": "HEMOVIBE:64" + }, + "internalname": "VAMPIRE_GENERATOR_4", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_5.json b/items/VAMPIRE_GENERATOR_5.json new file mode 100644 index 00000000..d84b54f8 --- /dev/null +++ b/items/VAMPIRE_GENERATOR_5.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion V", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"56267fe6-0b2b-3a75-a8b9-5168baceace6\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDM0NjQ3OCwKICAicHJvZmlsZUlkIiA6ICIwYzE1OTI3Yjc4OTY0MTA3OTA5MWQyMjkxN2U0NmIyYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJZb3VBcmVTY2FyeSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS85ZGRmYWNmOTllNzdmOTZjMTE3MjZiOWE4YjY1MDM4N2JhOTZmMTFkY2EzZjdkZjUzNmM1MjdlNzRmMjA0OGQzIgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a160s\",6:\"§7Max Storage: §e384\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion V\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_5\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a160s", + "§7Max Storage: §e384", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:1", + "A2": "HEMOGLASS:1", + "A3": "HEMOGLASS:1", + "B1": "HEMOGLASS:1", + "B2": "VAMPIRE_GENERATOR_4:1", + "B3": "HEMOGLASS:1", + "C1": "HEMOGLASS:1", + "C2": "HEMOGLASS:1", + "C3": "HEMOGLASS:1" + }, + "internalname": "VAMPIRE_GENERATOR_5", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_6.json b/items/VAMPIRE_GENERATOR_6.json new file mode 100644 index 00000000..123fe18c --- /dev/null +++ b/items/VAMPIRE_GENERATOR_6.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion VI", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"153a3428-dd9d-33b7-9af2-8cb446e52047\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDM5MjE0NSwKICAicHJvZmlsZUlkIiA6ICJhMzdlOGYyM2MyMTk0NjJiYjY3ZWUxY2I5OTM2YWY2NiIsCiAgInByb2ZpbGVOYW1lIiA6ICJEb29yYWxleSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9iYjg0ZmRkMTQxMGE3OTE4ZTEzYWViYTI5NjNkNGQ1NWNkOGViY2Y0NTFiNGRiNTRmMjFhZTdkNWMyZjNjNTkyIgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a160s\",6:\"§7Max Storage: §e576\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion VI\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_6\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a160s", + "§7Max Storage: §e576", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:2", + "A2": "HEMOGLASS:2", + "A3": "HEMOGLASS:2", + "B1": "HEMOGLASS:2", + "B2": "VAMPIRE_GENERATOR_5:1", + "B3": "HEMOGLASS:2", + "C1": "HEMOGLASS:2", + "C2": "HEMOGLASS:2", + "C3": "HEMOGLASS:2" + }, + "internalname": "VAMPIRE_GENERATOR_6", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_7.json b/items/VAMPIRE_GENERATOR_7.json new file mode 100644 index 00000000..9343270c --- /dev/null +++ b/items/VAMPIRE_GENERATOR_7.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion VII", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"66bfd383-d9f1-3fff-83f0-b071b3141e77\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDQwNzU4OSwKICAicHJvZmlsZUlkIiA6ICJjYjYxY2U5ODc4ZWI0NDljODA5MzliNWYxNTkwMzE1MiIsCiAgInByb2ZpbGVOYW1lIiA6ICJWb2lkZWRUcmFzaDUxODUiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNmZlZGQ5Yjk0NzcxYTZkOGMzODI5NGU1MDg4ZDQwNDQ2OGEwMTJmOWRlYzU5ODdmM2Y0OTI0NzJmMzBiODNiMyIKICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a140s\",6:\"§7Max Storage: §e576\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion VII\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_7\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a140s", + "§7Max Storage: §e576", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:4", + "A2": "HEMOGLASS:4", + "A3": "HEMOGLASS:4", + "B1": "HEMOGLASS:4", + "B2": "VAMPIRE_GENERATOR_6:1", + "B3": "HEMOGLASS:4", + "C1": "HEMOGLASS:4", + "C2": "HEMOGLASS:4", + "C3": "HEMOGLASS:4" + }, + "internalname": "VAMPIRE_GENERATOR_7", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_8.json b/items/VAMPIRE_GENERATOR_8.json new file mode 100644 index 00000000..23c0cca6 --- /dev/null +++ b/items/VAMPIRE_GENERATOR_8.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion VIII", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"e5200e43-1856-30e1-a1a8-b60519efd040\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDQyNTMxNywKICAicHJvZmlsZUlkIiA6ICIzYjA2ZTc3YzAzYTg0MGExOGIzOGY0Y2Q1ZWE0YzYxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJIT1JVU19JTyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9jMjc1MjE1ZjA0NzYxYmVhZjhkNWExZmQ2YzY4YTZkZGViZjNjNzMyMDk4MjZkYTlkOTYxNTM1NmI2ZTc2NGRiIgogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a140s\",6:\"§7Max Storage: §e768\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion VIII\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_8\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a140s", + "§7Max Storage: §e768", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:8", + "A2": "HEMOGLASS:8", + "A3": "HEMOGLASS:8", + "B1": "HEMOGLASS:8", + "B2": "VAMPIRE_GENERATOR_7:1", + "B3": "HEMOGLASS:8", + "C1": "HEMOGLASS:8", + "C2": "HEMOGLASS:8", + "C3": "HEMOGLASS:8" + }, + "internalname": "VAMPIRE_GENERATOR_8", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRE_GENERATOR_9.json b/items/VAMPIRE_GENERATOR_9.json new file mode 100644 index 00000000..ee97cd1c --- /dev/null +++ b/items/VAMPIRE_GENERATOR_9.json @@ -0,0 +1,38 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Vampire Minion IX", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"7592a2ac-c093-39ec-b140-3698661ad720\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MzU0NDQzOTE0OSwKICAicHJvZmlsZUlkIiA6ICI3ZjU2ZjY1MDI2NjY0ZmM1OWFjNWYyYjVjMTNlZGY3NyIsCiAgInByb2ZpbGVOYW1lIiA6ICJNYXhBbnRvbnkiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYjVhOTQzNmM2NWRjODFlNjdhZWQyYTBmM2QyZTQxNDEzY2MyZThjYTdhYmU5YTdjYWYyNmUxNTk2ZGY5NzBhNyIKICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Place this minion and it will\",1:\"§7start generating and slaying\",2:\"§7Vampire Scions! Minions also\",3:\"§7work when you are offline!\",4:\"\",5:\"§7Time Between Actions: §a117s\",6:\"§7Max Storage: §e768\",7:\"§7Resources Generated: §b0\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Vampire Minion IX\"},ExtraAttributes:{id:\"VAMPIRE_GENERATOR_9\"}}", + "damage": 3, + "lore": [ + "§7Place this minion and it will", + "§7start generating and slaying", + "§7Vampire Scions! Minions also", + "§7work when you are offline!", + "", + "§7Time Between Actions: §a117s", + "§7Max Storage: §e768", + "§7Resources Generated: §b0", + "", + "§9§lRARE" + ], + "recipe": { + "A1": "HEMOGLASS:16", + "A2": "HEMOGLASS:16", + "A3": "HEMOGLASS:16", + "B1": "HEMOGLASS:16", + "B2": "VAMPIRE_GENERATOR_8:1", + "B3": "HEMOGLASS:16", + "C1": "HEMOGLASS:16", + "C2": "HEMOGLASS:16", + "C3": "HEMOGLASS:16" + }, + "internalname": "VAMPIRE_GENERATOR_9", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Hemovibe I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vampire_Minion", + "https://wiki.hypixel.net/Vampire_Minion" + ] +}
\ No newline at end of file diff --git a/items/VAMPIRIC_MELON.json b/items/VAMPIRIC_MELON.json new file mode 100644 index 00000000..440a864f --- /dev/null +++ b/items/VAMPIRIC_MELON.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:melon_block", + "displayname": "§aVampiric Melon", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Perfect ingredient for a healing\",1:\"§7melon.\",2:\"\",3:\"§eRight-click to view recipes!\",4:\"\",5:\"§a§lUNCOMMON\"],Name:\"§aVampiric Melon\"},ExtraAttributes:{id:\"VAMPIRIC_MELON\"}}", + "damage": 0, + "lore": [ + "§7Perfect ingredient for a healing", + "§7melon.", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "VAMPIRIC_MELON", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Vampiric_Melon" + ] +}
\ No newline at end of file diff --git a/items/VERMIN_BELT.json b/items/VERMIN_BELT.json new file mode 100644 index 00000000..1ac470f6 --- /dev/null +++ b/items/VERMIN_BELT.json @@ -0,0 +1,25 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Vermin Belt", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f2bc02be-82d8-35e9-b872-346d9ed45864\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MjA4NDU2MTY0NCwKICAicHJvZmlsZUlkIiA6ICJhODUxNzQ0MDNlNjg0MDgwYWNkODU3MzhlMjI5NGNhZiIsCiAgInByb2ZpbGVOYW1lIiA6ICJEYVJpdmVyc09uZSIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS8xNTIzMDVlMzA0ZTAzMTkxMWI4Y2QxZWRlMDZmNThmMjQ3YjMzYmFkMzFmYTFhOWIzZGQ5ZjZkMmQ4NDVlODA3IiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+100s\",1:\"§7Intelligence: §a+10\",2:\"§7Speed: §a+4\",3:\"\",4:\"§7Monster melee attacks reduce §a1\",5:\"§a§7less §aф Rift Time§7.\",6:\"\",7:\"§5§lEPIC BELT\"],Name:\"§5Vermin Belt\"},ExtraAttributes:{id:\"VERMIN_BELT\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+100s", + "§7Intelligence: §a+10", + "§7Speed: §a+4", + "", + "§7Monster melee attacks reduce §a1", + "§a§7less §aф Rift Time§7.", + "", + "§5§lEPIC BELT" + ], + "internalname": "VERMIN_BELT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Vermin_Belt", + "https://wiki.hypixel.net/Vermin_Belt" + ] +}
\ No newline at end of file diff --git a/items/VERY_SCIENTIFIC_PAPER.json b/items/VERY_SCIENTIFIC_PAPER.json new file mode 100644 index 00000000..30646cb5 --- /dev/null +++ b/items/VERY_SCIENTIFIC_PAPER.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:filled_map", + "displayname": "§9Very Scientific Paper", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7Authored, peer-reviewed and\",1:\"§7published by Kay.\",2:\"\",3:\"§9§lRARE\"],Name:\"§9Very Scientific Paper\"},ExtraAttributes:{id:\"VERY_SCIENTIFIC_PAPER\"}}", + "damage": 30879, + "lore": [ + "§7Authored, peer-reviewed and", + "§7published by Kay.", + "", + "§9§lRARE" + ], + "internalname": "VERY_SCIENTIFIC_PAPER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Very_Scientific_Paper", + "https://wiki.hypixel.net/Very_Scientific_Paper" + ] +}
\ No newline at end of file diff --git a/items/VOLT_CRUX.json b/items/VOLT_CRUX.json new file mode 100644 index 00000000..73fc8b63 --- /dev/null +++ b/items/VOLT_CRUX.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aVolt Crux", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"5160448c-e99e-36a0-ad58-6229b0761a60\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3MzYzNjkyOTE0NiwKICAicHJvZmlsZUlkIiA6ICIwMGZiNTRiOWI4NDA0YTA0YTViMmJhMzBlYzBlYTAxMiIsCiAgInByb2ZpbGVOYW1lIiA6ICJrbGxveWQ3MCIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS82ZTAyYjdhY2IzY2NjMGE3MjI5YThkZWUyNGY1OWYzMTZkZjA1YzYxZTVlY2M3OWUyOWE1MzU4YWRiZDJmYmFlIiwKICAgICAgIm1ldGFkYXRhIiA6IHsKICAgICAgICAibW9kZWwiIDogInNsaW0iCiAgICAgIH0KICAgIH0KICB9Cn0\u003d\"}]}},display:{Lore:[0:\"§7Watt is this?\",1:\"\",2:\"§eRight-click to view recipes!\",3:\"\",4:\"§a§lUNCOMMON\"],Name:\"§aVolt Crux\"},ExtraAttributes:{id:\"VOLT_CRUX\"}}", + "damage": 3, + "lore": [ + "§7Watt is this?", + "", + "§eRight-click to view recipes!", + "", + "§a§lUNCOMMON" + ], + "internalname": "VOLT_CRUX", + "clickcommand": "", + "modver": "2.1.1-PRE", + "crafttext": "", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Volt_Crux", + "https://wiki.hypixel.net/Volt_Crux" + ] +}
\ No newline at end of file diff --git a/items/VOLT_MONSTER.json b/items/VOLT_MONSTER.json new file mode 100644 index 00000000..82d1f00f --- /dev/null +++ b/items/VOLT_MONSTER.json @@ -0,0 +1,36 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aVolt (Monster)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"52f34fb2-8211-49c9-8089-b56ef817e60e\",hypixelPopulated:1b,Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY3MzYzNzQ1OTAwOCwKICAicHJvZmlsZUlkIiA6ICJmMTA0NzMxZjljYTU0NmI0OTkzNjM4NTlkZWY5N2NjNiIsCiAgInByb2ZpbGVOYW1lIiA6ICJ6aWFkODciLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvN2FlYTYyNTFlNThlM2QyMDU1MmEwMzVkNDI0NTYxZWFlZTA4M2ZlYWNkMWU2Y2IzYzJhNWNmOTQ1Y2U2ZDc2ZSIsCiAgICAgICJtZXRhZGF0YSIgOiB7CiAgICAgICAgIm1vZGVsIiA6ICJzbGltIgogICAgICB9CiAgICB9CiAgfQp9\"}]},Name:\"§897d94b2-5656-46df-ba23-966ca6c74b80\"},display:{Lore:[0:\"§c❤ Health§8: §c160\"],Name:\"§aVolt (Monster)\"},ExtraAttributes:{id:\"VOLT_MONSTER\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c160" + ], + "internalname": "VOLT_MONSTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "", + "recipes": [ + { + "coins": 0, + "xp": 0, + "name": "§eVolt", + "render": "@neurepo:mobs/volt.json", + "level": 4, + "combat_xp": 6, + "type": "drops", + "panorama": "rift", + "drops": [ + { + "id": "SKYBLOCK_MOTE:155", + "chance": "100%" + }, + { + "id": "VOLT_CRUX:1", + "chance": "100%" + } + ] + } + ] +}
\ No newline at end of file diff --git a/items/VOODOO_DOLL_WILTED.json b/items/VOODOO_DOLL_WILTED.json new file mode 100644 index 00000000..03c8a03e --- /dev/null +++ b/items/VOODOO_DOLL_WILTED.json @@ -0,0 +1,41 @@ +{ + "itemid": "minecraft:fish", + "displayname": "§5Jinxed Voodoo Doll", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§6Ability: Acupuncture §e§lRIGHT CLICK\",1:\"§7Shoot arrows from every\",2:\"§7direction around the targeted\",3:\"§7monster.\",4:\"§7\",5:\"§7Monsters hit by at least one\",6:\"§7arrow are slowed and receive\",7:\"§7§c3,333 §7damage/s for §a12§7s.\",8:\"§8Mana Cost: §3180\",9:\"§8Cooldown: §a3s\",10:\"\",11:\"§8Who do you voodoo?\",12:\"\",13:\"§5§lEPIC\"],Name:\"§5Jinxed Voodoo Doll\"},ExtraAttributes:{id:\"VOODOO_DOLL_WILTED\"}}", + "damage": 3, + "lore": [ + "§6Ability: Acupuncture §e§lRIGHT CLICK", + "§7Shoot arrows from every", + "§7direction around the targeted", + "§7monster.", + "§7", + "§7Monsters hit by at least one", + "§7arrow are slowed and receive", + "§7§c3,333 §7damage/s for §a12§7s.", + "§8Mana Cost: §3180", + "§8Cooldown: §a3s", + "", + "§8Who do you voodoo?", + "", + "§5§lEPIC" + ], + "recipe": { + "A1": "WILTED_BERBERIS_BUNCH:16", + "A2": "ENCHANTED_PUFFERFISH:3", + "A3": "WILTED_BERBERIS_BUNCH:16", + "B1": "WILTED_BERBERIS_BUNCH:16", + "B2": "VOIDLING_GENERATOR_2:1", + "B3": "ENCHANTED_GHAST_TEAR:13", + "C1": "ZOMBIE_HEART:1", + "C2": "WILTED_BERBERIS_BUNCH:16", + "C3": "VOODOO_DOLL:1" + }, + "internalname": "VOODOO_DOLL_WILTED", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Wilted Berberis III", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Jinxed_Voodoo_Doll" + ] +}
\ No newline at end of file diff --git a/items/VREIKE_RIFT_NPC.json b/items/VREIKE_RIFT_NPC.json new file mode 100644 index 00000000..d6645d1c --- /dev/null +++ b/items/VREIKE_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dVreike (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"a0f8b520-7a10-23ce-a94d-f210adc2059d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzhmOWMwOGExMDgxNjZhZTBkYjg0NzY5OWVlYTM3NzNiYWEzNWFlOGQ4YTY2MmRlZjJkM2JhNmNhZWIwYmM2ZWEifX19\"}]},Name:\"a0f8b520-7a10-23ce-a94d-f210adc2059d\"},display:{Lore:[0:\"\"],Name:\"§dVreike (Rift NPC)\"},ExtraAttributes:{id:\"VREIKE_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "VREIKE_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -124, + "y": 74, + "z": 173, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/WARDING_TRINKET.json b/items/WARDING_TRINKET.json new file mode 100644 index 00000000..151257c2 --- /dev/null +++ b/items/WARDING_TRINKET.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Warding Trinket", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"cf185e6e-a1e0-3800-926e-a4e729b3e33f\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY4MDIwODI3NTYyNCwKICAicHJvZmlsZUlkIiA6ICIwOTZkYWUzZWY1MmU0YWU4ODk3ODY2N2EyOGIwZWFhNCIsCiAgInByb2ZpbGVOYW1lIiA6ICJPb29rYXl5IiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2Y4NGM2NTk1YTM1NDUzZTNjNjc1ODI4NmVmYzZiNjJlNzQ1ZjkwOGU4OTQ1M2U2NDkzYzFkOTBlY2IyMWY4ZGQiLAogICAgICAibWV0YWRhdGEiIDogewogICAgICAgICJtb2RlbCIgOiAic2xpbSIKICAgICAgfQogICAgfQogIH0KfQ\u003d\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+40s\",1:\"§7Intelligence: §a+5\",2:\"\",3:\"§5§lEPIC ACCESSORY\"],Name:\"§5Warding Trinket\"},ExtraAttributes:{id:\"WARDING_TRINKET\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+40s", + "§7Intelligence: §a+5", + "", + "§5§lEPIC ACCESSORY" + ], + "internalname": "WARDING_TRINKET", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Warding_Trinket", + "https://wiki.hypixel.net/Warding_Trinket" + ] +}
\ No newline at end of file diff --git a/items/WEIRD_TUBA.json b/items/WEIRD_TUBA.json index cc4b5a9f..ec5429f9 100644 --- a/items/WEIRD_TUBA.json +++ b/items/WEIRD_TUBA.json @@ -1,22 +1,23 @@ { "internalname": "WEIRD_TUBA", "itemid": "minecraft:hopper", - "displayname": "§9Weird Tuba", + "displayname": "§f§f§9Weird Tuba", "clickcommand": "viewrecipe", "damage": 0, - "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Howl §e§lRIGHT CLICK\",1:\"§7You and 4 nearby players gain:\",2:\"§7§c+30❁ Strength\",3:\"§7§f+30✦ Speed\",4:\"§7§7for §a20 §7seconds.\",5:\"§7§8Effect doesn\u0027t stack.\",6:\"§8Mana Cost: §3150\",7:\"§8Cooldown: §a20s\",8:\"\",9:\"§4☠ §cRequires §5Wolf Slayer 5§c.\",10:\"§9§lRARE\"],Name:\"§9Weird Tuba\"},ExtraAttributes:{id:\"WEIRD_TUBA\"}}", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Howl §e§lRIGHT CLICK\",1:\"§7You and 4 nearby players gain:\",2:\"§7§f+30✦ Speed\",3:\"§7§c+30❁ Strength\",4:\"§7§7for §a20 §7seconds.\",5:\"§7§8Effect doesn\u0027t stack.\",6:\"§8Mana Cost: §3150\",7:\"§8Cooldown: §a20s\",8:\"\",9:\"§7§4☠ §cRequires §5Wolf Slayer 5§c.\",10:\"§5§kX§5 Rift-Transferable §kX\",11:\"§9§lRARE\"],Name:\"§f§f§9Weird Tuba\"},ExtraAttributes:{id:\"WEIRD_TUBA\"}}", "modver": "2.1.1-PRE", "lore": [ "§6Ability: Howl §e§lRIGHT CLICK", "§7You and 4 nearby players gain:", - "§7§c+30❁ Strength", "§7§f+30✦ Speed", + "§7§c+30❁ Strength", "§7§7for §a20 §7seconds.", "§7§8Effect doesn\u0027t stack.", "§8Mana Cost: §3150", "§8Cooldown: §a20s", "", - "§4☠ §cRequires §5Wolf Slayer 5§c.", + "§7§4☠ §cRequires §5Wolf Slayer 5§c.", + "§5§kX§5 Rift-Transferable §kX", "§9§lRARE" ], "recipe": { diff --git a/items/WEIRD_WIZARD_RIFT_NPC.json b/items/WEIRD_WIZARD_RIFT_NPC.json new file mode 100644 index 00000000..10c14695 --- /dev/null +++ b/items/WEIRD_WIZARD_RIFT_NPC.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§dWeird Wizard (Rift NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"374524b4-0998-2025-81e7-d9a84cdf0546\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzgzODU2NGUyOGFiYTk4MzAxZGJkYTVmYWZkODZkMWRhNGUyZWFlZWYxMmVhOTRkY2Y0NDBiODgzZTU1OTMxMWMifX19\"}]},Name:\"374524b4-0998-2025-81e7-d9a84cdf0546\"},display:{Lore:[0:\"\"],Name:\"§dWeird Wizard (Rift NPC)\"},ExtraAttributes:{id:\"WEIRD_WIZARD_RIFT_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "WEIRD_WIZARD_RIFT_NPC", + "clickcommand": "", + "modver": "2.1.1-PRE", + "x": -47, + "y": 124, + "z": 78, + "island": "rift", + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/WILTED_BERBERIS.json b/items/WILTED_BERBERIS.json new file mode 100644 index 00000000..8b160646 --- /dev/null +++ b/items/WILTED_BERBERIS.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:deadbush", + "displayname": "§fWilted Berberis", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7The plant equivalent of an alien\",1:\"§7zombie.\",2:\"\",3:\"§f§lCOMMON\"],Name:\"§fWilted Berberis\"},ExtraAttributes:{id:\"WILTED_BERBERIS\"}}", + "damage": 0, + "lore": [ + "§7The plant equivalent of an alien", + "§7zombie.", + "", + "§f§lCOMMON" + ], + "internalname": "WILTED_BERBERIS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Wilted_Berberis", + "https://wiki.hypixel.net/Wilted_Berberis" + ] +}
\ No newline at end of file diff --git a/items/WILTED_BERBERIS_BUNCH.json b/items/WILTED_BERBERIS_BUNCH.json new file mode 100644 index 00000000..61e52d67 --- /dev/null +++ b/items/WILTED_BERBERIS_BUNCH.json @@ -0,0 +1,33 @@ +{ + "itemid": "minecraft:deadbush", + "displayname": "§aWilted Berberis Bunch", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7The plant equivalent of... ALIEN\",1:\"§7revenant viscera?\",2:\"\",3:\"§5§kX§5 Rift-Transferable §kX\",4:\"§a§lUNCOMMON\"],Name:\"§aWilted Berberis Bunch\"},ExtraAttributes:{id:\"WILTED_BERBERIS_BUNCH\"}}", + "damage": 0, + "lore": [ + "§7The plant equivalent of... ALIEN", + "§7revenant viscera?", + "", + "§5§kX§5 Rift-Transferable §kX", + "§a§lUNCOMMON" + ], + "recipe": { + "A1": "", + "A2": "WILTED_BERBERIS:4", + "A3": "", + "B1": "WILTED_BERBERIS:4", + "B2": "WILTED_BERBERIS:4", + "B3": "WILTED_BERBERIS:4", + "C1": "", + "C2": "WILTED_BERBERIS:4", + "C3": "" + }, + "internalname": "WILTED_BERBERIS_BUNCH", + "clickcommand": "viewrecipe", + "modver": "2.1.1-PRE", + "crafttext": "Requires: Wilted Berberis I", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Wilted_Berberis_Bunch", + "https://wiki.hypixel.net/Wilted_Berberis_Bunch" + ] +}
\ No newline at end of file diff --git a/items/WIZARD_BREADCRUMBS.json b/items/WIZARD_BREADCRUMBS.json new file mode 100644 index 00000000..473d842f --- /dev/null +++ b/items/WIZARD_BREADCRUMBS.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:glowstone_dust", + "displayname": "§9§eWizard\u0027s Breadcrumbs", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§6Ability: Future Footsteps §e§lRIGHT CLICK\",1:\"§7Use while looking at §eyellow\",2:\"§eparticles §7in the world to mark\",3:\"§7a path to take in the §dRift§7.\",4:\"\",5:\"§9§lRARE\"],Name:\"§9§eWizard\u0027s Breadcrumbs\"},ExtraAttributes:{id:\"WIZARD_BREADCRUMBS\"}}", + "damage": 0, + "lore": [ + "§6Ability: Future Footsteps §e§lRIGHT CLICK", + "§7Use while looking at §eyellow", + "§eparticles §7in the world to mark", + "§7a path to take in the §dRift§7.", + "", + "§9§lRARE" + ], + "internalname": "WIZARD_BREADCRUMBS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Wizard%27s_Breadcrumbs" + ] +}
\ No newline at end of file diff --git a/items/WYLD_BOOTS.json b/items/WYLD_BOOTS.json index bcaa283c..5d8949d7 100644 --- a/items/WYLD_BOOTS.json +++ b/items/WYLD_BOOTS.json @@ -1,20 +1,16 @@ { "itemid": "minecraft:leather_boots", "displayname": "§aWyld Boots", - "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§6Full Set Bonus: Helmets All The Way Down\",1:\"§7Regain §a+§a1sф §7when killing a monster\",2:\"§7on top of the experience orbs they usually\",3:\"§7drop.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON BOOTS\"],color:1394968,Name:\"§aWyld Boots\"},ExtraAttributes:{id:\"WYLD_BOOTS\"}}", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+15s\",1:\"\",2:\"§a§lUNCOMMON BOOTS\"],color:1394968,Name:\"§aWyld Boots\"},ExtraAttributes:{id:\"WYLD_BOOTS\"}}", "damage": 0, "lore": [ - "§6Full Set Bonus: Helmets All The Way Down", - "§7Regain §a+§a1sф §7when killing a monster", - "§7on top of the experience orbs they usually", - "§7drop.", + "§7Rift Time: §a+15s", "", - "§7§8This item can be reforged!", "§a§lUNCOMMON BOOTS" ], "internalname": "WYLD_BOOTS", "crafttext": "", "clickcommand": "", - "modver": "2.1.0-REL", + "modver": "2.1.1-PRE", "infoType": "" }
\ No newline at end of file diff --git a/items/WYLD_CHESTPLATE.json b/items/WYLD_CHESTPLATE.json new file mode 100644 index 00000000..6ce9480d --- /dev/null +++ b/items/WYLD_CHESTPLATE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:chainmail_chestplate", + "displayname": "§aWyld Chain Top", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+15s\",1:\"\",2:\"§a§lUNCOMMON CHESTPLATE\"],Name:\"§aWyld Chain Top\"},ExtraAttributes:{id:\"WYLD_CHESTPLATE\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+15s", + "", + "§a§lUNCOMMON CHESTPLATE" + ], + "internalname": "WYLD_CHESTPLATE", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Wyld_Chain_Top", + "https://wiki.hypixel.net/Wyld_Chain_Top" + ] +}
\ No newline at end of file diff --git a/items/WYLD_HELMET.json b/items/WYLD_HELMET.json new file mode 100644 index 00000000..edf2a45d --- /dev/null +++ b/items/WYLD_HELMET.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aWyld Helmet on a Helmet", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"9eb38351-9efb-3794-868e-467fda180847\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZmM4NTkzYjkxMDU4ZmYyNGEwZjY4NDUxMzBlZDNlNDQ5NTY5Y2U5YzZiMjJmYTljZDFlZDczNjBiNTA0NWVhMyJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7Rift Time: §a+15s\",1:\"§7Intelligence: §a+10\",2:\"\",3:\"§6Ability: Helmets All The Way Down\",4:\"§7Regain §a+1ф §7when killing a\",5:\"§7monster.\",6:\"§7§8Note: Monsters already grant\",7:\"§8time on death.\",8:\"\",9:\"§a§lUNCOMMON HELMET\"],Name:\"§aWyld Helmet on a Helmet\"},ExtraAttributes:{id:\"WYLD_HELMET\"}}", + "damage": 3, + "lore": [ + "§7Rift Time: §a+15s", + "§7Intelligence: §a+10", + "", + "§6Ability: Helmets All The Way Down", + "§7Regain §a+1ф §7when killing a", + "§7monster.", + "§7§8Note: Monsters already grant", + "§8time on death.", + "", + "§a§lUNCOMMON HELMET" + ], + "internalname": "WYLD_HELMET", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Wyld_Helmet_On_A_Helmet" + ] +}
\ No newline at end of file diff --git a/items/WYLD_LEGGINGS.json b/items/WYLD_LEGGINGS.json new file mode 100644 index 00000000..422471eb --- /dev/null +++ b/items/WYLD_LEGGINGS.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:leather_leggings", + "displayname": "§aWyld Leggings", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Time: §a+15s\",1:\"\",2:\"§a§lUNCOMMON LEGGINGS\"],color:3520315,Name:\"§aWyld Leggings\"},ExtraAttributes:{id:\"WYLD_LEGGINGS\"}}", + "damage": 0, + "lore": [ + "§7Rift Time: §a+15s", + "", + "§a§lUNCOMMON LEGGINGS" + ], + "internalname": "WYLD_LEGGINGS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Wyld_Leggings", + "https://wiki.hypixel.net/Wyld_Leggings" + ] +}
\ No newline at end of file diff --git a/items/WYLD_SWORD.json b/items/WYLD_SWORD.json new file mode 100644 index 00000000..8463c7b0 --- /dev/null +++ b/items/WYLD_SWORD.json @@ -0,0 +1,23 @@ +{ + "itemid": "minecraft:wooden_sword", + "displayname": "§aWyld Sword", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Rift Damage: §a+2\",1:\"\",2:\"§8Could become anything.\",3:\"§8It\u0027s a wyldcard!\",4:\"\",5:\"§a§lUNCOMMON SWORD\"],Name:\"§aWyld Sword\"},ExtraAttributes:{id:\"WYLD_SWORD\"}}", + "damage": 0, + "lore": [ + "§7Rift Damage: §a+2", + "", + "§8Could become anything.", + "§8It\u0027s a wyldcard!", + "", + "§a§lUNCOMMON SWORD" + ], + "internalname": "WYLD_SWORD", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Wyld_Sword", + "https://wiki.hypixel.net/Wyld_Sword" + ] +}
\ No newline at end of file diff --git a/items/ZOOP_THE_FISH.json b/items/ZOOP_THE_FISH.json new file mode 100644 index 00000000..25826fa4 --- /dev/null +++ b/items/ZOOP_THE_FISH.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:fish", + "displayname": "§cZoop the Fish", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§7Keep me in here please.\",1:\"\",2:\"§5§kX§5 Rift-Transferable §kX\",3:\"§c§lSPECIAL\"],Name:\"§cZoop the Fish\"},ExtraAttributes:{id:\"ZOOP_THE_FISH\"}}", + "damage": 1, + "lore": [ + "§7Keep me in here please.", + "", + "§5§kX§5 Rift-Transferable §kX", + "§c§lSPECIAL" + ], + "internalname": "ZOOP_THE_FISH", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Zoop_The_Fish" + ] +}
\ No newline at end of file diff --git a/mobs/autonull.json b/mobs/autonull.json new file mode 100644 index 00000000..ff5cc430 --- /dev/null +++ b/mobs/autonull.json @@ -0,0 +1,18 @@ +{ + "entity": "Player", + "modifiers": [ + { + "type": "playerdata", + "skin": "neurepo:mobs/autonull.png", + "parts": true + }, + { + "type": "equipment", + "hand": "DIAMOND_SWORD", + "helmet": "CHAINMAIL_HELMET", + "chestplate": "CHAINMAIL_CHESTPLATE", + "leggings": "CHAINMAIL_LEGGINGS", + "feet": "CHAINMAIL_BOOTS" + } + ] +}
\ No newline at end of file diff --git a/mobs/autonull.png b/mobs/autonull.png Binary files differnew file mode 100644 index 00000000..e38f2456 --- /dev/null +++ b/mobs/autonull.png diff --git a/mobs/deadgehog.json b/mobs/deadgehog.json new file mode 100644 index 00000000..5508714f --- /dev/null +++ b/mobs/deadgehog.json @@ -0,0 +1,13 @@ +{ + "entity": "Player", + "modifiers": [ + { + "type": "playerdata", + "skin": "neurepo:mobs/deadgehog.png" + }, + { + "helmet": "SKULL#ewogICJ0aW1lc3RhbXAiIDogMTU4OTk2MzczNTIzMiwKICAicHJvZmlsZUlkIiA6ICJiMGQ3MzJmZTAwZjc0MDdlOWU3Zjc0NjMwMWNkOThjYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJPUHBscyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9mZDRjMTQyYzM4MmE2YmUwMGNhZWVlOWEwMjMwNmYwNjU0NGU2ZTQ2Yjk1M2JjYzhjYWM2NWU1Yzg5ZDQ3OTBhIgogICAgfQogIH0KfQ==", + "type": "equipment" + } + ] +}
\ No newline at end of file diff --git a/mobs/deadgehog.png b/mobs/deadgehog.png Binary files differnew file mode 100644 index 00000000..4ae01088 --- /dev/null +++ b/mobs/deadgehog.png diff --git a/mobs/frozille.json b/mobs/frozille.json new file mode 100644 index 00000000..5e34a707 --- /dev/null +++ b/mobs/frozille.json @@ -0,0 +1,13 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "equipment", + "helmet": "FROZILLE_MONSTER" + }, + { + "type": "invisible", + "invisible": true + } + ] +}
\ No newline at end of file diff --git a/mobs/lagoon_leech.json b/mobs/lagoon_leech.json new file mode 100644 index 00000000..95ef9fe3 --- /dev/null +++ b/mobs/lagoon_leech.json @@ -0,0 +1,12 @@ +{ + "entity": "Zombie", + "modifiers": [ + { + "type": "equipment", + "helmet": "SKULL#eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZGY3ZWRlOWM4OGYxYzMzYzk1NGJiYzgxYzhkYTg3MWNhYmZjYzIzZDU1ZjhiNDkzYTU4OWY4MjM5ZDZjMzkifX19", + "chestplate": "LEATHER_CHESTPLATE#202513", + "leggings": "CHAINMAIL_LEGGINGS", + "feet": "LEATHER_BOOTS#000000" + } + ] +}
\ No newline at end of file diff --git a/mobs/leech_supreme.json b/mobs/leech_supreme.json new file mode 100644 index 00000000..eedff9bc --- /dev/null +++ b/mobs/leech_supreme.json @@ -0,0 +1,10 @@ +{ + "entity": "Player", + "modifiers": [ + { + "type": "playerdata", + "skin": "neurepo:mobs/leech_supreme.png", + "parts": true + } + ] +}
\ No newline at end of file diff --git a/mobs/leech_supreme.png b/mobs/leech_supreme.png Binary files differnew file mode 100644 index 00000000..d2811662 --- /dev/null +++ b/mobs/leech_supreme.png diff --git a/mobs/leech_swarm.json b/mobs/leech_swarm.json new file mode 100644 index 00000000..892a19ba --- /dev/null +++ b/mobs/leech_swarm.json @@ -0,0 +1,12 @@ +{ + "entity": "Zombie", + "modifiers": [ + { + "type": "equipment", + "feet": "LEATHER_BOOTS#000000", + "chestplate": "LEATHER_CHESTPLATE#202513", + "leggings": "CHAINMAIL_LEGGINGS", + "helmet": "" + } + ] +}
\ No newline at end of file diff --git a/mobs/scribe.json b/mobs/scribe.json new file mode 100644 index 00000000..f314566a --- /dev/null +++ b/mobs/scribe.json @@ -0,0 +1,13 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "equipment", + "helmet": "SCRIBE_MONSTER" + }, + { + "type": "invisible", + "invisible": true + } + ] +}
\ No newline at end of file diff --git a/mobs/shadow.json b/mobs/shadow.json new file mode 100644 index 00000000..9b706153 --- /dev/null +++ b/mobs/shadow.json @@ -0,0 +1,13 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "equipment", + "helmet": "SHADOW_MONSTER" + }, + { + "type": "invisible", + "invisible": true + } + ] +}
\ No newline at end of file diff --git a/mobs/shy.json b/mobs/shy.json new file mode 100644 index 00000000..17651887 --- /dev/null +++ b/mobs/shy.json @@ -0,0 +1,13 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "equipment", + "helmet": "SHY_MONSTER" + }, + { + "type": "invisible", + "invisible": true + } + ] +}
\ No newline at end of file diff --git a/mobs/volt.json b/mobs/volt.json new file mode 100644 index 00000000..a21cb70d --- /dev/null +++ b/mobs/volt.json @@ -0,0 +1,13 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "equipment", + "helmet": "VOLT_MONSTER" + }, + { + "type": "invisible", + "invisible": true + } + ] +}
\ No newline at end of file |