From ee759e0b44113dde7c85038f7dbf4ae5e0de1d5e Mon Sep 17 00:00:00 2001 From: shayebeadlingkl Date: Wed, 8 May 2024 17:51:00 -0400 Subject: [PATCH] comment formatting improvement --- src/data/move.ts | 10 +++++----- src/phases.ts | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/data/move.ts b/src/data/move.ts index b4dfcb8e850..0dc1ea110bf 100644 --- a/src/data/move.ts +++ b/src/data/move.ts @@ -833,11 +833,11 @@ export class HealAttr extends MoveEffectAttr { } } - /** - * Cures the user's party of non-volatile status conditions, ie. Heal Bell, Aromatherapy - * @param {string} message Message to display after using move - * @param {Abilities} abilityCondition Skips mons with this ability, ie. Soundproof - */ +/** + * Cures the user's party of non-volatile status conditions, ie. Heal Bell, Aromatherapy + * @param {string} message Message to display after using move + * @param {Abilities} abilityCondition Skips mons with this ability, ie. Soundproof + */ export class PartyStatusCureAttr extends MoveEffectAttr { private message: string; private abilityCondition: Abilities; diff --git a/src/phases.ts b/src/phases.ts index 6535d5600e1..a339abdbea6 100644 --- a/src/phases.ts +++ b/src/phases.ts @@ -4537,9 +4537,9 @@ export class AddEnemyBuffModifierPhase extends Phase { /** * Cures the party of all non-volatile status conditions, shows a message * @param {BattleScene} scene The current scene - * * @param {Pokemon} user The user of the move that cures the party - * * @param {string} message The message that should be displayed - * * @param {Abilities} abilityCondition Pokemon with this ability will not be affected ie. Soundproof + * @param {Pokemon} user The user of the move that cures the party + * @param {string} message The message that should be displayed + * @param {Abilities} abilityCondition Pokemon with this ability will not be affected ie. Soundproof */ export class PartyStatusCurePhase extends BattlePhase { private user: Pokemon;