Skip to content

Commit

Permalink
Fix Tera Shell
Browse files Browse the repository at this point in the history
  • Loading branch information
andrebastosdias committed Feb 13, 2025
1 parent 6520ac5 commit fff64a8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions data/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4860,12 +4860,8 @@ export const Abilities: import('../sim/dex-abilities').AbilityDataTable = {
},
terashell: {
// effectiveness implemented in sim/pokemon.ts:Pokemon#runEffectiveness
onAnyAfterMove() {
this.effectState.resisted = false;
},
onBeforeTurn() {
// reset if hit by Future attack
this.effectState.resisted = false;
onAnyBeforeMove() {
delete this.effectState.resisted;
},
flags: {failroleplay: 1, noreceiver: 1, noentrain: 1, notrace: 1, failskillswap: 1, breakable: 1},
name: "Tera Shell",
Expand Down

0 comments on commit fff64a8

Please sign in to comment.