Skip to content

Commit

Permalink
Update Vetion.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mylife212 authored Oct 11, 2023
1 parent cdecadf commit 4f01712
Showing 1 changed file with 27 additions and 27 deletions.
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

0 comments on commit 4f01712

Please sign in to comment.