This commit is contained in:
André Bastos Dias 2026-04-26 21:41:58 +05:00 committed by GitHub
commit 9998797d48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1922,10 +1922,10 @@ export class BattleTooltips {
if (this.battle.hasPseudoWeather('Psychic Terrain') && target.isGrounded() && priority > 0) {
otherFactor = 0;
}
if (this.battle.weather === 'primordialsea' && attackType === 'Fire') {
if (this.battle.weather === 'primordialsea' && attackType === 'Fire' && move.category !== 'Status') {
otherFactor = 0;
}
if (this.battle.weather === 'desolateland' && attackType === 'Water') {
if (this.battle.weather === 'desolateland' && attackType === 'Water' && move.category !== 'Status') {
otherFactor = 0;
}