-
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.
Adds the wilderness slayer cave tables for all the relevant npcs
- Loading branch information
1 parent
8e2b7ef
commit bfeb5ca
Showing
13 changed files
with
298 additions
and
9 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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,14 +1,42 @@ | ||
import LootTable from "../../../../structures/LootTable"; | ||
import SimpleMonster from "../../../../structures/SimpleMonster"; | ||
|
||
const WildySlayerCaveTable = new LootTable() | ||
.add("Blighted entangle sack", [1, 10], 65) | ||
.add("Blighted anglerfish", [1, 2], 87) | ||
.add("Blighted manta ray", [1, 2], 87) | ||
.add("Blighted karambwan", [1, 2], 131) | ||
.add("Blighted teleport spell sack", [1, 10], 131) | ||
.add("Blighted ancient spell sack", [1, 10], 131) | ||
.add("Blighted vengeance spell sack", [1, 10], 131) | ||
.add("Blighted super restore(4)", 1, 261) | ||
.add("Revenant cave teleport", 1, 261) | ||
.add("Dareeyak teleport (tablet)", 1, 1306) | ||
.add("Wilderness crabs teleport", 1, 1306) | ||
.add("Carrallanger teleport (tablet)", 1, 1306) | ||
.add("Paddewwa teleport (tablet)", 1, 1306) | ||
.add("Annakarl teleport (tablet)", 1, 1306) | ||
.add("Lassar teleport (tablet)", 1, 1306) | ||
.add("Kharyrll teleport (tablet)", 1, 1306) | ||
.add("Senntisten teleport (tablet)", 1, 1306) | ||
.add("Ghorrock teleport (tablet)", 1, 1306) | ||
.add("Target teleport", 1, 1306) | ||
.add("Magic shortbow scroll", 1, 3265) | ||
.add("Ring of wealth scroll", 1, 3265) | ||
.add("Trouver parchment", 2, 13_059) | ||
.add("Looting bag note", 1, 13_059); | ||
|
||
const HellhoundTable = new LootTable() | ||
.every("Vile ashes") | ||
.oneIn(32_768, "Smouldering stone") | ||
.tertiary(64, "Clue scroll (hard)"); | ||
|
||
const HellhoundWildyCaveTable = new LootTable().every(HellhoundTable).tertiary(1.25, WildySlayerCaveTable); | ||
|
||
export default new SimpleMonster({ | ||
id: 104, | ||
name: "Hellhound", | ||
table: HellhoundTable, | ||
wildyCaveTable: HellhoundWildyCaveTable, | ||
aliases: ["hellhound", "hellh"], | ||
}); |
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
Oops, something went wrong.