Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Wildy Slayer Cave Table #359

Merged
merged 4 commits into from
Feb 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
Loading