mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-18 19:28:35 -05:00
- `Modded[Effect]Data` are now correctly defined: they must either have `inherit: true` and be partial, or not have `inherit: true` and be a complete `[Effect]Data` entry - `id` is no longer allowed; instead, it's calculated directly from `toID(name)`. The one exception, Hidden Power, gets a `realMove` property to track this (it's still used to set `.id`, though; TODO: really fix it properly). - `num` is still required in `data/pokedex.ts` (dex number), `data/moves.ts` (move index number, for Metronome), and `data/items.ts` (minisprite sprite-sheet location). It's still not required for mod-only items and moves. - `num` is no longer allowed for PureEffects (in `statuses.ts`) where it's always been meaningless. - `color` and `heightm`, being completely flavor, are still not required for `pokedex.ts` in mods. They're still required in the base pokedex.
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
export const BattleStatuses: {[k: string]: ModdedPureEffectData} = {
|
|
par: {
|
|
inherit: true,
|
|
onBeforeMove(pokemon) {
|
|
if (!pokemon.hasAbility('magicguard') && this.randomChance(1, 4)) {
|
|
this.add('cant', pokemon, 'par');
|
|
return false;
|
|
}
|
|
},
|
|
},
|
|
slp: {
|
|
name: 'slp',
|
|
effectType: 'Status',
|
|
onStart(target, source, sourceEffect) {
|
|
if (sourceEffect && sourceEffect.effectType === 'Move') {
|
|
this.add('-status', target, 'slp', '[from] move: ' + sourceEffect.name);
|
|
} else {
|
|
this.add('-status', target, 'slp');
|
|
}
|
|
// 1-4 turns
|
|
this.effectData.time = this.random(2, 6);
|
|
},
|
|
onBeforeMovePriority: 10,
|
|
onBeforeMove(pokemon, target, move) {
|
|
if (pokemon.hasAbility('earlybird')) {
|
|
pokemon.statusData.time--;
|
|
}
|
|
pokemon.statusData.time--;
|
|
if (pokemon.statusData.time <= 0) {
|
|
pokemon.cureStatus();
|
|
return;
|
|
}
|
|
this.add('cant', pokemon, 'slp');
|
|
if (move.sleepUsable) {
|
|
return;
|
|
}
|
|
return false;
|
|
},
|
|
},
|
|
frz: {
|
|
inherit: true,
|
|
onBeforeMove(pokemon, target, move) {
|
|
if (this.randomChance(1, 5)) {
|
|
pokemon.cureStatus();
|
|
return;
|
|
}
|
|
if (move.flags['defrost']) return;
|
|
this.add('cant', pokemon, 'frz');
|
|
return false;
|
|
},
|
|
},
|
|
substitutebroken: {
|
|
noCopy: true,
|
|
},
|
|
trapped: {
|
|
inherit: true,
|
|
noCopy: false,
|
|
},
|
|
trapper: {
|
|
inherit: true,
|
|
noCopy: false,
|
|
},
|
|
partiallytrapped: {
|
|
inherit: true,
|
|
durationCallback(target, source) {
|
|
if (source.hasItem('gripclaw')) return 6;
|
|
return this.random(3, 7);
|
|
},
|
|
},
|
|
stall: {
|
|
// In gen 3-4, the chance of protect succeeding does not fall below 1/8.
|
|
// See http://upokecenter.dreamhosters.com/dex/?lang=en&move=182
|
|
inherit: true,
|
|
counterMax: 8,
|
|
},
|
|
};
|