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

Crystal shard rates buffs #393

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/simulation/misc/Gauntlet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const StandardInnerTable = new LootTable()
.add("Coins", [20_000, 80_000]);

const StandardTable = new LootTable()
.every("Crystal shard", [3, 7])
.every("Crystal shard", [5, 9])
.every(StandardInnerTable, 2)
.tertiary(25, "Clue scroll (elite)")
.tertiary(120, "Crystal weapon seed")
Expand Down Expand Up @@ -104,7 +104,7 @@ const CorruptedInnerTable = new LootTable()

const CorruptedTable = new LootTable()
// Gauntlet cape is given manually in OSB
.every("Crystal shard", [5, 9])
.every("Crystal shard", [7, 12])
.every(CorruptedInnerTable, 3)
.tertiary(20, "Clue scroll (elite)")
.tertiary(50, "Crystal weapon seed")
Expand Down
8 changes: 4 additions & 4 deletions src/simulation/openables/ElvenCrystalChest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const coinsKeyHalfTable = new LootTable()
/* Rune armor roll */
const runeArmorTable = new LootTable()
.every("Uncut dragonstone")
.every("Crystal shard", [4, 6])
.every("Crystal shard", [7, 9])
.add("Rune platelegs", 1, 1)
.add("Rune plateskirt", 1, 1);

Expand Down Expand Up @@ -56,15 +56,15 @@ const ElvenCrystalChestTable = new LootTable()
itemTupleToTable([
["Uncut dragonstone", 1],
["Coins", [30_000, 50_000]],
["Crystal shard", [8, 13]],
["Crystal shard", [13, 19]],
]),
1,
20,
)
.add(
itemTupleToTable([
["Uncut dragonstone", 1],
["Crystal shard", [20, 30]],
["Crystal shard", [25, 35]],
]),
1,
17,
Expand Down Expand Up @@ -117,7 +117,7 @@ const ElvenCrystalChestTable = new LootTable()
.add(
itemTupleToTable([
["Uncut dragonstone", 1],
["Crystal acorn", [1, 2]],
["Crystal acorn", [4, 6]],
]),
1,
7,
Expand Down
2 changes: 1 addition & 1 deletion src/simulation/openables/Implings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ export const CrystalImpling = new SimpleOpenable({
table: new LootTable()
.add("Amulet of power", [5, 7])
.add("Crystal acorn")
.add("Crystal shard", [5, 10])
.add("Crystal shard", [30, 40])
.add("Dragonstone amulet")
.add("Dragonstone", 2)
.add("Ruby bolt tips", [50, 125])
Expand Down