We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfa7ff2 commit 5cb8c6eCopy full SHA for 5cb8c6e
data/moves.js
@@ -14362,7 +14362,6 @@ let BattleMovedex = {
14362
priority: 0,
14363
flags: {authentic: 1, mystery: 1},
14364
onHit(target, source) {
14365
- if (target.volatiles['maxguard']) return false;
14366
for (let i in target.boosts) {
14367
// @ts-ignore
14368
source.boosts[i] = target.boosts[i];
@@ -20089,7 +20088,7 @@ let BattleMovedex = {
20089
20088
20090
flags: {mystery: 1},
20091
onHit(target, pokemon) {
20092
- if (target.volatiles['maxguard'] || !pokemon.transformInto(target)) {
+ if (!pokemon.transformInto(target)) {
20093
return false;
20094
}
20095
},
0 commit comments