From 21ad419bc08dfff1dabbf27f43a044c34e988d4f Mon Sep 17 00:00:00 2001 From: TastyPumPum Date: Mon, 19 Feb 2024 10:17:51 +0000 Subject: [PATCH 1/3] Add Wildy Slayer Cave Table --- .../subtables/WildySlayerCaveTable.ts | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/simulation/subtables/WildySlayerCaveTable.ts diff --git a/src/simulation/subtables/WildySlayerCaveTable.ts b/src/simulation/subtables/WildySlayerCaveTable.ts new file mode 100644 index 000000000..31c022b58 --- /dev/null +++ b/src/simulation/subtables/WildySlayerCaveTable.ts @@ -0,0 +1,28 @@ +import LootTable from "../../structures/LootTable"; + +const WildySlayerCaveTable = new LootTable() + .add('Blighted entangle sack', [1, 10], 69) + .add('Blighted anglerfish', [1, 2], 93) + .add('Blighted manta ray', [1, 2], 93) + .add('Blighted karambwan', [1, 2], 139) + .add('Blighted teleport spell sack', [1, 10], 139) + .add('Blighted ancient spell sack', [1, 10], 139) + .add('Blighted vengeance spell sack', [1, 10], 139) + .add('Blighted super restore(4)', 1, 278) + .add('Revenant cave teleport', 1, 278) + .add('Dareeyak teleport (tablet)', 1, 1388) + .add('Wilderness crabs teleport', 1, 1388) + .add('Carrallanger teleport (tablet)', 1, 1388) + .add('Paddewwa teleport (tablet)', 1, 1388) + .add('Annakarl teleport (tablet)', 1, 1388) + .add('Lassar teleport (tablet)', 1, 1388) + .add('Kharyrll teleport (tablet)', 1, 1388) + .add('Senntisten teleport (tablet)', 1, 1388) + .add('Ghorrock teleport (tablet)', 1, 1388) + .add('Target teleport', 1, 1388) + .add('Magic shortbow scroll', 1, 3469) + .add('Ring of wealth scroll', 1, 3469) + .add('Trouver parchment', 2, 13875) + .add('Looting bag note', 1, 13875) + +export default WildySlayerCaveTable; From eb16e950179887dc7f1fe2860aa28b5bb550ed0f Mon Sep 17 00:00:00 2001 From: TastyPumPum Date: Mon, 19 Feb 2024 12:12:33 +0000 Subject: [PATCH 2/3] Lint --- src/simulation/subtables/WildySlayerCaveTable.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/simulation/subtables/WildySlayerCaveTable.ts b/src/simulation/subtables/WildySlayerCaveTable.ts index 31c022b58..d1a7ed6a9 100644 --- a/src/simulation/subtables/WildySlayerCaveTable.ts +++ b/src/simulation/subtables/WildySlayerCaveTable.ts @@ -1,4 +1,4 @@ -import LootTable from "../../structures/LootTable"; +import LootTable from '../../structures/LootTable'; const WildySlayerCaveTable = new LootTable() .add('Blighted entangle sack', [1, 10], 69) @@ -22,7 +22,7 @@ const WildySlayerCaveTable = new LootTable() .add('Target teleport', 1, 1388) .add('Magic shortbow scroll', 1, 3469) .add('Ring of wealth scroll', 1, 3469) - .add('Trouver parchment', 2, 13875) - .add('Looting bag note', 1, 13875) + .add('Trouver parchment', 2, 13_875) + .add('Looting bag note', 1, 13_875); export default WildySlayerCaveTable; From 9ceea55c50980c869b938ec02cd425ec27b3f93f Mon Sep 17 00:00:00 2001 From: TastyPumPum Date: Mon, 19 Feb 2024 13:38:26 +0000 Subject: [PATCH 3/3] Update hiscores --- src/constants.ts | 1 + src/meta/types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index b51e63c1d..ca2e282b5 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -80,6 +80,7 @@ export const mappedBossNames: [keyof BossRecords, string][] = [ ['phantomMuspah', 'Phantom Muspah'], ['sarachnis', 'Sarachnis'], ['scorpia', 'Scorpia'], + ['scurrius', 'Scurrius'], ['skotizo', 'Skotizo'], ['spindel', 'Spindel'], ['tempoross', 'Tempoross'], diff --git a/src/meta/types.ts b/src/meta/types.ts index cf89cd7c4..319724b24 100644 --- a/src/meta/types.ts +++ b/src/meta/types.ts @@ -96,6 +96,7 @@ export interface BossRecords { phantomMuspah: MinigameScore; sarachnis: MinigameScore; scorpia: MinigameScore; + scurrius: MinigameScore; skotizo: MinigameScore; spindel: MinigameScore; tempoross: MinigameScore;