Update src/data/ability.ts

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
This commit is contained in:
Sirz Benjie 2025-01-30 18:38:24 -06:00
parent 4f95bd6de2
commit 1934b7cf14
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -5610,13 +5610,13 @@ export function applyStatMultiplierAbAttrs(
/** /**
* Applies an ally's Stat multiplier attribute * Applies an ally's Stat multiplier attribute
* @param attrType {@linkcode AllyStatMultiplierAbAttr} should always be AllyStatMultiplierAbAttr for the time being * @param attrType - {@linkcode AllyStatMultiplierAbAttr} should always be AllyStatMultiplierAbAttr for the time being
* @param pokemon {@linkcode Pokemon} the pokemon with the ability * @param pokemon - The {@linkcode Pokemon} with the ability
* @param stat {@linkcode Stat} the type of the checked stat * @param stat - The type of the checked {@linkcode Stat}
* @param statValue {@linkcode Utils.NumberHolder} the value of the checked stat * @param statValue - {@linkcode Utils.NumberHolder} containing the value of the checked stat
* @param checkedPokemon {@linkcode Pokemon} the Pokemon with the checked stat * @param checkedPokemon - The {@linkcode Pokemon} with the checked stat
* @param ignore {@linkcode boolean} Whether or not the ability should be ignored by the pokemon or its move. * @param ignoreAbility - Whether or not the ability should be ignored by the pokemon or its move.
* @param args unused * @param args - unused
*/ */
export function applyAllyStatMultiplierAbAttrs(attrType: Constructor<AllyStatMultiplierAbAttr>, export function applyAllyStatMultiplierAbAttrs(attrType: Constructor<AllyStatMultiplierAbAttr>,
pokemon: Pokemon, stat: BattleStat, statValue: Utils.NumberHolder, simulated: boolean = false, checkedPokemon, ignore, ...args: any[]): void { pokemon: Pokemon, stat: BattleStat, statValue: Utils.NumberHolder, simulated: boolean = false, checkedPokemon, ignore, ...args: any[]): void {