Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update mobs drops #1453

Merged
merged 48 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 45 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
40826e5
add dwarven os block bran
catgirlseraid Nov 17, 2024
5694102
Revert "add dwarven os block bran"
catgirlseraid Nov 17, 2024
0392d6d
Merge remote-tracking branch 'origin/master'
catgirlseraid Nov 19, 2024
9eb69f5
first test
catgirlseraid Nov 19, 2024
5ce2fd1
test if combat xp shows up or if cache
catgirlseraid Nov 19, 2024
db7c226
test if combat xp and farming xp works
catgirlseraid Nov 19, 2024
c2ac326
see if i added multiple levels of mobs correctly
catgirlseraid Nov 19, 2024
c140d7f
see if i added multiple levels of mobs correctly
catgirlseraid Nov 19, 2024
ed8e193
see if i added multiple levels of mobs correctly second time
catgirlseraid Nov 19, 2024
f2d58d4
test if mobs can have different names under the same nest
catgirlseraid Nov 19, 2024
dca3ac1
see if i added silverfish correctly
catgirlseraid Nov 19, 2024
a778f7c
fix background maybe
catgirlseraid Nov 19, 2024
5b0bdc4
check on spider changes
catgirlseraid Nov 19, 2024
590713b
test of adding a new mob what could go wrong
catgirlseraid Nov 19, 2024
294a514
this time
catgirlseraid Nov 19, 2024
7090bac
maybe it's in the correct section now?
catgirlseraid Nov 19, 2024
e46db37
bat update 2
catgirlseraid Nov 19, 2024
5fc60a7
wrong one
catgirlseraid Nov 19, 2024
fb0ec94
idk anymore pls just work
catgirlseraid Nov 19, 2024
9a20cab
3
catgirlseraid Nov 19, 2024
a2fd41b
maybe this?
catgirlseraid Nov 19, 2024
b8f3059
test with another skin
catgirlseraid Nov 19, 2024
216678c
test with another skin with the correct id
catgirlseraid Nov 19, 2024
0bbcec3
idk anymore
catgirlseraid Nov 19, 2024
2323866
3
catgirlseraid Nov 19, 2024
c3a5fbc
4
catgirlseraid Nov 19, 2024
f89134c
5
catgirlseraid Nov 19, 2024
1872bf7
6
catgirlseraid Nov 19, 2024
5dcac87
test this?
catgirlseraid Nov 19, 2024
66a4493
test the same item multiple times
catgirlseraid Nov 19, 2024
e7ed747
test using ranges and key ids
catgirlseraid Nov 19, 2024
d3ee531
test using ranges and key ids
catgirlseraid Nov 19, 2024
c47577c
slime test
catgirlseraid Nov 20, 2024
1c3bce0
test goblins
catgirlseraid Nov 20, 2024
98d4d49
lets find out if i can do this
catgirlseraid Nov 20, 2024
f145520
upload progress
catgirlseraid Nov 20, 2024
8d97418
test of fish
catgirlseraid Nov 20, 2024
42f30ff
a few more sea creatures
catgirlseraid Nov 20, 2024
0a1a47c
Merge remote-tracking branch 'refs/remotes/origin/master' into update…
catgirlseraid Nov 20, 2024
5cefd37
revert dye chances, my fault :(
catgirlseraid Nov 20, 2024
f9b274f
remove unneeded file and fix bat lore
catgirlseraid Nov 20, 2024
e15ff3a
forgot a comma
catgirlseraid Nov 20, 2024
e14695c
fix dye drop chances
catgirlseraid Nov 20, 2024
39eed79
how do i keep missing these omg sorry
catgirlseraid Nov 20, 2024
35cd3ad
:( poor jani
catgirlseraid Nov 20, 2024
2e81078
fix dye chance, fix formatting
catgirlseraid Nov 20, 2024
16cf594
magma cube pet drop changes
catgirlseraid Nov 20, 2024
2298de2
use the right pet this time
catgirlseraid Nov 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions items/AGARIMOO_SC.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
],
"drops": [
{
"id": "RED_MUSHROOM:35",
"chance": "100%"
"id": "RED_MUSHROOM",
"chance": "x35-55"
},
{
"id": "AGARIMOO_TONGUE:3",
Expand Down
1 change: 1 addition & 0 deletions items/ANGRY_ARCHEOLOGIST_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"crafttext": "",
"recipes": [
{
"xp": 100,
"combat_xp": 100,
"coins": 1,
"name": "§d§lAngry Archeologist",
Expand Down
29 changes: 25 additions & 4 deletions items/ARACHNES_BROOD_MONSTER.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,41 @@
"recipes": [
{
"level": 100,
"coins": 10,
"coins": 800,
"xp": 10,
"combat_xp": 80,
"name": "§cArachne\u0027s Brood",
"panorama": "combat_1",
"render": "Spider",
"type": "drops",
"drops": [
{
"id": "SPIDER_EYE",
"id": "SPIDER_EYE:10",
"chance": "100%"
},
{
"id": "STRING",
"chance": "50%"
"id": "STRING:5",
"chance": "100%"
}
]
},
{
"level": 200,
"coins": 1500,
"xp": 13,
"combat_xp": 120,
"name": "§cArachne\u0027s Brood",
"panorama": "combat_1",
"render": "Spider",
"type": "drops",
"drops": [
{
"id": "SPIDER_EYE:10",
"chance": "100%"
},
{
"id": "STRING:5",
"chance": "100%"
}
]
}
Expand Down
4 changes: 2 additions & 2 deletions items/ARACHNES_KEEPER_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
},
{
"id": "SPIDER_EYE",
"chance": "100%"
"chance": "x4-8"
},
{
"id": "STRING",
"chance": "50%"
"chance": "x2-4"
},
{
"id": "ARACHNE_GLOVES",
Expand Down
36 changes: 24 additions & 12 deletions items/ARACHNE_BOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"recipes": [
{
"level": 300,
"coins": 15,
"coins": 2000,
"xp": 15,
"combat_xp": 35,
"combat_xp": 200,
"name": "§6Arachne",
"panorama": "combat_1",
"render": "Spider",
Expand All @@ -38,7 +38,15 @@
},
{
"id": "STRING",
"chance": "x0-3"
"chance": "x10-20"
},
{
"id": "ENCHANTED_SPIDER_EYE",
"chance": "x0-2"
},
{
"id": "SPIDER_EYE",
"chance": "x10-20"
},
{
"id": "ARACHNE_FRAGMENT",
Expand Down Expand Up @@ -80,9 +88,9 @@
},
{
"level": 500,
"coins": 20,
"coins": 8000,
"xp": 20,
"combat_xp": 35,
"combat_xp": 400,
"name": "§6Arachne",
"panorama": "combat_1",
"render": "Spider",
Expand All @@ -98,11 +106,15 @@
},
{
"id": "STRING",
"chance": "x0-3"
"chance": "x10-60"
},
{
"id": "DARK_QUEENS_SOUL_DROP",
"chance": "100%"
"id": "ENCHANTED_SPIDER_EYE",
"chance": "x0-6"
},
{
"id": "SPIDER_EYE",
"chance": "x10-60"
},
{
"id": "SOUL_STRING",
Expand All @@ -124,14 +136,14 @@
"id": "ARACHNE_BOOTS",
"chance": "25%"
},
{
"id": "LUXURIOUS_SPOOL",
"chance": "100%"
},
{
"id": "ARACK",
"chance": "25%"
},
{
"id": "DARK_QUEENS_SOUL_DROP",
"chance": "100%"
},
{
"id": "ESSENCE_SPIDER:30",
"chance": "100%"
Expand Down
14 changes: 11 additions & 3 deletions items/ASHFANG_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,25 @@
"panorama": "crimson_isle",
"drops": [
{
"id": "BLAZE_ROD:20",
"chance": "100%"
"id": "BLAZE_ROD",
"chance": "x20-35"
},
{
"id": "ENCHANTED_BLAZE_POWDER:1",
"chance": "50%"
"chance": "x0-2"
},
{
"id": "LUMINO_FIBER:1",
"chance": "100%"
},
{
"id": "KUUDRA_HOT_TIER_KEY",
"chance": "4%"
},
{
"id": "KUUDRA_TIER_KEY",
"chance": "6%"
},
{
"id": "MAGMA_URCHIN:1",
"chance": "2%"
Expand Down
16 changes: 12 additions & 4 deletions items/BARBARIAN_DUKE_X_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@
{
"name": "§8Barbarian Duke X",
"level": 200,
"coins": 100,
"coins": 1000,
"xp": 5000,
"combat_xp": 4000,
"render": "@neurepo:mobs/barbarian_duke_x.json",
"type": "drops",
"panorama": "crimson_isle",
"drops": [
{
"id": "PORK:20",
"chance": "100%"
"id": "PORK",
"chance": "x20-35"
},
{
"id": "ENCHANTED_PORK:1",
"chance": "50%"
"chance": "x0-2"
},
{
"id": "LEATHER_CLOTH",
Expand All @@ -44,6 +44,14 @@
"id": "MAGMA_URCHIN",
"chance": "2%"
},
{
"id": "KUUDRA_HOT_TIER_KEY",
"chance": "4%"
},
{
"id": "KUUDRA_TIER_KEY",
"chance": "6%"
},
{
"id": "FLAMING_FIST",
"chance": "0.2%"
Expand Down
38 changes: 38 additions & 0 deletions items/BAT_MONSTER.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"itemid": "minecraft:skull",
"displayname": "§aBat (Monster)",
"nbttag": "{HideFlags:254,SkullOwner:{Id:\"b676e304-9f3d-3b60-9032-295f36bb0141\",Properties:{textures:[0:{Value:\"ewogICJ0aW1lc3RhbXAiIDogMTYwMjAzOTYxNzA5MSwKICAicHJvZmlsZUlkIiA6ICJlZDUzZGQ4MTRmOWQ0YTNjYjRlYjY1MWRjYmE3N2U2NiIsCiAgInByb2ZpbGVOYW1lIiA6ICIwMTAwMDExMDAxMDAwMDExIiwKICAic2lnbmF0dXJlUmVxdWlyZWQiIDogdHJ1ZSwKICAidGV4dHVyZXMiIDogewogICAgIlNLSU4iIDogewogICAgICAidXJsIiA6ICJodHRwOi8vdGV4dHVyZXMubWluZWNyYWZ0Lm5ldC90ZXh0dXJlLzM3N2FkZThhZmIyNTcwODZmYjE4NjFkYTQzYzhhZTQ2OGI4ZWIwNTc4ZmFkYTg0MzAzODU4NTE3YmExNzIxN2UiCiAgICB9CiAgfQp9\"}]}},display:{Lore:[0:\"§7The Bat is a Mob that can be spawned from the\",1:\"§7Roofed Forest Island's Bat Crystal during the night.\",2:\"\",3:\"§c❤ Health§8: §c100\"],Name:\"§aBat (Monster)\"},ExtraAttributes:{id:\"BAT_MONSTER\"}}",
"damage": 3,
"lore": [
"§7The Bat is a Mob that can be spawned from the",
"§7Roofed Forest Island's Bat Crystal during the night.",
"",
"§c❤ Health§8: §c100"
],
"internalname": "BAT_MONSTER",
"clickcommand": "viewrecipe",
"modver": "2.1.0-REL",
"infoType": "WIKI_URL",
"info": [
"https://wiki.hypixel.net/Bat_(Private_Island)"
],
"crafttext": "",
"recipes": [
{
"level": 3,
"coins": 100,
"xp": 100,
"combat_xp": 33,
"name": "§cBat",
"render": "Bat",
"panorama": "dynamic",
"type": "drops",
"drops": [
{
"id": "BAT_TALISMAN",
"chance": "1%"
}
]
}
]
}
8 changes: 6 additions & 2 deletions items/BEZAL_MONSTER.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
{
"level": 80,
"coins": 20,
"xp": 100,
"combat_xp": 0,
"xp": 60,
"combat_xp": 60,
"name": "§fBezal",
"type": "drops",
"panorama": "crimson_isle",
Expand Down Expand Up @@ -59,6 +59,10 @@
"extra": [],
"chance": "0.2%"
},
{
"id": "SWORD_OF_BAD_HEALTH:1",
"chance": "0.05%"
},
{
"id": "DYE_CYCLAMEN",
"chance": "0.00001%"
Expand Down
16 changes: 12 additions & 4 deletions items/BLADESOUL_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@
{
"name": "§8Bladesoul",
"level": 200,
"coins": 4000,
"coins": 1000,
"xp": 5000,
"combat_xp": 4000,
"render": "@neurepo:mobs/bladesoul.json",
"type": "drops",
"panorama": "crimson_isle",
"drops": [
{
"id": "COAL:20",
"chance": "100%"
"id": "COAL",
"chance": "x20-35"
},
{
"id": "ENCHANTED_COAL:1",
"chance": "50%"
"chance": "x0-2"
},
{
"id": "HALLOWED_SKULL:1",
Expand All @@ -49,6 +49,14 @@
"id": "MAGMA_URCHIN:1",
"chance": "2%"
},
{
"id": "KUUDRA_HOT_TIER_KEY",
"chance": "4%"
},
{
"id": "KUUDRA_TIER_KEY",
"chance": "6%"
},
{
"id": "RAGNAROCK_AXE:1",
"chance": "0.5%"
Expand Down
33 changes: 5 additions & 28 deletions items/BLAZE_MONSTER.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,9 @@
"crafttext": "",
"recipes": [
{
"level": 12,
"coins": 5,
"xp": 30,
"combat_xp": 0,
"name": "§fBlaze",
"type": "drops",
"panorama": "crimson_isle",
"render": "Blaze",
"extra": [],
"drops": [
{
"id": "BLAZE_ROD:1",
"extra": [],
"chance": "100%"
},
{
"id": "DYE_CYCLAMEN",
"chance": "0.00001%"
}
]
},
{
"level": 15,
"coins": 10,
"xp": 35,
"combat_xp": 0,
"level": 25,
"coins": 20,
"xp": 50,
"name": "§fBlaze",
"type": "drops",
"panorama": "crimson_isle",
Expand All @@ -65,8 +42,8 @@
{
"level": 70,
"coins": 20,
"xp": 100,
"combat_xp": 0,
"xp": 50,
"combat_xp": 50,
"name": "§fBlaze",
"type": "drops",
"panorama": "crimson_isle",
Expand Down
6 changes: 5 additions & 1 deletion items/BROOD_MOTHER_MINIBOSS.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,17 @@
"chance": "100%"
},
{
"id": "STRING:4",
"id": "STRING",
"chance": "100%"
},
{
"id": "SPIDER_TALISMAN",
"chance": "100%"
},
{
"id": "LUXURIOUS_SPOOL",
"chance": "5%"
},
{
"id": "SPIDERS_DEN_TOP_TRAVEL_SCROLL",
"chance": "0.03%"
Expand Down
Loading
Loading