From 5f7bbad7242d31a064c57eea9ffb0c764fabd4da Mon Sep 17 00:00:00 2001 From: TastyPumPum <79149170+TastyPumPum@users.noreply.github.com> Date: Mon, 3 Jun 2024 11:58:22 +0100 Subject: [PATCH] Fix Scorpia drop table (#375) --- .../monsters/bosses/wildy/Scorpia.ts | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/simulation/monsters/bosses/wildy/Scorpia.ts b/src/simulation/monsters/bosses/wildy/Scorpia.ts index e42fda196..c056c5d9a 100644 --- a/src/simulation/monsters/bosses/wildy/Scorpia.ts +++ b/src/simulation/monsters/bosses/wildy/Scorpia.ts @@ -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)