diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-11-15 01:32:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-15 00:32:18 +0000 |
| commit | cf2ad629853bf5b652c016afb71d37bd0a877c1d (patch) | |
| tree | f19da87b45997c900101726eee7c07c3f88c1af3 | |
| parent | e46bd6bb474c982515d8e9df3c6ae6e21fda1b97 (diff) | |
| download | NotEnoughUpdates-REPO-cf2ad629853bf5b652c016afb71d37bd0a877c1d.tar.gz NotEnoughUpdates-REPO-cf2ad629853bf5b652c016afb71d37bd0a877c1d.tar.bz2 NotEnoughUpdates-REPO-cf2ad629853bf5b652c016afb71d37bd0a877c1d.zip | |
Added some of the alpha items (#1035)
* Added some of the alpha items
* Added new sakc and museum items
Co-Authored-By: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
* Added new items
* Fixed Pesthunter Badge in parents
* Added missing garden update items
---------
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
53 files changed, 1202 insertions, 37 deletions
diff --git a/constants/misc.json b/constants/misc.json index ad285a76..e92eac02 100644 --- a/constants/misc.json +++ b/constants/misc.json @@ -1367,6 +1367,20 @@ ], "AGARIMOO_RING": [ "AGARIMOO_ARTIFACT" + ], + "ANITA_TALISMAN": [ + "ANITA_RING", + "ANITA_ARTIFACT" + ], + "ANITA_RING": [ + "ANITA_ARTIFACT" + ], + "PESTHUNTER_BADGE": [ + "PESTHUNTER_RING", + "PESTHUNTER_ARTIFACT" + ], + "PESTHUNTER_RING": [ + "PESTHUNTER_ARTIFACT" ] }, "special_bois": [ diff --git a/constants/museum.json b/constants/museum.json index 2a32dc36..9fdb2f6c 100644 --- a/constants/museum.json +++ b/constants/museum.json @@ -340,6 +340,11 @@ "PUMPKIN_DICER", "PUMPKIN_DICER_2", "PUMPKIN_DICER_3", + "SKYMART_VACUUM", + "SKYMART_TURBO_VACUUM", + "SKYMART_HYPER_VACUUM", + "INFINI_VACUUM", + "INFINI_VACUUM_HOOVERIUS", "SOS_FLARE", "TACTICAL_INSERTION", "ANNIHILATION_CLOAK", @@ -829,13 +834,17 @@ "WISE_WITHER": "TANK_WITHER", "SPEED_WITHER": "WISE_WITHER", "POWER_WITHER": "SPEED_WITHER", - "PERFECT_TIER_13": "PERFECT_TIER_12" + "PERFECT_TIER_13": "PERFECT_TIER_12", + "SKYMART_TURBO_VACUUM": "SKYMART_VACUUM", + "SKYMART_HYPER_VACUUM": "SKYMART_TURBO_VACUUM", + "INFINI_VACUUM": "SKYMART_HYPER_VACUUM", + "INFINI_VACUUM_HOOVERIUS":"INFINI_VACUUM" }, "max_values": { - "total": 341, + "total": 346, "weapons": 128, "armor": 111, - "rarities": 102, + "rarities": 107, "special": 48 } }
\ No newline at end of file diff --git a/constants/parents.json b/constants/parents.json index 6431cf54..9a8a9241 100644 --- a/constants/parents.json +++ b/constants/parents.json @@ -3203,7 +3203,8 @@ "SUNDER;2", "SUNDER;3", "SUNDER;4", - "SUNDER;5" + "SUNDER;5", + "SUNDER;6" ], "MELON_DICER_3": [ "MELON_DICER_2", @@ -3356,5 +3357,30 @@ ], "BLACK_CAT;5": [ "BLACK_CAT;4" + ], + "ANITA_ARTIFACT": [ + "ANITA_RING", + "ANITA_TALISMAN" + ], + "SKYMART_VACUUM": [ + "SKYMART_TURBO_VACUUM", + "SKYMART_HYPER_VACUUM", + "INFINI_VACUUM", + "INFINI_VACUUM_HOOVERIUS" + ], + "PESTHUNTER_ARTIFACT": [ + "PESTHUNTER_RING", + "PESTHUNTER_BADGE" + ], + "VINYL_PRETTY_FLY": [ + "VINYL_CRICKET_CHOIR", + "VINYL_EARTHWORM_ENSEMBLE", + "VINYL_SLOW_AND_GROOVY", + "VINYL_BEETLE", + "VINYL_CICADA_SYMPHONY", + "VINYL_DYNAMITES", + "VINYL_RODENT_REVOLUTION", + "VINYL_WINGS_OF_HARMONY", + "VINYL_BUZZIN_BEATS" ] } diff --git a/constants/petnums.json b/constants/petnums.json index 09d94b34..dd8337c6 100644 --- a/constants/petnums.json +++ b/constants/petnums.json @@ -4168,6 +4168,54 @@ } } }, + "SLUG": { + "EPIC": { + "1": { + "otherNums": [ + 1, + 0.4 + ], + "statNums": { + "DEFENSE": 0.2, + "INTELLIGENCE": 0.25 + } + }, + "100": { + "otherNums": [ + 40, + 40 + ], + "statNums": { + "DEFENSE": 20.0, + "INTELLIGENCE": 25.0 + } + } + }, + "LEGENDARY": { + "1": { + "otherNums": [ + 1, + 0.4, + 1 + ], + "statNums": { + "DEFENSE": 0.2, + "INTELLIGENCE": 0.25 + } + }, + "100": { + "otherNums": [ + 40, + 40, + 100 + ], + "statNums": { + "DEFENSE": 20.0, + "INTELLIGENCE": 25.0 + } + } + } + }, "SPIDER": { "COMMON": { "1": { diff --git a/constants/pets.json b/constants/pets.json index a25c20f2..abbf4790 100644 --- a/constants/pets.json +++ b/constants/pets.json @@ -297,6 +297,7 @@ "KUUDRA": "COMBAT", "REINDEER": "FISHING", "BINGO": "ALL", - "EERIE": "COMBAT" + "EERIE": "COMBAT", + "SLUG": "FARMING" } }
\ No newline at end of file diff --git a/constants/sacks.json b/constants/sacks.json index 43aace80..98ad7aa9 100644 --- a/constants/sacks.json +++ b/constants/sacks.json @@ -496,6 +496,18 @@ "GOLDEN_FISH_SILVER" ] }, + "Garden": { + "item": "GARDEN_SACK", + "contents": [ + "CROPIE", + "SQUASH", + "COMPOST", + "HONEY_JAR", + "DUNG", + "CHEESE_FUEL", + "PLANT_MATTER" + ] + }, "Flower": { "item": "FLOWER_SACK", "contents": [ diff --git a/items/ANITA_ARTIFACT.json b/items/ANITA_ARTIFACT.json new file mode 100644 index 00000000..49a1412e --- /dev/null +++ b/items/ANITA_ARTIFACT.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§9Anita\u0027s Artifact", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"4319fa0f-c60f-3dc2-bc9c-d76c9be546c3\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5NzU4NDE3NjIwOCwKICAicHJvZmlsZUlkIiA6ICI2NTk0YzdiMTExOWE0Njc3ODc0Y2ZmOWNlMzM3NzYxOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJNYXJzaG1lbGxvMjIiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGZlYWJkYWRkNWY1OTM3NzFmYTIzYzk0ZmM2ODE2MDkxOTE3MzcxZmQ1YTFjNzQ3MjNlNzE2MjEwZDZlNmVmYiIKICAgIH0KICB9Cn0\"}]}},display:{Lore:[0:\"§7Grants a random §6+25☘ Farming\",1:\"§6Fortune §7stat during §eJacob\u0027s\",2:\"§eFarming Contest§7.\",3:\"\",4:\"§9§lRARE ACCESSORY\"],Name:\"§9Anita\u0027s Artifact\"},ExtraAttributes:{id:\"ANITA_ARTIFACT\"}}", + "damage": 3, + "lore": [ + "§7Grants a random §6+25☘ Farming", + "§6Fortune §7stat during §eJacob\u0027s", + "§eFarming Contest§7.", + "", + "§9§lRARE ACCESSORY" + ], + "internalname": "ANITA_ARTIFACT", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ANITA_NPC.json b/items/ANITA_NPC.json index 7efc5645..a2709864 100644 --- a/items/ANITA_NPC.json +++ b/items/ANITA_NPC.json @@ -129,6 +129,32 @@ "JACOBS_TICKET:32" ], "result": "CACTUS_KNIFE" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_BRONZE_MEDAL:2", + "JACOBS_TICKET:32" + ], + "result": "ANITA_TALISMAN" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_SILVER_MEDAL:2", + "JACOBS_TICKET:64", + "ANITA_TALISMAN" + ], + "result": "ANITA_RING" + }, + { + "type": "npc_shop", + "cost": [ + "SKYBLOCK_GOLD_MEDAL:2", + "JACOBS_TICKET:100", + "ANITA_RING" + ], + "result": "ANITA_ARTIFACT" } ], "crafttext": "" diff --git a/items/ANITA_RING.json b/items/ANITA_RING.json new file mode 100644 index 00000000..15e79b81 --- /dev/null +++ b/items/ANITA_RING.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§aAnita\u0027s Ring", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"08e5d1bb-99c5-3562-b7d4-6c006840bacc\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5NzU4NDEzODQ5NywKICAicHJvZmlsZUlkIiA6ICIzYjA2ZTc3YzAzYTg0MGExOGIzOGY0Y2Q1ZWE0YzYxMyIsCiAgInByb2ZpbGVOYW1lIiA6ICJIT1JVU19JTyIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS81OWExMDM1YmM2ZjAwZmRkYzhlMDI5MWMzODMxOTQwOGJhYmM4NGFlMTA2NDhjYjUyNThlZDhiNTVkNjBlMGMzIgogICAgfQogIH0KfQ\"}]}},display:{Lore:[0:\"§7Grants a random §6+15☘ Farming\",1:\"§6Fortune §7stat during §eJacob\u0027s\",2:\"§eFarming Contest§7.\",3:\"\",4:\"§a§lUNCOMMON ACCESSORY\"],Name:\"§aAnita\u0027s Ring\"},ExtraAttributes:{id:\"ANITA_RING\"}}", + "damage": 3, + "lore": [ + "§7Grants a random §6+15☘ Farming", + "§6Fortune §7stat during §eJacob\u0027s", + "§eFarming Contest§7.", + "", + "§a§lUNCOMMON ACCESSORY" + ], + "internalname": "ANITA_RING", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ANITA_TALISMAN.json b/items/ANITA_TALISMAN.json new file mode 100644 index 00000000..e958619d --- /dev/null +++ b/items/ANITA_TALISMAN.json @@ -0,0 +1,18 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§fAnita\u0027s Talisman", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"18719ec2-31ff-33cb-b049-db885285e401\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5NzU4NDE1NjMwMCwKICAicHJvZmlsZUlkIiA6ICJmMTYwZTMxMzJjYWM0YjRiOWM5OTk2NDQ1OGIxOWM0ZSIsCiAgInByb2ZpbGVOYW1lIiA6ICJGYWNrX1JvbiIsCiAgInNpZ25hdHVyZVJlcXVpcmVkIiA6IHRydWUsCiAgInRleHR1cmVzIiA6IHsKICAgICJTS0lOIiA6IHsKICAgICAgInVybCIgOiAiaHR0cDovL3RleHR1cmVzLm1pbmVjcmFmdC5uZXQvdGV4dHVyZS9iYjhlYzU3YjM3ZmRmMDkzZmU2NmVmZTJhYzA3MGE4ZjUxODE5NDk5NzBhNDQ1OGQ1NmVjOTcwMWVkZWQ4Y2ZmIgogICAgfQogIH0KfQ\"}]}},display:{Lore:[0:\"§7Grants a random §6+5☘ Farming\",1:\"§6Fortune §7stat during §eJacob\u0027s\",2:\"§eFarming Contest§7.\",3:\"\",4:\"§f§lCOMMON ACCESSORY\"],Name:\"§fAnita\u0027s Talisman\"},ExtraAttributes:{id:\"ANITA_TALISMAN\"}}", + "damage": 3, + "lore": [ + "§7Grants a random §6+5☘ Farming", + "§6Fortune §7stat during §eJacob\u0027s", + "§eFarming Contest§7.", + "", + "§f§lCOMMON ACCESSORY" + ], + "internalname": "ANITA_TALISMAN", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/ATMOSPHERIC_FILTER.json b/items/ATMOSPHERIC_FILTER.json new file mode 100644 index 00000000..4bff0b97 --- /dev/null +++ b/items/ATMOSPHERIC_FILTER.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§9Atmospheric Filter", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"10a6055d-c660-307a-91f6-42ac0c0e59ce\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5Njk0NTA0NTgxMCwKICAicHJvZmlsZUlkIiA6ICI0NDAzZGM1NDc1YmM0YjE1YTU0OGNmZGE2YjBlYjdkOSIsCiAgInByb2ZpbGVOYW1lIiA6ICJTa3lSZWFsbVNwaWVsZXIiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZDNjZjVjZDkyYzFiYTBhN2Q3YmIxZjg3MmNjZGI5NTFjYTg5N2QzNDAwNDA0NTdhMzI0MjcxNjA2YzViYmM1NiIKICAgIH0KICB9Cn0\"}]}},display:{Lore:[0:\"§7While on your §bGarden§7, grants\",1:\"§7a buff depending on the current\",2:\"§7SkyBlock season.\",3:\" §8✧ §dSpring\",4:\" §7Grants §6+25☘ Farming Fortune§7.\",5:\" §8✧ §6Summer\",6:\" §7Grants §3+20☯ Farming Wisdom§7.\",7:\" §8✧ §eAutumn\",8:\" §7Pests spawn §a15% §7more often.\",9:\" §a✦ §9Winter\",10:\" §7Visitors give §a5% §7more Copper.\",11:\"\",12:\"§9§lRARE ACCESSORY\"],Name:\"§f§f§9Atmospheric Filter\"},ExtraAttributes:{id:\"ATMOSPHERIC_FILTER\"}}", + "damage": 3, + "lore": [ + "§7While on your §bGarden§7, grants", + "§7a buff depending on the current", + "§7SkyBlock season.", + " §8✧ §dSpring", + " §7Grants §6+25☘ Farming Fortune§7.", + " §8✧ §6Summer", + " §7Grants §3+20☯ Farming Wisdom§7.", + " §8✧ §eAutumn", + " §7Pests spawn §a15% §7more often.", + " §a✦ §9Winter", + " §7Visitors give §a5% §7more Copper.", + "", + "§9§lRARE ACCESSORY" + ], + "internalname": "ATMOSPHERIC_FILTER", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/BEADY_EYES.json b/items/BEADY_EYES.json new file mode 100644 index 00000000..d76fa6eb --- /dev/null +++ b/items/BEADY_EYES.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Beady Eyes", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"af7f01af-e67b-31a1-b3a3-b3ffb26d7a4f\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5Njk0NTAxMjA3MiwKICAicHJvZmlsZUlkIiA6ICJiZWNlZGU1YmRkODY0YTkwOTc3MTRmODk0ZWUxNmE3MCIsCiAgInByb2ZpbGVOYW1lIiA6ICJTYW1hQ29tcG9zZXIiLAogICJzaWduYXR1cmVSZXF1aXJlZCIgOiB0cnVlLAogICJ0ZXh0dXJlcyIgOiB7CiAgICAiU0tJTiIgOiB7CiAgICAgICJ1cmwiIDogImh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvYmM2N2ZlODFmMGJiM2RlZDgwZmZhN2M2NDdhZGExMmEwZmYxMWZkMDZkM2NmM2FkYzI0MWFhN2MxMTViMTk2MCIKICAgIH0KICB9Cn0\"}]}},display:{Lore:[0:\"§8Reforge Stone\",1:\"§7§8Combinable in Reforge Anvil\",2:\"\",3:\"§7Applies the §9Beady §7reforge\",4:\"§7when combined with vacuums§7.\",5:\"\",6:\"§9Beady §7(§6Legendary§7):\",7:\"§7Damage: §c+25\",8:\"§7Intelligence: §a+50\",9:\"\",10:\"§9Beady Bonus\",11:\"§7§6Pests §7drop §a+3 §7crops.\",12:\"\",13:\"§7Requires §aMining Skill Level\",14:\"§aXV§7!\",15:\"\",16:\"§5§lEPIC REFORGE STONE\"],Name:\"§5Beady Eyes\"},ExtraAttributes:{id:\"BEADY_EYES\"}}", + "damage": 3, + "lore": [ + "§8Reforge Stone", + "§7§8Combinable in Reforge Anvil", + "", + "§7Applies the §9Beady §7reforge", + "§7when combined with vacuums§7.", + "", + "§9Beady §7(§6Legendary§7):", + "§7Damage: §c+25", + "§7Intelligence: §a+50", + "", + "§9Beady Bonus", + "§7§6Pests §7drop §a+3 §7crops.", + "", + "§7Requires §aMining Skill Level", + "§aXV§7!", + "", + "§5§lEPIC REFORGE STONE" + ], + "internalname": "BEADY_EYES", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/BOOKWORM_BOOK.json b/items/BOOKWORM_BOOK.json new file mode 100644 index 00000000..d854ac37 --- /dev/null +++ b/items/BOOKWORM_BOOK.json @@ -0,0 +1,22 @@ +{ + "itemid": "minecraft:book", + "displayname": "§9Bookworm\u0027s Favorite Book", + "nbttag": "{HideFlags:254,display:{Lore:[0:\"§7§8Combinable in Anvil\",1:\"\",2:\"§7When applied to a vacuum, grants\",3:\"§7§c+10❁ Damage§7.\",4:\"\",5:\"§7This can be applied to a vacuum\",6:\"§7up to §a5 §7times!\",7:\"\",8:\"§9§lRARE\"],Name:\"§9Bookworm\u0027s Favorite Book\"},ExtraAttributes:{id:\"BOOKWORM_BOOK\"}}", + "damage": 0, + "lore": [ + "§7§8Combinable in Anvil", + "", + "§7When applied to a vacuum, grants", + "§7§c+10❁ Damage§7.", + "", + "§7This can be applied to a vacuum", + "§7up to §a5 §7times!", + "", + "§9§lRARE" + ], + "internalname": "BOOKWORM_BOOK", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/CHEESE_FUEL.json b/items/CHEESE_FUEL.json index e307fc94..eec7fc1a 100644 --- a/items/CHEESE_FUEL.json +++ b/items/CHEESE_FUEL.json @@ -1,14 +1,19 @@ { "itemid": "minecraft:skull", - "displayname": "§9Tasty Cheese", - "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d91490fc-b575-3128-a4e3-0cc0f9f1d23c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzE1MzlkYmNkMzZmODc3MjYzMmU1NzM5ZTJlNTE0ODRlZGYzNzNjNTU4ZDZmYjJjNmI2MWI3MmI3Y2FhIn19fQ\"}]}},display:{Lore:[0:\"§7Increases the number of\",1:\"§7resources created by this minion\",2:\"§7by §a2x§7 for §a1 hour§7!\",3:\"\",4:\"§9§lRARE\"],Name:\"§9Tasty Cheese\"},ExtraAttributes:{id:\"CHEESE_FUEL\"}}", + "displayname": "§aTasty Cheese", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"d91490fc-b575-3128-a4e3-0cc0f9f1d23c\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzE1MzlkYmNkMzZmODc3MjYzMmU1NzM5ZTJlNTE0ODRlZGYzNzNjNTU4ZDZmYjJjNmI2MWI3MmI3Y2FhIn19fQ\"}]}},display:{Lore:[0:\"§7Can be spread across a §bGarden\",1:\"§b§7plot with a §aSprayonator§7.\",2:\"\",3:\"§7Attracts: §6Rat§7, §6Mite\",4:\"\",5:\"§7When in a minion, this increases\",6:\"§7the number of resources created\",7:\"§7by §a2x§7 for §a1 hour§7!\",8:\"\",9:\"§a§lUNCOMMON\"],Name:\"§aTasty Cheese\"},ExtraAttributes:{id:\"CHEESE_FUEL\"}}", "damage": 3, "lore": [ - "§7Increases the number of", - "§7resources created by this minion", + "§7Can be spread across a §bGarden", + "§b§7plot with a §aSprayonator§7.", + "", + "§7Attracts: §6Rat§7, §6Mite", + "", + "§7When in a minion, this increases", + "§7the number of resources created", "§7by §a2x§7 for §a1 hour§7!", "", - "§9§lRARE" + "§a§lUNCOMMON" ], "internalname": "CHEESE_FUEL", "crafttext": "", diff --git a/items/CHIRPING_STEREO.json b/items/CHIRPING_STEREO.json new file mode 100644 index 00000000..1d528d05 --- /dev/null +++ b/items/CHIRPING_STEREO.json @@ -0,0 +1,26 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§f§f§6Chirping Stereo", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"6146de90-aa10-3e12-b58e-df3f05077419\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5Njg2OTE5NjcyNiwKICAicHJvZmlsZUlkIiA6ICJmZWYyZDZjYzY5ZGI0ZWM5OWQzYzI5MzBmYzRmNTBhYSIsCiAgInByb2ZpbGVOYW1lIiA6ICJsb3Zlbm90d2FyIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzFhYmIzNjE0MDA1MmNhMjVkMTU5MTA3ZTJmNTRiZmM3OTIxOWU2YjJjNDc2ZmQwZDcwNGMxYWQ1Zjg3MTAxZjYiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7Can be used at §aSkyMart §7to\",1:\"§7upgrade the §5InfiniVacuum™ §7to\",2:\"§7the §6InfiniVacuum™ Hooverius§7,\",3:\"§7which applies the §6Stereo\",4:\"§6Harmony §7ability.\",5:\"\",6:\"§7§8§oWhile nobody is sure who\",7:\"§8§ocame up with the genius design,\",8:\"§8§oeveryone agrees that they are\",9:\"§8§oone of the true engineering\",10:\"§8§ogreats.\",11:\"\",12:\"§6§lLEGENDARY\"],Name:\"§f§f§6Chirping Stereo\"},ExtraAttributes:{id:\"CHIRPING_STEREO\"}}", + "damage": 3, + "lore": [ + "§7Can be used at §aSkyMart §7to", + "§7upgrade the §5InfiniVacuum™ §7to", + "§7the §6InfiniVacuum™ Hooverius§7,", + "§7which applies the §6Stereo", + "§6Harmony §7ability.", + "", + "§7§8§oWhile nobody is sure who", + "§8§ocame up with the genius design,", + "§8§oeveryone agrees that they are", + "§8§oone of the true engineering", + "§8§ogreats.", + "", + "§6§lLEGENDARY" + ], + "internalname": "CHIRPING_STEREO", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/CLIPPED_WINGS.json b/items/CLIPPED_WINGS.json new file mode 100644 index 00000000..da505dbb --- /dev/null +++ b/items/CLIPPED_WINGS.json @@ -0,0 +1,30 @@ +{ + "itemid": "minecraft:skull", + "displayname": "§5Clipped Wings", + "nbttag": "{HideFlags:254,SkullOwner:{Id:\"4cc5d9e2-0a73-3566-ada1-604fb7d9203f\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTY5Njk0NTA3NzM3NCwKICAicHJvZmlsZUlkIiA6ICI5Y2ZlNTBiMGIzMGE0ODUxOTg3ZTExMjc3N2RmYWRhYyIsCiAgInByb2ZpbGVOYW1lIiA6ICJCdXpCbG9nIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzY1ZTMyNjA2MmNkYzk0OWI4ODMwMjdmOWEzNGE3N2RiM2U0Mjk3NmIyMjRkOTM2NzM5Y2IwYWJkNzUxMzY4ZDciCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§8Reforge Stone\",1:\"§7§8Combinable in Reforge Anvil\",2:\"\",3:\"§7Applies the §9Buzzing §7reforge\",4:\"§7when combined with vacuums§7.\",5:\"\",6:\"§9Buzzing §7(§6Legendary§7):\",7:\"§7Speed: §a+10\",8:\"\",9:\"§9Buzzing Bonus\",10:\"§7Doubles the §c❁ Damage §7dealt\",11:\"§7by §aVacuums§7.\",12:\"\",13:\"§7Requires §aMining Skill Level\",14:\"§aXV§7!\",15:\"\",16:\"§5§lEPIC REFORGE STONE\"],Name:\"§5Clipped Wings\"},ExtraAttributes:{id:\"CLIPPED_WINGS\"}}", + "damage": 3, + "lore": [ + "§8Reforge Stone", + "§7§8Combinable in Reforge Anvil", + "", + "§7Applies the §9Buzzing §7reforge", + "§7when combined with vacuums§7.", + "", + "§9Buzzing §7(§6Legendary§7):", + "§7Speed: §a+10", + "", + "§9Buzzing Bonus", + "§7Doubles the §c❁ Damage §7dealt", + "§7by §aVacuums§7.", + "", + "§7Requires §aMining Skill Level", + "§aXV§7!", + "", + "§5§lEPIC REFORGE STONE" + ], + "internalname": "CLIPPED_WINGS", + "crafttext": "", + "clickcommand": "", + "modver": "2.1.1-PRE", + "infoType": "" +}
\ No newline at end of file diff --git a/items/COCO_CHOPPER.json b/items/COCO_CHOPPER.json index 994f658b..a18cb5f3 100644 --- a/items/COCO_CHOPPER.json +++ b/items/COCO_CHOPPER.json @@ -1,11 +1,14 @@ { "itemid": "minecraft:golden_axe", - "displayname": "§f§f§5Cocoa Chopper", - "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Grants §6+20☘ Farming Fortune\",1:\"§6§7when harvesting Cocoa Beans.\",2:\"\",3:\"§7§8This item can be reforged!\",4:\"§5§lEPIC AXE\"],Name:\"§f§f§5Cocoa Chopper\"},ExtraAttributes:{id:\"COCO_CHOPPER\"}}", + "displayname": "§5Cocoa Chopper", + "nbttag": "{Unbreakable:1b,HideFlags:254,display:{Lore:[0:\"§7Cocoa Beans Fortune: §a+20\",1:\"\",2:\"§7Grants §6+20☘ Cocoa Beans\",3:\"§6Fortune§7, which increases drops\",4:\"§7when harvesting Cocoa Beans.\",5:\"\",6:\"§7§8This item can be reforged!\",7:\"§5§lEPIC AXE\"],Name:\"§5Cocoa Chopper\"},ExtraAttributes:{id:\"COCO_CHOPPER\"}}", "damage": 0, "lore": [ - "§7Grants §6+20☘ Farming Fortune", - "§6§7when harvesting Cocoa Beans.", + "§7Cocoa Beans Fortune: §a+20", + "", + "§7Grants §6+20☘ Cocoa Beans", + "§6Fortune§7, which increases drops", + "§7when harvesting Cocoa Beans.", "", "§7§8This item can be reforged!", "§5§lEPIC AXE" |
