diff --git a/src/phases.ts b/src/phases.ts index 263a1673671..fa053054748 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -4576,6 +4576,10 @@ export class LevelUpPhase extends PlayerPartyMemberPokemonPhase { this.scene.unshiftPhase(new EvolutionPhase(this.scene, pokemon as PlayerPokemon, evolution, this.lastLevel)); } } + + if (pokemon.getTag(BattlerTagType.POWER_TRICK)) { + [pokemon.stats[Stat.ATK], pokemon.stats[Stat.DEF]] = [pokemon.stats[Stat.DEF], pokemon.stats[Stat.ATK]]; + } } }