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 Wealthy Citizens #402

Merged
merged 12 commits into from
Nov 14, 2024
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"],
});