diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2021-04-22 15:59:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-22 09:59:28 -0400 |
commit | 76503706e0cff291cbd9b01e4fb8ee28f6a497cf (patch) | |
tree | 70ff406d2689d991e9b88b5b64518c211d348c76 /items | |
parent | 4a0c84ac67b9ae995f0750b64ba5f86c69e500f4 (diff) | |
download | NotEnoughUpdates-REPO-76503706e0cff291cbd9b01e4fb8ee28f6a497cf.tar.gz NotEnoughUpdates-REPO-76503706e0cff291cbd9b01e4fb8ee28f6a497cf.tar.bz2 NotEnoughUpdates-REPO-76503706e0cff291cbd9b01e4fb8ee28f6a497cf.zip |
Added Items, Mobs and Rainbow Name (#471)
* Added Rainbow Name, other constants things
* Update Stuff and Dragons
Diffstat (limited to 'items')
-rw-r--r-- | items/CHICKEN_AXE.json | 20 | ||||
-rw-r--r-- | items/ENCHANTED_NETHERRACK.json | 5 | ||||
-rw-r--r-- | items/MAGICAL_LAVA_BUCKET.json | 5 | ||||
-rw-r--r-- | items/MUSHROOM_COW_AXE.json | 20 | ||||
-rw-r--r-- | items/OLD_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/PROTECTOR_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/RABBIT_AXE.json | 20 | ||||
-rw-r--r-- | items/SHEEP_AXE.json | 20 | ||||
-rw-r--r-- | items/STRONG_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/SUPERIOR_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/UNSTABLE_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/WEATHER_NODE.json | 5 | ||||
-rw-r--r-- | items/WISE_ENDER_DRAGON_BOSS.json | 39 | ||||
-rw-r--r-- | items/YOUNG_ENDER_DRAGON_BOSS.json | 39 |
14 files changed, 365 insertions, 3 deletions
diff --git a/items/CHICKEN_AXE.json b/items/CHICKEN_AXE.json new file mode 100644 index 00000000..30e10b42 --- /dev/null +++ b/items/CHICKEN_AXE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:wooden_axe", + "displayname": "§aChicken Axe", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"\",1:\"§6Item Ability: Chicken Specialist\",2:\"§7Killing a Chicken increases its\",3:\"§7drops by 2.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON AXE\"],Name:\"§aChicken Axe\"},ExtraAttributes:{originTag:\"SHOP_PURCHASE\",id:\"CHICKEN_AXE\",entity_required:\"CHICKEN\"}}", + "damage": 0, + "lore": [ + "", + "§6Item Ability: Chicken Specialist", + "§7Killing a Chicken increases its", + "§7drops by 2.", + "", + "§7§8This item can be reforged!", + "§a§lUNCOMMON AXE" + ], + "internalname": "CHICKEN_AXE", + "crafttext": "", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ENCHANTED_NETHERRACK.json b/items/ENCHANTED_NETHERRACK.json index 24f394da..5db00c62 100644 --- a/items/ENCHANTED_NETHERRACK.json +++ b/items/ENCHANTED_NETHERRACK.json @@ -21,5 +21,8 @@ }, "clickcommand": "viewrecipe", "modver": "2.0.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Enchanted_Netherrack" + ] }
\ No newline at end of file diff --git a/items/MAGICAL_LAVA_BUCKET.json b/items/MAGICAL_LAVA_BUCKET.json index 195a3ed7..a0541bf0 100644 --- a/items/MAGICAL_LAVA_BUCKET.json +++ b/items/MAGICAL_LAVA_BUCKET.json @@ -25,5 +25,8 @@ "crafttext": "Requires Netherrack V", "clickcommand": "viewrecipe", "modver": "2.0.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Magical_Lava_Bucket" + ] }
\ No newline at end of file diff --git a/items/MUSHROOM_COW_AXE.json b/items/MUSHROOM_COW_AXE.json new file mode 100644 index 00000000..9d99aa62 --- /dev/null +++ b/items/MUSHROOM_COW_AXE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:wooden_axe", + "displayname": "§aMushroom Cow Axe", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"\",1:\"§6Item Ability: Mooshroom Specialist\",2:\"§7Killing a Mooshroom increases\",3:\"§7its drops by 2.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON AXE\"],Name:\"§aMushroom Cow Axe\"},ExtraAttributes:{originTag:\"SHOP_PURCHASE\",id:\"MUSHROOM_COW_AXE\",entity_required:\"MUSHROOM_COW\"}}", + "damage": 0, + "lore": [ + "", + "§6Item Ability: Mooshroom Specialist", + "§7Killing a Mooshroom increases", + "§7its drops by 2.", + "", + "§7§8This item can be reforged!", + "§a§lUNCOMMON AXE" + ], + "internalname": "MUSHROOM_COW_AXE", + "crafttext": "", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "" +}
\ No newline at end of file diff --git a/items/OLD_ENDER_DRAGON_BOSS.json b/items/OLD_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..93cd83a2 --- /dev/null +++ b/items/OLD_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Old Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"53b0f579-fb7b-338f-a224-447fc7006b41\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzUyNGM0ZGE2YWIyN2U5YzkzZmJmNDllYTFiMWZlZmFlZmJlMmQ0YzBjOGIyMjJlMmZmNmIxODE3OWZiNWFkZGYifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c15.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Old Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Old Dragon Helmet\",14:\"§8 ■ §6Old Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Old Dragon Chestplate\",22:\"§8 ■ §6Old Dragon Leggings\"],Name:\"§6Old Ender Dragon (Boss)\"},ExtraAttributes:{id:\"OLD_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c15.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Old Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Old Dragon Helmet", + "§8 ■ §6Old Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Old Dragon Chestplate", + "§8 ■ §6Old Dragon Leggings" + ], + "internalname": "OLD_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/PROTECTOR_ENDER_DRAGON_BOSS.json b/items/PROTECTOR_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..0d427b4c --- /dev/null +++ b/items/PROTECTOR_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Protector Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"3b0f53e5-0eae-321a-ba65-fa653ee97064\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFmMWExY2NiYjAyNGVkMWQyODQ3MWJjNGIzYzI4ZDA5MzI3NzE2MWEzODcxZDI2OTlkNjhlNWQyYzM4Nzk2NCJ9fX0\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c9.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Protector Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Protector Dragon Helmet\",14:\"§8 ■ §6Protector Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Protector Dragon Chestplate\",22:\"§8 ■ §6Protector Dragon Leggings\"],Name:\"§6Protector Ender Dragon (Boss)\"},ExtraAttributes:{id:\"PROTECTOR_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c9.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Protector Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Protector Dragon Helmet", + "§8 ■ §6Protector Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Protector Dragon Chestplate", + "§8 ■ §6Protector Dragon Leggings" + ], + "internalname": "PROTECTOR_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/RABBIT_AXE.json b/items/RABBIT_AXE.json new file mode 100644 index 00000000..4bb0228b --- /dev/null +++ b/items/RABBIT_AXE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:wooden_axe", + "displayname": "§aRabbit Axe", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"\",1:\"§6Item Ability: Rabbit Specialist\",2:\"§7Killing a Rabbit increases its\",3:\"§7drops by 2.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON AXE\"],Name:\"§aRabbit Axe\"},ExtraAttributes:{originTag:\"SHOP_PURCHASE\",id:\"RABBIT_AXE\",entity_required:\"RABBIT\"}}", + "damage": 0, + "lore": [ + "", + "§6Item Ability: Rabbit Specialist", + "§7Killing a Rabbit increases its", + "§7drops by 2.", + "", + "§7§8This item can be reforged!", + "§a§lUNCOMMON AXE" + ], + "internalname": "RABBIT_AXE", + "crafttext": "", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "" +}
\ No newline at end of file diff --git a/items/SHEEP_AXE.json b/items/SHEEP_AXE.json new file mode 100644 index 00000000..783044f3 --- /dev/null +++ b/items/SHEEP_AXE.json @@ -0,0 +1,20 @@ +{ + "itemid": "minecraft:wooden_axe", + "displayname": "§aSheep Axe", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"\",1:\"§6Item Ability: Sheep Specialist\",2:\"§7Killing a Sheep increases its\",3:\"§7drops by 2.\",4:\"\",5:\"§7§8This item can be reforged!\",6:\"§a§lUNCOMMON AXE\"],Name:\"§aSheep Axe\"},ExtraAttributes:{originTag:\"SHOP_PURCHASE\",id:\"SHEEP_AXE\",entity_required:\"SHEEP\"}}", + "damage": 0, + "lore": [ + "", + "§6Item Ability: Sheep Specialist", + "§7Killing a Sheep increases its", + "§7drops by 2.", + "", + "§7§8This item can be reforged!", + "§a§lUNCOMMON AXE" + ], + "internalname": "SHEEP_AXE", + "crafttext": "", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "" +}
\ No newline at end of file diff --git a/items/STRONG_ENDER_DRAGON_BOSS.json b/items/STRONG_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..24cf3940 --- /dev/null +++ b/items/STRONG_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Strong Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"c671b34e-b143-30f3-b66d-5311f48fefc6\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzc4YmM2NTUxYmViMjE0OGQ5MzliNjk5MjUxNDBkMjM3OWZlMGZhYjZlN2QzMWY2NWRmNTBiNTllOWY3N2EwZTQifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c9.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Strong Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Strong Dragon Helmet\",14:\"§8 ■ §6Strong Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Strong Dragon Chestplate\",22:\"§8 ■ §6Strong Dragon Leggings\"],Name:\"§6Strong Ender Dragon (Boss)\"},ExtraAttributes:{id:\"STRONG_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c9.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Strong Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Strong Dragon Helmet", + "§8 ■ §6Strong Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Strong Dragon Chestplate", + "§8 ■ §6Strong Dragon Leggings" + ], + "internalname": "STRONG_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/SUPERIOR_ENDER_DRAGON_BOSS.json b/items/SUPERIOR_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..04c14d1d --- /dev/null +++ b/items/SUPERIOR_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Superior Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"f69ba621-a8b6-31a7-8de1-dc7ade140e1d\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFlMDMyOWY0MjE5MmVlN2MxYTBjNzA0ZjgyZGJiYmU3YzAwZmJmYTNmMDIwYzEwNjdhMjA4NjMwYjk5MWI5ODgifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c12.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Superior Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Superior Dragon Helmet\",14:\"§8 ■ §6Superior Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §5Dragon Horn\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Superior Dragon Chestplate\",22:\"§8 ■ §6Superior Dragon Leggings\"],Name:\"§6Superior Ender Dragon (Boss)\"},ExtraAttributes:{id:\"SUPERIOR_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c12.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Superior Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Superior Dragon Helmet", + "§8 ■ §6Superior Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §5Dragon Horn", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Superior Dragon Chestplate", + "§8 ■ §6Superior Dragon Leggings" + ], + "internalname": "SUPERIOR_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/UNSTABLE_ENDER_DRAGON_BOSS.json b/items/UNSTABLE_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..179f3d4a --- /dev/null +++ b/items/UNSTABLE_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Unstable Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"8584e5d0-47fc-388b-b3c8-f89a62f375bf\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzYwNWZjNGUyYjY4YzQ1MDU5YWZlZjM5OTllOWE5NWFhM2Q4OTQzNTk3YTc4OTRlNTY5Mzk3ZDZjZjVkMTY3MmEifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c9.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Unstable Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Unstable Dragon Helmet\",14:\"§8 ■ §6Unstable Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Unstable Dragon Chestplate\",22:\"§8 ■ §6Unstable Dragon Leggings\"],Name:\"§6Unstable Ender Dragon (Boss)\"},ExtraAttributes:{id:\"UNSTABLE_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c9.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Unstable Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Unstable Dragon Helmet", + "§8 ■ §6Unstable Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Unstable Dragon Chestplate", + "§8 ■ §6Unstable Dragon Leggings" + ], + "internalname": "UNSTABLE_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/WEATHER_NODE.json b/items/WEATHER_NODE.json index fc8e5016..84db2e7d 100644 --- a/items/WEATHER_NODE.json +++ b/items/WEATHER_NODE.json @@ -28,5 +28,8 @@ "crafttext": "Requires: Redstone V", "clickcommand": "viewrecipe", "modver": "2.0.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Weather_Node" + ] }
\ No newline at end of file diff --git a/items/WISE_ENDER_DRAGON_BOSS.json b/items/WISE_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..bc17f902 --- /dev/null +++ b/items/WISE_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Wise Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"b3c79a6a-103a-33cf-8ae2-579722654939\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzU3OTdjNzdjY2VlM2MwNGMzZGVlZDc3MDU5NWVhODNlYTFlODRjOWE0NjI5Yjc1M2FmNWQzNTFjMGNjMTFhNzQifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c9.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Wise Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Wise Dragon Helmet\",14:\"§8 ■ §6Wise Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Wise Dragon Chestplate\",22:\"§8 ■ §6Wise Dragon Leggings\"],Name:\"§6Wise Ender Dragon (Boss)\"},ExtraAttributes:{id:\"WISE_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c9.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Wise Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Wise Dragon Helmet", + "§8 ■ §6Wise Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Wise Dragon Chestplate", + "§8 ■ §6Wise Dragon Leggings" + ], + "internalname": "WISE_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file diff --git a/items/YOUNG_ENDER_DRAGON_BOSS.json b/items/YOUNG_ENDER_DRAGON_BOSS.json new file mode 100644 index 00000000..74691032 --- /dev/null +++ b/items/YOUNG_ENDER_DRAGON_BOSS.json @@ -0,0 +1,39 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§6Young Ender Dragon (Boss)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"68fdf966-47cb-328e-a195-c6f154127cd9\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHBzOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2EwZTgxZWQwN2RmYjAyNDRkNTZmNGQ1ZjJiMzc1NTNlYzAyNmZiNDc5NmYwZmIwYzU3YThlYjI2NDk4M2UxZTAifX19\"}]}},display:{Lore:[0:\"§c❤ Health§8: §c7.000.000\",1:\"§7Coins per Kill: §61.000\",2:\"§7Combat XP: §3300\",3:\"\",4:\"§6§lPossible Drops:\",5:\"§fCommon Loot\",6:\"§8 ■ §fEnder Pearl\",7:\"\",8:\"§aUncommon Loot\",9:\"§8 ■ §5Young Dragon Fragment\",10:\"§8 ■ §aEnchanted Ender Pearl\",11:\"\",12:\"§9Rare Loot\",13:\"§8 ■ §6Young Dragon Helmet\",14:\"§8 ■ §6Young Dragon Boots\",15:\"\",16:\"§6Legendary Loot\",17:\"§8 ■ §6Aspect of the Dragons\",18:\"§8 ■ §9Dragon Claw\",19:\"§8 ■ §7[Lvl 1] §5Ender Dragon\",20:\"§8 ■ §7[Lvl 1] §6Ender Dragon\",21:\"§8 ■ §6Young Dragon Chestplate\",22:\"§8 ■ §6Young Dragon Leggings\"],Name:\"§6Young Ender Dragon (Boss)\"},ExtraAttributes:{id:\"YOUNG_ENDER_DRAGON_BOSS\"}}", + "damage": 3, + "lore": [ + "§c❤ Health§8: §c7.000.000", + "§7Coins per Kill: §61.000", + "§7Combat XP: §3300", + "", + "§6§lPossible Drops:", + "§fCommon Loot", + "§8 ■ §fEnder Pearl", + "", + "§aUncommon Loot", + "§8 ■ §5Young Dragon Fragment", + "§8 ■ §aEnchanted Ender Pearl", + "", + "§9Rare Loot", + "§8 ■ §6Young Dragon Helmet", + "§8 ■ §6Young Dragon Boots", + "", + "§6Legendary Loot", + "§8 ■ §6Aspect of the Dragons", + "§8 ■ §9Dragon Claw", + "§8 ■ §7[Lvl 1] §5Ender Dragon", + "§8 ■ §7[Lvl 1] §6Ender Dragon", + "§8 ■ §6Young Dragon Chestplate", + "§8 ■ §6Young Dragon Leggings" + ], + "internalname": "YOUNG_ENDER_DRAGON_BOSS", + "clickcommand": "", + "modver": "2.0.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Ender_Dragon" + ], + "crafttext": "" +}
\ No newline at end of file |