-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4fc6bd4
commit 5de5720
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |