pokemon-showdown/data/mods/gen5/abilities.ts
Guangcong Luo 13189fdb02
Update Dex API (#8181)
This is the change that renames:

- `Dex.getMove` -> `Dex.moves.get`
- `Dex.getAbility` -> `Dex.abilities.get`
- `Dex.getItem` -> `Dex.items.get`
- `Dex.getSpecies` -> `Dex.species.get`
- `Dex.getEffect` -> `Dex.conditions.get`
- `Dex.getNature` -> `Dex.natures.get`
- `Dex.getType` -> `Dex.types.get`
- `Dex.getFormat` -> `Dex.formats.get`

In addition, some other APIs have been updated:

- `getByID` methods have also been added to every other table.
- `Dex.moves.all()` now gets an array of all moves
  - Plus equivalent methods for `abilities`, `items`, `species`, `formats`, `natures`, `types`
  - Note: there's no `Dex.conditions.all()`
- new API: `Dex.stats` for naming/iterating stats
- `Dex.getEffectByID` -> `Dex.conditions.getByID`
- `Dex.getType` -> `Dex.types.get`
- `Dex.data.Formats` -> `Dex.data.Rulesets`
- `Dex.formats` -> now an array `Dex.formats.all()`
- `Dex.getRuleTable` -> `Dex.formats.getRuleTable`
- `Dex.validateFormat` -> `Dex.formats.validate`

Team functions have been split off into a new `sim/teams` package:

- `Dex.packTeam` -> `Teams.pack`
- `Dex.fastUnpackTeam` -> `Teams.unpack`
- `Dex.generateTeam` -> `Teams.generate`
- `Dex.stringifyTeam` -> `Teams.export`

`Teams.export` has also been rewritten to better match how it works in client.

This implements #8178
2021-04-08 03:00:37 -07:00

77 lines
1.7 KiB
TypeScript

export const Abilities: {[k: string]: ModdedAbilityData} = {
anticipation: {
inherit: true,
onStart(pokemon) {
for (const target of pokemon.foes()) {
for (const moveSlot of target.moveSlots) {
const move = this.dex.moves.get(moveSlot.move);
if (move.category !== 'Status' && (
this.dex.getImmunity(move.type, pokemon) && this.dex.getEffectiveness(move.type, pokemon) > 0 ||
move.ohko
)) {
this.add('-ability', pokemon, 'Anticipation');
return;
}
}
}
},
},
frisk: {
inherit: true,
onStart(pokemon) {
const target = pokemon.side.randomFoe();
if (target?.item) {
this.add('-item', target, target.getItem().name, '[from] ability: Frisk', '[of] ' + pokemon);
}
},
},
infiltrator: {
inherit: true,
rating: 1.5,
},
keeneye: {
inherit: true,
onModifyMove() {},
},
oblivious: {
inherit: true,
onUpdate(pokemon) {
if (pokemon.volatiles['attract']) {
pokemon.removeVolatile('attract');
this.add('-end', pokemon, 'move: Attract', '[from] ability: Oblivious');
}
},
onTryHit(pokemon, target, move) {
if (move.id === 'captivate') {
this.add('-immune', pokemon, '[from] Oblivious');
return null;
}
},
rating: 0.5,
},
overcoat: {
inherit: true,
onTryHit() {},
rating: 0.5,
},
sapsipper: {
inherit: true,
onAllyTryHitSide() {},
},
serenegrace: {
inherit: true,
onModifyMove(move) {
if (move.secondaries && move.id !== 'secretpower') {
this.debug('doubling secondary chance');
for (const secondary of move.secondaries) {
if (secondary.chance) secondary.chance *= 2;
}
}
},
},
soundproof: {
inherit: true,
onAllyTryHitSide() {},
},
};