Skip to content

Commit 7ec3a7f

Browse files
committed
Fix AP amount for lesser 20+ tokens
1 parent e12c8b2 commit 7ec3a7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ArtifactPower.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ function e.BuildMapTable()
9090
DUNGEON_TABLE[map].apTier[3] = 325 -- 7-9
9191
DUNGEON_TABLE[map].apTier[4] = 465 -- 10-14
9292
DUNGEON_TABLE[map].apTier[5] = 725 -- 15-19
93-
DUNGEON_TABLE[map].apTier[6] = 1025 -- 20-25
94-
DUNGEON_TABLE[map].apBonus = 50 -- 10+
93+
DUNGEON_TABLE[map].apTier[6] = 975 -- 20-25 (What you actually end up with is one T5 token (147719: Lesser Master's Symbol), plus one token equal to Bonus*5 (147814: Lesser Expert's Bounty))
94+
DUNGEON_TABLE[map].apBonus = 50 -- 10+ (147808: Lesser Adept's Spoils)
9595
elseif runTime > 1440 and runTime < 2700 then
9696
DUNGEON_TABLE[map].apTier[1] = 300
9797
DUNGEON_TABLE[map].apTier[2] = 475

0 commit comments

Comments
 (0)