@pkmn/sim 0.9.6 → 0.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4440,6 +4440,11 @@ export const Abilities = {
4440
4440
  onStart(target) {
4441
4441
  this.add('-start', target, 'ability: Slow Start');
4442
4442
  },
4443
+ onResidual(pokemon) {
4444
+ if (!pokemon.activeTurns) {
4445
+ this.effectState.duration += 1;
4446
+ }
4447
+ },
4443
4448
  onModifyAtkPriority: 5,
4444
4449
  onModifyAtk(atk, pokemon) {
4445
4450
  return this.chainModify(0.5);