Skip to content

Commit

Permalink
Add Wealthy Citizens (#402)
Browse files Browse the repository at this point in the history
  • Loading branch information
DayV-git authored Nov 14, 2024
1 parent 7deb569 commit 9949c53
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dist/types/simulation/monsters/low/t-z/WealthyCitizen.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import SimpleMonster from "../../../../structures/SimpleMonster";
declare const _default: SimpleMonster;
export default _default;
//# sourceMappingURL=WealthyCitizen.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/simulation/monsters/low/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ import WallBeast from "./t-z/WallBeast";
import WarpedJelly from "./t-z/WarpedJelly";
import WarriorWoman from "./t-z/WarriorWoman";
import Waterfiend from "./t-z/Waterfiend";
import WealthyCitizen from "./t-z/WealthyCitizen";
import Werewolf from "./t-z/Werewolf";
import WhiteWolf from "./t-z/WhiteWolf";
import WildDog from "./t-z/WildDog";
Expand Down Expand Up @@ -540,4 +541,5 @@ export const allLowMonsters = {
TormentedDemon,
ArmouredZombie,
Crab,
WealthyCitizen,
};
12 changes: 12 additions & 0 deletions src/simulation/monsters/low/t-z/WealthyCitizen.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import LootTable from "../../../../structures/LootTable";
import SimpleMonster from "../../../../structures/SimpleMonster";

export default new SimpleMonster({
id: 13302,
name: "Wealthy Citizen",
pickpocketTable: new LootTable({ limit: 85 })
.add("Coins", 85, 79)
.add("House keys", 1, 5)
.add("Clue Scroll (Easy)", 1, 1),
aliases: ["wealthy citizen", "wealthy", "citizen", "varlamore citizen"],
});

0 comments on commit 9949c53

Please sign in to comment.