Supamiu / Lostark-helper

A set of helper tools for Lost Ark
37 stars 41 forks source link

fix gearset ilvl calculations for ancient gear over 20 honing level #92

Closed Skaitavia closed 1 year ago

Skaitavia commented 1 year ago

Noticed this bug when testing it out on live site. The issue:

When selecting honing levels for ancient gear above 20, the calculation was off because it was still doing the bonus ilvl calculations by 10 instead of 5, as ancient gear goes up by 5 ilvls per hone after 20 instead of 10 between 6-20.

Updated the math for ancient gear to calculate depending on the honing level of the item. If it's below or equal to 20, it will do the multiplication by 10. If it's above 20, it will do the multiplication by 5 and then add 100 for the first 20 levels. The total bonus is then added together to give the accurate ilvl of the gear piece.

This will need additional changes when Akkan gear comes out and GearsetRarity.UPPER_ANCIENT is added.