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

Updated Wilderness boss loot to be consistent with ingame #348

Merged
merged 4 commits into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
52 changes: 26 additions & 26 deletions src/simulation/monsters/bosses/wildy/Callisto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,41 +23,41 @@ const CallistoTable = new LootTable()
.every(CallistoUniqueTable)

/* Weapons and armour */
.add('Rune pickaxe', [1, 3], 12)
.add('Rune pickaxe', 3, 12)
.add('Rune 2h sword', 1, 3)

/* Runes and ammunition */
.add('Blood rune', [75, 500], 7)
.add('Death rune', [105, 700], 7)
.add('Chaos rune', [135, 900], 7)
.add('Soul rune', [90, 600], 5)
.add('Cannonball', [90, 600], 4)
.add('Blood rune', 500, 7)
.add('Death rune', 700, 7)
.add('Chaos rune', 900, 7)
.add('Soul rune', 600, 5)
.add('Cannonball', 600, 4)

/* Materials */
.add('Mahogany logs', [90, 600], 6)
.add('Limpwurt root', [15, 100], 5)
.add('Magic logs', [33, 225], 5)
.add('Uncut ruby', [11, 75], 4)
.add('Uncut diamond', [5, 35], 3)
.add('Red dragonhide', [25, 170], 3)
.add('Uncut dragonstone', [1, 5], 2)
.add('Coconut', [20, 135], 2)
.add('Grimy toadflax', [22, 150], 1)
.add('Grimy dwarf weed', [6, 45], 1)
.add('Grimy ranarr weed', [6, 45], 1)
.add('Grimy snapdragon', [6, 45], 1)
.add('Mahogany logs', 600, 6)
.add('Limpwurt root', 100, 5)
.add('Magic logs', 225, 5)
.add('Uncut ruby', 75, 4)
.add('Uncut diamond', 35, 3)
.add('Red dragonhide', 170, 3)
.add('Uncut dragonstone', 5, 2)
.add('Coconut', 135, 2)
.add('Grimy toadflax', 150, 1)
.add('Grimy dwarf weed', 45, 1)
.add('Grimy ranarr weed', 45, 1)
.add('Grimy snapdragon', 45, 1)

/* Seeds */
.add('Ranarr seed', [1, 11], 5)
.add('Snapdragon seed', [1, 8], 5)
.add('Ranarr seed', 11, 5)
.add('Snapdragon seed', 8, 5)

/* Other */
.add('Coins', [7500, 50_000], 21)
.add('Dark crab', [7, 50], 5)
.add('Super restore(4)', [1, 10], 5)
.add('Supercompost', [33, 225], 4)
.add('Dragon bones', [11, 75], 3)
.add('Blighted anglerfish', [6, 45], 1)
.add('Coins', 50_000, 21)
.add('Dark crab', 50, 5)
.add('Super restore(4)', 10, 5)
.add('Supercompost', 225, 4)
.add('Dragon bones', 75, 3)
.add('Blighted anglerfish', 45, 1)

/* Tertiary */
.tertiary(100, 'Clue scroll (elite)')
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/monsters/bosses/wildy/Venenatis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const VenenatisTable = new LootTable()
.add('Onyx bolt tips', 150, 5)
.add('Magic logs', 225, 5)
.add('Limpwurt root', 100, 5)
.add("Red spiders' eggs", [75, 500], 3)
.add("Red spiders' eggs", 500, 3)
.add('Uncut dragonstone', 5, 2)
.add('Uncut ruby', 75, 1)
.add('Unicorn horn', 225, 1)
Expand Down
54 changes: 27 additions & 27 deletions src/simulation/monsters/bosses/wildy/Vetion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,39 +26,39 @@ const VetionTable = new LootTable()
.every(VetionUniqueTable)

/* Weapons and armour */
.add('Rune pickaxe', [1, 3], 12)
.add('Rune dart', [22, 150], 3)
.add('Rune knife', [22, 150], 3)
.add('Rune pickaxe', 3, 12)
.add('Rune dart', 150, 3)
.add('Rune knife', 150, 3)

/* Runes and ammunition */
.add('Chaos rune', [135, 900], 7)
.add('Death rune', [105, 700], 7)
.add('Blood rune', [75, 500], 7)
.add('Cannonball', [82, 550], 4)
.add('Chaos rune', 900, 7)
.add('Death rune', 700, 7)
.add('Blood rune', 500, 7)
.add('Cannonball', 550, 4)

/* Materials */
.add('Gold ore', [101, 675], 6)
.add('Limpwurt root', [9, 60], 5)
.add('Wine of zamorak', [15, 100], 5)
.add('Magic logs', [33, 225], 5)
.add('Oak plank', [60, 400], 5)
.add('Uncut ruby', [11, 75], 4)
.add('Uncut diamond', [5, 35], 3)
.add('Dragon bones', [22, 150], 3)
.add('Uncut dragonstone', [1, 5], 2)
.add('Mort myre fungus', [67, 450], 2)
.add('Grimy ranarr weed', [15, 100], 1)
.add('Grimy dwarf weed', [6, 45], 1)
.add('Grimy snapdragon', [6, 45], 1)
.add('Grimy toadflax', [6, 45], 1)
.add('Gold ore', 675, 6)
.add('Limpwurt root', 60, 5)
.add('Wine of zamorak', 100, 5)
.add('Magic logs', 225, 5)
.add('Oak plank', 400, 5)
.add('Uncut ruby', 75, 4)
.add('Uncut diamond', 35, 3)
.add('Dragon bones', 150, 3)
.add('Uncut dragonstone', 5, 2)
.add('Mort myre fungus', 450, 2)
.add('Grimy ranarr weed', 100, 1)
.add('Grimy dwarf weed', 45, 1)
.add('Grimy snapdragon', 45, 1)
.add('Grimy toadflax', 45, 1)

/* Other */
.add('Coins', [7500, 50_000], 21)
.add('Super restore(4)', [1, 10], 5)
.add('Sanfew serum(4)', [3, 20], 5)
.add('Dark crab', [7, 50], 5)
.add('Supercompost', [33, 225], 4)
.add('Blighted anglerfish', [6, 45], 1)
.add('Coins', 50_000, 21)
.add('Super restore(4)', 10, 5)
.add('Sanfew serum(4)', 20, 5)
.add('Dark crab', 50, 5)
.add('Supercompost', 225, 4)
.add('Blighted anglerfish', 45, 1)

/* Tertiary */
.tertiary(100, 'Clue scroll (elite)')
Expand Down
Loading