@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.
@@ -4443,6 +4443,11 @@ exports.Abilities = {
4443
4443
  onStart(target) {
4444
4444
  this.add('-start', target, 'ability: Slow Start');
4445
4445
  },
4446
+ onResidual(pokemon) {
4447
+ if (!pokemon.activeTurns) {
4448
+ this.effectState.duration += 1;
4449
+ }
4450
+ },
4446
4451
  onModifyAtkPriority: 5,
4447
4452
  onModifyAtk(atk, pokemon) {
4448
4453
  return this.chainModify(0.5);