You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The result of this would be a move's accuracy being modified first (not in accordance with mainline or Plasto's wishes) and Hustle being considered afterwards. Which results in Pokerogue's accuracy Equation being like this:
Icicle Crash{85} + 3(Wide Lens{5}) x Hustle{0.8} = 80% or Tackle{100} + 3(Wide Lens{5}) x Hustle{0.8} = 80%
Whereas if Hustle is instead considered before Wide Lens, you end up with an equation like this
Icicle Crash{85} x Hustle{0.8} + 3(Wide Lens{5}) = 83% or Tackle{100} x Hustle{0.8} + 3(Wide Lens{5}] = 95%
Reproduction
Use Wide Lens on a Pokémon with Hustle and use physical moves.
Expected behavior
The way Wide Lens works in mainline is as a flat percentage of the calculated accuracy after abilities and move effects have been considered.
(Throat Chop{100%} x Hustle{80%} x Wide Lens{10%}) = 88% Chance to Hit
The Description of Wide Lens is not great and I think it could be improved if this is changed
"Increases move accuracy by 5 (maximum 100)"
it just feels like it's trying to imply too much, and changing it to apply after Hustle might make the description obsolete
The text was updated successfully, but these errors were encountered:
Describe the bug
A move Affected by both Hustle and Wide Lens has a much lower Accuracy rate than it should
Link to Discord's Bug Report (Hustle not working with wide lens)
https://discord.com/channels/1125469663833370665/1309735047258968165
In Pokerogue, Wide Lens modifies moveAccuracy (the base accuracy of a single move)
pokerogue/src/modifier/modifier.ts
Line 2660 in 6442b83
Hustle seems to target the Accuracy Stat instead
https://github.com/pagefaultgames/pokerogue/blob/6442b8345ff2f5860610f521a48704627b445fce/src/data/ability.ts#L5497C2-L5499C117
The result of this would be a move's accuracy being modified first (not in accordance with mainline or Plasto's wishes) and Hustle being considered afterwards. Which results in Pokerogue's accuracy Equation being like this:
Icicle Crash{85} + 3(Wide Lens{5}) x Hustle{0.8} = 80% or Tackle{100} + 3(Wide Lens{5}) x Hustle{0.8} = 80%
Whereas if Hustle is instead considered before Wide Lens, you end up with an equation like this
Icicle Crash{85} x Hustle{0.8} + 3(Wide Lens{5}) = 83% or Tackle{100} x Hustle{0.8} + 3(Wide Lens{5}] = 95%
Reproduction
Use Wide Lens on a Pokémon with Hustle and use physical moves.
Expected behavior
The way Wide Lens works in mainline is as a flat percentage of the calculated accuracy after abilities and move effects have been considered.
(Throat Chop{100%} x Hustle{80%} x Wide Lens{10%}) = 88% Chance to Hit
Balance Team member Plasto suggests that Hustle and Wide Lens should interact in Pokerogue
https://discord.com/channels/1125469663833370665/1260369966314688602/1309750190273466509
Screenshots / Videos
No response
Session export file
No response
User data export file
No response
Additional context
The Description of Wide Lens is not great and I think it could be improved if this is changed
"Increases move accuracy by 5 (maximum 100)"
it just feels like it's trying to imply too much, and changing it to apply after Hustle might make the description obsolete
The text was updated successfully, but these errors were encountered: