Skip to content

Commit

Permalink
Add Wildy Slayer Cave Table
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Feb 19, 2024
1 parent 0edefcb commit 21ad419
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";

Check failure on line 1 in src/simulation/subtables/WildySlayerCaveTable.ts

View workflow job for this annotation

GitHub Actions / ESLint

Replace `"../../structures/LootTable"` with `'../../structures/LootTable'`

Check failure on line 1 in src/simulation/subtables/WildySlayerCaveTable.ts

View workflow job for this annotation

GitHub Actions / ESLint

Strings must use singlequote

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)

Check failure on line 25 in src/simulation/subtables/WildySlayerCaveTable.ts

View workflow job for this annotation

GitHub Actions / ESLint

Invalid group length in numeric value
.add('Looting bag note', 1, 13875)

Check failure on line 26 in src/simulation/subtables/WildySlayerCaveTable.ts

View workflow job for this annotation

GitHub Actions / ESLint

Invalid group length in numeric value

Check failure on line 26 in src/simulation/subtables/WildySlayerCaveTable.ts

View workflow job for this annotation

GitHub Actions / ESLint

Insert `;`

export default WildySlayerCaveTable;

0 comments on commit 21ad419

Please sign in to comment.