From 43e617aac976a340a5dec721be5809a773019657 Mon Sep 17 00:00:00 2001 From: shayebeadlingkl Date: Wed, 8 May 2024 10:05:45 -0400 Subject: [PATCH] adds comment header for PostTurnResetStatusAbAttr --- src/data/ability.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/data/ability.ts b/src/data/ability.ts index b2c177f4a17..76cddff451c 100644 --- a/src/data/ability.ts +++ b/src/data/ability.ts @@ -2016,6 +2016,10 @@ export class PostTurnAbAttr extends AbAttr { } } +/** + * After the turn ends, resets the status of either the ability holder or their ally + * @param {boolean} allyTarget Whether to target ally, defaults to false (self-target) + */ export class PostTurnResetStatusAbAttr extends PostTurnAbAttr { private allyTarget: boolean; private target: Pokemon;