From 0c12f2a79cfb1f024c8c971085b8960c758de750 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Tue, 27 May 2025 09:37:20 -0400 Subject: [PATCH] Update ability-class.ts comments --- src/data/abilities/ability-class.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/data/abilities/ability-class.ts b/src/data/abilities/ability-class.ts index 8a284bac264..282276b7906 100644 --- a/src/data/abilities/ability-class.ts +++ b/src/data/abilities/ability-class.ts @@ -119,7 +119,7 @@ export class Ability implements Localizable { /** * Mark an ability as partially implemented. - * Partial abilities are expected to have their core functionality implemented, but may lack + * Partial abilities are expected to have some of their core functionality implemented, but may lack * certain notable features or interactions with other moves or abilities. * @returns `this` */ @@ -139,9 +139,11 @@ export class Ability implements Localizable { } /** - * Mark an ability as having an edge case. + * Mark an ability as having one or more edge cases. + * It may lack certain niche interactions with other moves/abilities, but still functions + * as intended in most cases. * Does not show up in game and is solely for internal dev use. - + * * When using this, make sure to **document the edge case** (or else this becomes pointless). * @returns `this` */