Skip to content

Commit

Permalink
Fix crab table (#406)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwjgit authored Nov 14, 2024
1 parent 2d13d47 commit 7deb569
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/simulation/monsters/low/a-f/Crab.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import LootTable from "../../../../structures/LootTable";
import SimpleMonster from "../../../../structures/SimpleMonster";

const freshCrabTable = new LootTable().add("Fresh crab claw", 1, 1).add("Fresh crab shell", 1, 1);
const freshCrabTable = new LootTable().add("Fresh crab claw").add("Fresh crab shell");

export const CrabTable = new LootTable()
.every("Crab meat")
.tertiary(4, freshCrabTable)

.add(new LootTable(), 5, 1) // Nothing drop
.add(freshCrabTable, 4, 1)
.add(new LootTable(), 1, 9) // Nothing drop
.add("Oyster", 1, 1);

export default new SimpleMonster({
Expand Down

0 comments on commit 7deb569

Please sign in to comment.