diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2022-11-29 22:35:51 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-30 08:35:51 +1100 |
| commit | eb78fb7fe219a0ac5f7a937008be6b65c515e6cf (patch) | |
| tree | cf78541235e9cd5fb22be5465777dfc799da58e2 | |
| parent | dc710886048e9e92f32f020764e9052474793ff3 (diff) | |
| download | NotEnoughUpdates-REPO-eb78fb7fe219a0ac5f7a937008be6b65c515e6cf.tar.gz NotEnoughUpdates-REPO-eb78fb7fe219a0ac5f7a937008be6b65c515e6cf.tar.bz2 NotEnoughUpdates-REPO-eb78fb7fe219a0ac5f7a937008be6b65c515e6cf.zip | |
Fixed 1 NPC, 1 Mob, added 1 npc and fixed 1 item (#868)
41 files changed, 290 insertions, 96 deletions
diff --git a/constants/misc.json b/constants/misc.json index ac591d58..5bd10b70 100644 --- a/constants/misc.json +++ b/constants/misc.json @@ -876,7 +876,15 @@ ], "BINGO_TALISMAN": [ "BINGO_RING", - "BINGO_ARTIFACT" + "BINGO_ARTIFACT", + "BINGO_RELIC" + ], + "BINGO_RING": [ + "BINGO_ARTIFACT", + "BINGO_RELIC" + ], + "BINGO_ARTIFACT": [ + "BINGO_RELIC" ], "ODGERS_BRONZE_TOOTH": [ "ODGERS_SILVER_TOOTH", diff --git a/constants/parents.json b/constants/parents.json index ee1b567f..7b8439e3 100644 --- a/constants/parents.json +++ b/constants/parents.json @@ -2820,7 +2820,8 @@ "KUUDRA_HOT_TIER_KEY", "KUUDRA_TIER_KEY" ], - "BINGO_ARTIFACT": [ + "BINGO_RELIC": [ + "BINGO_ARTIFACT", "BINGO_RING", "BINGO_TALISMAN" ], @@ -3114,6 +3115,15 @@ "DRACONIC_RING", "DRACONIC_TALISMAN" ], + "ABICASE_BLUE_RED": [ + "ABICASE_BLUE_BLUE", + "ABICASE_BLUE_GREEN", + "ABICASE_BLUE_YELLOW", + "ABICASE_BLUE_AQUA" + ], + "ABICASE_SUMSUNG_1": [ + "ABICASE_SUMSUNG_2" + ], "VACCINE_ARTIFACT": [ "VACCINE_RING", "VACCINE_TALISMAN" diff --git a/items/ADVENTURER_NPC.json b/items/ADVENTURER_NPC.json index eb2e9179..4b586cdf 100644 --- a/items/ADVENTURER_NPC.json +++ b/items/ADVENTURER_NPC.json @@ -12,7 +12,7 @@ "infoType": "WIKI_URL", "info": [ "https://hypixel-skyblock.fandom.com/wiki/Adventurer", - "https://wiki.hypixel.net/Scoop" + "https://wiki.hypixel.net/Adventurer" ], "crafttext": "", "x": -42, diff --git a/items/ANCESTRAL_SPADE.json b/items/ANCESTRAL_SPADE.json index 02774ddd..b186617e 100644 --- a/items/ANCESTRAL_SPADE.json +++ b/items/ANCESTRAL_SPADE.json @@ -1,15 +1,21 @@ { "itemid": "minecraft:wooden_shovel", "displayname": "§9Ancestral Spade", - "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Hold to uncover and dig out\",1:\"§7§eGriffin Burrows§7, which hold\",2:\"§7both §6treasures §7and\",3:\"§7§cdangers§7.\",4:\"\",5:\"§7Only works while Diana's\",6:\"§7§2Mythological Ritual §7is\",7:\"§7active.\",8:\"\",9:\"§9§lRARE\"],Name:\"§9Ancestral Spade\"},ExtraAttributes:{id:\"ANCESTRAL_SPADE\"}}", + "nbttag": "{ench:[],Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Hold in your hand to reveal and\",1:\"§7dig out §eGriffin Burrows §7in\",2:\"§7the hub, which hold both\",3:\"§7§6treasures §7and §cdangers§7.\",4:\"\",5:\"§6Ability: Echo §e§lRIGHT CLICK\",6:\"§7Show the way to the next or\",7:\"§7nearby Griffin burrow.\",8:\"§8Mana Cost: §398\",9:\"§8Cooldown: §a3s\",10:\"\",11:\"§7Only works while Diana\u0027s\",12:\"§7§2Mythological Ritual §7is\",13:\"§7active.\",14:\"\",15:\"§9§lRARE\"],Name:\"§9Ancestral Spade\"},ExtraAttributes:{id:\"ANCESTRAL_SPADE\"}}", "damage": 0, "lore": [ - "§7Hold to uncover and dig out", - "§7§eGriffin Burrows§7, which hold", - "§7both §6treasures §7and", - "§7§cdangers§7.", + "§7Hold in your hand to reveal and", + "§7dig out §eGriffin Burrows §7in", + "§7the hub, which hold both", + "§7§6treasures §7and §cdangers§7.", "", - "§7Only works while Diana's", + "§6Ability: Echo §e§lRIGHT CLICK", + "§7Show the way to the next or", + "§7nearby Griffin burrow.", + "§8Mana Cost: §398", + "§8Cooldown: §a3s", + "", + "§7Only works while Diana\u0027s", "§7§2Mythological Ritual §7is", "§7active.", "", diff --git a/items/ARACHNE_BELT.json b/items/ARACHNE_BELT.json index 32e1064f..1da4a7ed 100644 --- a/items/ARACHNE_BELT.json +++ b/items/ARACHNE_BELT.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Belt", + "https://wiki.hypixel.net/Arachne%27s_Belt" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_BOOTS.json b/items/ARACHNE_BOOTS.json index d3dfd8f1..c6291970 100644 --- a/items/ARACHNE_BOOTS.json +++ b/items/ARACHNE_BOOTS.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Boots", + "https://wiki.hypixel.net/Arachne%27s_Boots" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_CHESTPLATE.json b/items/ARACHNE_CHESTPLATE.json index d4310416..30309e81 100644 --- a/items/ARACHNE_CHESTPLATE.json +++ b/items/ARACHNE_CHESTPLATE.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Chestplate", + "https://wiki.hypixel.net/Arachne%27s_Chestplate" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_CLOAK.json b/items/ARACHNE_CLOAK.json index 63a664ee..7ebf0eea 100644 --- a/items/ARACHNE_CLOAK.json +++ b/items/ARACHNE_CLOAK.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Cloak", + "https://wiki.hypixel.net/Arachne%27s_Cloak" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_FANG.json b/items/ARACHNE_FANG.json index 65a31a55..023ecfb2 100644 --- a/items/ARACHNE_FANG.json +++ b/items/ARACHNE_FANG.json @@ -15,5 +15,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Fang", + "https://wiki.hypixel.net/Arachne%27s_Fang" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_GLOVES.json b/items/ARACHNE_GLOVES.json index 8ca341cb..195f5835 100644 --- a/items/ARACHNE_GLOVES.json +++ b/items/ARACHNE_GLOVES.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Gloves", + "https://wiki.hypixel.net/Arachne%27s_Gloves" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_HELMET.json b/items/ARACHNE_HELMET.json index 4003820b..adb140c3 100644 --- a/items/ARACHNE_HELMET.json +++ b/items/ARACHNE_HELMET.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Helmet", + "https://wiki.hypixel.net/Arachne%27s_Helmet" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_LEGGINGS.json b/items/ARACHNE_LEGGINGS.json index 146784ad..83308d6f 100644 --- a/items/ARACHNE_LEGGINGS.json +++ b/items/ARACHNE_LEGGINGS.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Leggings", + "https://wiki.hypixel.net/Arachne%27s_Leggings" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_NECKLACE.json b/items/ARACHNE_NECKLACE.json index 4f014425..6b31da21 100644 --- a/items/ARACHNE_NECKLACE.json +++ b/items/ARACHNE_NECKLACE.json @@ -19,5 +19,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arachne%27s_Necklace", + "https://wiki.hypixel.net/Arachne%27s_Necklace" + ] }
\ No newline at end of file diff --git a/items/ARACHNE_SANCTUARY_TRAVEL_SCROLL.json b/items/ARACHNE_SANCTUARY_TRAVEL_SCROLL.json index 3b7710dc..43016713 100644 --- a/items/ARACHNE_SANCTUARY_TRAVEL_SCROLL.json +++ b/items/ARACHNE_SANCTUARY_TRAVEL_SCROLL.json @@ -19,5 +19,8 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Travel_Scroll_To_Arachne%27s_Sanctuary" + ] }
\ No newline at end of file diff --git a/items/ARACK.json b/items/ARACK.json index 1756e574..e7052e4b 100644 --- a/items/ARACK.json +++ b/items/ARACK.json @@ -17,5 +17,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Arack", + "https://wiki.hypixel.net/Arack" + ] }
\ No newline at end of file diff --git a/items/ARCHAEOLOGIST_COMPASS.json b/items/ARCHAEOLOGIST_COMPASS.json index c5dcb9fd..896e9739 100644 --- a/items/ARCHAEOLOGIST_COMPASS.json +++ b/items/ARCHAEOLOGIST_COMPASS.json @@ -16,5 +16,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Archaeologist%27s_Compass", + "https://wiki.hypixel.net/Archaeologist%27s_Compass" + ] }
\ No newline at end of file diff --git a/items/BEA_NPC.json b/items/BEA_NPC.json new file mode 100644 index 00000000..dcc80beb --- /dev/null +++ b/items/BEA_NPC.json @@ -0,0 +1,60 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Bea (NPC)", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"4d28ca10-b847-2a56-9a6c-ebed120bfe46\",Properties:{textures:[0:{Value:\"eyJ0aW1lc3RhbXAiOjE1ODIzMDAzNTg3ODYsInByb2ZpbGVJZCI6IjQxZDNhYmMyZDc0OTQwMGM5MDkwZDU0MzRkMDM4MzFiIiwicHJvZmlsZU5hbWUiOiJNZWdha2xvb24iLCJzaWduYXR1cmVSZXF1aXJlZCI6dHJ1ZSwidGV4dHVyZXMiOnsiU0tJTiI6eyJ1cmwiOiJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlL2UzYzM0YjllNTFmMzUyZDZjNjljODIxYTFmYzI5ZjUwMDUwOTgwM2ExZWVjMDI0YzM4NzAxNWI1YzQzYzc3M2EiLCJtZXRhZGF0YSI6eyJtb2RlbCI6InNsaW0ifX19fQ\"}]}},display:{Lore:[0:\"\"],Name:\"§9Bea (NPC)\"},ExtraAttributes:{id:\"BEA_NPC\"}}", + "damage": 3, + "lore": [ + "" + ], + "internalname": "BEA_NPC", + "clickcommand": "viewrecipe", + "modver": "2.1.0-REL", + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Bea", + "https://wiki.hypixel.net/Bea" + ], + "crafttext": "", + "x": 30, + "y": 72, + "z": -91, + "island": "hub", + "recipes": [ + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_COIN:4999", + "COAL_BLOCK:2", + "GOLD_BLOCK:2" + ], + "result": "BEE;0" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_COIN:50000", + "COAL_BLOCK:128", + "GOLD_BLOCK:128" + ], + "result": "BEE;2" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_COIN:200000", + "ENCHANTED_COAL_BLOCK:1", + "ENCHANTED_GOLD_BLOCK:1" + ], + "result": "BEE;3" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_COIN:650000", + "ENCHANTED_COAL_BLOCK:8", + "ENCHANTED_GOLD_BLOCK:8" + ], + "result": "BEE;4" + } + ] +}
\ No newline at end of file diff --git a/items/BINGO_RELIC.json b/items/BINGO_RELIC.json new file mode 100644 index 00000000..d2f9da13 --- /dev/null +++ b/items/BINGO_RELIC.json @@ -0,0 +1,21 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Bingo Relic", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"8cfc5b9a-e4c7-345d-84e1-9d47b836a55f\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYzUxNWFjZjRhNmFjNjk4NzM2ZTU0ZGVmMGJjNzgxNDNjMTQ0NDk5NzhlNzUwYWZiYjhkN2FkZTBhZGYwZWYwMCJ9fX0\u003d\"}]}},display:{Lore:[0:\"§7B.I.N.G.O.\",1:\"\",2:\"§7§cRequires §5Ⓑ Bingo Rank IV§c!\",3:\"§5§lEPIC ACCESSORY\",4:\"\",5:\"§7Cost\",6:\"§6200 Bingo Points\",7:\"§9Bingo Artifact\"],Name:\"§5Bingo Relic\"},ExtraAttributes:{id:\"BINGO_RELIC\"}}", + "damage": 3, + "lore": [ + "§7B.I.N.G.O.", + "", + "§7§cRequires §5Ⓑ Bingo Rank IV§c!", + "§5§lEPIC ACCESSORY", + "", + "§7Cost", + "§6200 Bingo Points", + "§9Bingo Artifact" + ], + "internalname": "BINGO_RELIC", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.0-REL", + "infoType": "" +}
\ No newline at end of file diff --git a/items/BURNING.json b/items/BURNING.json index 3c936831..a056a04c 100644 --- a/items/BURNING.json +++ b/items/BURNING.json @@ -4,14 +4,17 @@ "displayname": "§fBurning Potion", "clickcommand": "viewpotion", "damage": 3, - "nbttag": "{CustomPotionEffects:[0:{Ambient:0b,Duration:20,Id:12b,Amplifier:0b}],HideFlags:254,display:{Lore:[0:\"\",1:\"§6Burning\",2:\"§7Damaging enemies sets them on\",3:\"§7fire.\",4:\"\",5:\"§f§lCOMMON\"],Name:\"§fBurning Potion\"},ExtraAttributes:{id:\"BURNING\"}}", - "modver": "1.0.0", + "nbttag": "{CustomPotionEffects:[0:{Ambient:0b,Duration:20,Id:12b,Amplifier:0b}],HideFlags:254,display:{Lore:[0:\"\",1:\"§6Burning\",2:\"§7Increases the duration of fire\",3:\"§7damage that you inflict on\",4:\"§7enemies by §a5%§7.\",5:\"\",6:\"§f§lCOMMON\"],Name:\"§fBurning Potion\"},ExtraAttributes:{id:\"BURNING\"}}", + "modver": "2.1.0-REL", "lore": [ "", "§6Burning", - "§7Damaging enemies sets them on", - "§7fire.", + "§7Increases the duration of fire", + "§7damage that you inflict on", + "§7enemies by §a5%§7.", "", "§f§lCOMMON" - ] -} + ], + "crafttext": "", + "infoType": "" +}
\ No newline at end of file diff --git a/items/DEAN_LETTER_OF_RECOMMENDATION.json b/items/DEAN_LETTER_OF_RECOMMENDATION.json index 1c0cffd1..5246d7bb 100644 --- a/items/DEAN_LETTER_OF_RECOMMENDATION.json +++ b/items/DEAN_LETTER_OF_RECOMMENDATION.json @@ -15,5 +15,8 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://wiki.hypixel.net/Letter_Of_Recommendation" + ] }
\ No newline at end of file diff --git a/items/HAUNT_ABILITY.json b/items/HAUNT_ABILITY.json index d1db9ae1..964c0eff 100644 --- a/items/HAUNT_ABILITY.json +++ b/items/HAUNT_ABILITY.json @@ -14,5 +14,8 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Haunt" + ] }
\ No newline at end of file diff --git a/items/PELT_BELT.json b/items/PELT_BELT.json index ecfa8238..9eeca072 100644 --- a/items/PELT_BELT.json +++ b/items/PELT_BELT.json @@ -19,5 +19,8 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Pelt_Belt" + ] }
\ No newline at end of file diff --git a/items/POISON_SAMPLE.json b/items/POISON_SAMPLE.json index 40345a22..4a1ec53c 100644 --- a/items/POISON_SAMPLE.json +++ b/items/POISON_SAMPLE.json @@ -16,5 +16,9 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Poison_Sample", + "https://wiki.hypixel.net/Poison_Sample" + ] }
\ No newline at end of file diff --git a/items/TALBOTS_THEODOLITE.json b/items/TALBOTS_THEODOLITE.json index 3d541fea..45a20ea9 100644 --- a/items/TALBOTS_THEODOLITE.json +++ b/items/TALBOTS_THEODOLITE.json @@ -17,5 +17,8 @@ "crafttext": "", "clickcommand": "", "modver": "2.1.0-REL", - "infoType": "" + "infoType": "WIKI_URL", + "info": [ + "https://hypixel-skyblock.fandom.com/wiki/Talbot%27s_Theodolite" + ] }
\ No newline at end of file diff --git a/items/THUNDERBOLT;1.json b/items/THUNDERBOLT;1.json index 9e2706f7..e5348af9 100644 --- a/items/THUNDERBOLT;1.json +++ b/items/THUNDERBOLT;1.json @@ -1,14 +1,14 @@ { "itemid": "minecraft:enchanted_book", "displayname": "§fEnchanted Book", - "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt I\",1:\"§7Strikes Monsters within 2 blocks\",2:\"§7with lightning every 3\",3:\"§7consecutive hits, dealing §a4%\",4:\"§a§7of your damage.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;1\",enchantments:{thunderbolt:1}}}", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt I\",1:\"§7Every §c3 §7hits on a monster,\",2:\"§7strike §elightning§7, dealing\",3:\"§7§a4% §7of the hit\u0027s damage to up\",4:\"§7to 10 monsters within 2 blocks.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;1\",enchantments:{thunderbolt:1}}}", "damage": 0, "lore": [ "§9Thunderbolt I", - "§7Strikes Monsters within 2 blocks", - "§7with lightning every 3", - "§7consecutive hits, dealing §a4%", - "§a§7of your damage.", + "§7Every §c3 §7hits on a monster,", + "§7strike §elightning§7, dealing", + "§7§a4% §7of the hit\u0027s damage to up", + "§7to 10 monsters within 2 blocks.", "", "§7Use this on an item in an Anvil", "§7to apply it!", diff --git a/items/THUNDERBOLT;2.json b/items/THUNDERBOLT;2.json index 4441fb3a..c56a2ba3 100644 --- a/items/THUNDERBOLT;2.json +++ b/items/THUNDERBOLT;2.json @@ -1,14 +1,14 @@ { "itemid": "minecraft:enchanted_book", "displayname": "§fEnchanted Book", - "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt II\",1:\"§7Strikes Monsters within 2 blocks\",2:\"§7with lightning every 3\",3:\"§7consecutive hits, dealing §a8%\",4:\"§a§7of your damage.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;2\",enchantments:{thunderbolt:2}}}", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt II\",1:\"§7Every §c3 §7hits on a monster,\",2:\"§7strike §elightning§7, dealing\",3:\"§7§a8% §7of the hit\u0027s damage to up\",4:\"§7to 10 monsters within 2 blocks.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;2\",enchantments:{thunderbolt:2}}}", "damage": 0, "lore": [ "§9Thunderbolt II", - "§7Strikes Monsters within 2 blocks", - "§7with lightning every 3", - "§7consecutive hits, dealing §a8%", - "§a§7of your damage.", + "§7Every §c3 §7hits on a monster,", + "§7strike §elightning§7, dealing", + "§7§a8% §7of the hit\u0027s damage to up", + "§7to 10 monsters within 2 blocks.", "", "§7Use this on an item in an Anvil", "§7to apply it!", diff --git a/items/THUNDERBOLT;3.json b/items/THUNDERBOLT;3.json index c2c7781f..5dbd70a0 100644 --- a/items/THUNDERBOLT;3.json +++ b/items/THUNDERBOLT;3.json @@ -1,14 +1,14 @@ { "itemid": "minecraft:enchanted_book", "displayname": "§fEnchanted Book", - "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt III\",1:\"§7Strikes Monsters within 2 blocks\",2:\"§7with lightning every 3\",3:\"§7consecutive hits, dealing §a12%\",4:\"§a§7of your damage.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;3\",enchantments:{thunderbolt:3}}}", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt III\",1:\"§7Every §c3 §7hits on a monster,\",2:\"§7strike §elightning§7, dealing\",3:\"§7§a12% §7of the hit\u0027s damage to up\",4:\"§7to 10 monsters within 2 blocks.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;3\",enchantments:{thunderbolt:3}}}", "damage": 0, "lore": [ "§9Thunderbolt III", - "§7Strikes Monsters within 2 blocks", - "§7with lightning every 3", - "§7consecutive hits, dealing §a12%", - "§a§7of your damage.", + "§7Every §c3 §7hits on a monster,", + "§7strike §elightning§7, dealing", + "§7§a12% §7of the hit\u0027s damage to up", + "§7to 10 monsters within 2 blocks.", "", "§7Use this on an item in an Anvil", "§7to apply it!", diff --git a/items/THUNDERBOLT;4.json b/items/THUNDERBOLT;4.json index 27bb7b25..85c5f505 100644 --- a/items/THUNDERBOLT;4.json +++ b/items/THUNDERBOLT;4.json @@ -1,14 +1,14 @@ { "itemid": "minecraft:enchanted_book", "displayname": "§fEnchanted Book", - "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt IV\",1:\"§7Strikes Monsters within 2 blocks\",2:\"§7with lightning every 3\",3:\"§7consecutive hits, dealing §a16%\",4:\"§a§7of your damage.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;4\",enchantments:{thunderbolt:4}}}", + "nbttag": "{ench:[],HideFlags:254,display:{Lore:[0:\"§9Thunderbolt IV\",1:\"§7Every §c3 §7hits on a monster,\",2:\"§7strike §elightning§7, dealing\",3:\"§7§a16% §7of the hit\u0027s damage to up\",4:\"§7to 10 monsters within 2 blocks.\",5:\"\",6:\"§7Use this on an item in an Anvil\",7:\"§7to apply it!\",8:\"\",9:\"§6Source:\",10:\"§aI-V: §7Enchantment Table\",11:\"\",12:\"§6Applied To:\",13:\"§7- §fSword\",14:\"§7- §fFishing Weapon\",15:\"§7- §fGauntlet\",16:\"\",17:\"§6Conflicts:\",18:\"§7- §cThunderlord\",19:\"\",20:\"§f§lCOMMON\"],Name:\"§fEnchanted Book\"},ExtraAttributes:{id:\"THUNDERBOLT;4\",enchantments:{thunderbolt:4}}}", "damage": 0, "lore": [ "§9Thunderbolt IV", - "§7Strikes Monsters within 2 blocks", - "§7with lightning every 3", - "§7consecutive hits, dealing §a16%", - "§a§7of your damage.", + "§7Every §c3 §7hits on a monster,", + "§7strike §elightning§7, dealing", + "§7§a16% §7of the hit\u0027s damage to up", + "§7to 10 monsters within 2 block |
