Skip to content

Commit

Permalink
Add Wildy Slayer Cave Table (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum authored Feb 21, 2024
1 parent 4fc6bd4 commit 5de5720
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/simulation/subtables/WildySlayerCaveTable.ts
Original file line number Diff line number Diff line change
@@ -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, 13_875)
.add('Looting bag note', 1, 13_875);

export default WildySlayerCaveTable;

0 comments on commit 5de5720

Please sign in to comment.