Skip to content

Commit

Permalink
Fix Scorpia drop table (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum authored Jun 3, 2024
1 parent 4504fa8 commit 5f7bbad
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/simulation/monsters/bosses/wildy/Scorpia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,22 +25,22 @@ const ScorpiaTable = new LootTable()
.add("Dragon 2h sword", 1, 1)

/* Runes */
.add("Death rune", [100 - 150], 8)
.add("Blood rune", [100 - 150], 8)
.add("Chaos rune", [150 - 200], 8)
.add("Death rune", [100, 150], 8)
.add("Blood rune", [100, 150], 8)
.add("Chaos rune", [150, 200], 8)

/* Herbs */
.add("Grimy kwuarm", [10 - 15], 5)
.add("Grimy dwarf weed", [10 - 15], 5)
.add("Grimy torstol", [10 - 15], 5)
.add("Grimy snapdragon", [4 - 7], 5)
.add("Grimy kwuarm", [10, 15], 5)
.add("Grimy dwarf weed", [10, 15], 5)
.add("Grimy torstol", [10, 15], 5)
.add("Grimy snapdragon", [4, 7], 5)

/* Materials */
.add("Uncut ruby", [15 - 20], 6)
.add("Uncut diamond", [10 - 15], 4)
.add("Uncut ruby", [15, 20], 6)
.add("Uncut diamond", [10, 15], 4)
.add("Runite ore", 3, 4)
.add("Dragon javelin heads", [30 - 50], 4)
.add("Onyx bolt tips", [6 - 10], 2)
.add("Dragon javelin heads", [30, 50], 4)
.add("Onyx bolt tips", [6, 10], 2)

/* Other */
.add("Coins", [25_002, 34_962], 7)
Expand Down

0 comments on commit 5f7bbad

Please sign in to comment.