mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-03 00:19:45 +01:00
fix inaccurate docs for TypeImmunityAbAttr (#2957)
This commit is contained in:
parent
ffbc922e09
commit
ff1fa15dba
@ -361,13 +361,13 @@ export class TypeImmunityAbAttr extends PreDefendAbAttr {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Applies immunity if this ability grants immunity to the type of the given move.
|
* Applies immunity if this ability grants immunity to the type of the given move.
|
||||||
* @param pokemon {@linkcode Pokemon} the defending Pokemon
|
* @param pokemon {@linkcode Pokemon} The defending Pokemon.
|
||||||
* @param passive N/A
|
* @param passive - Whether the ability is passive.
|
||||||
* @param attacker {@linkcode Pokemon} the attacking Pokemon
|
* @param attacker {@linkcode Pokemon} The attacking Pokemon.
|
||||||
* @param move {@linkcode Move} the attacking move
|
* @param move {@linkcode Move} The attacking move.
|
||||||
* @param cancelled N/A
|
* @param cancelled {@linkcode Utils.BooleanHolder} - A holder for a boolean value indicating if the move was cancelled.
|
||||||
* @param args [0] {@linkcode Utils.NumberHolder} gets set to 0 if move is immuned by an ability.
|
* @param args [0] {@linkcode Utils.NumberHolder} gets set to 0 if move is immuned by an ability.
|
||||||
* @param args [1] {@linkcode Utils.NumberHolder} type of move being defended against in case it has changed from default type
|
* @param args [1] - Whether the move is simulated.
|
||||||
*/
|
*/
|
||||||
applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean {
|
applyPreDefend(pokemon: Pokemon, passive: boolean, attacker: Pokemon, move: Move, cancelled: Utils.BooleanHolder, args: any[]): boolean {
|
||||||
// Field moves should ignore immunity
|
// Field moves should ignore immunity
|
||||||
|
Loading…
x
Reference in New Issue
Block a user