mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-07-18 06:12:19 +02:00
Update docs
This commit is contained in:
parent
678c0de2ec
commit
9cc3e98d59
@ -256,7 +256,8 @@ export class ConfusedTag extends BattlerTag {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Tag applied to the {@linkcode Move.DESTINY_BOND} user.
|
* Tag applied to the {@linkcode Move.DESTINY_BOND} user.
|
||||||
* See {@linkcode apply}
|
* @extends BattlerTag
|
||||||
|
* @see {@linkcode apply}
|
||||||
*/
|
*/
|
||||||
export class DestinyBondTag extends BattlerTag {
|
export class DestinyBondTag extends BattlerTag {
|
||||||
constructor(sourceMove: Moves, sourceId: integer) {
|
constructor(sourceMove: Moves, sourceId: integer) {
|
||||||
@ -264,7 +265,6 @@ export class DestinyBondTag extends BattlerTag {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Destiny bond tag.
|
|
||||||
* Lapses either before the user's move and does nothing
|
* Lapses either before the user's move and does nothing
|
||||||
* or after receiving fatal damage. When the damage is fatal,
|
* or after receiving fatal damage. When the damage is fatal,
|
||||||
* the attacking Pokemon is taken down as well, unless it's a boss.
|
* the attacking Pokemon is taken down as well, unless it's a boss.
|
||||||
|
@ -4250,6 +4250,11 @@ export class MoneyAttr extends MoveEffectAttr {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Applies {@linkcode BattlerTagType.DESTINY_BOND} to the user.
|
||||||
|
*
|
||||||
|
* @extends MoveEffectAttr
|
||||||
|
*/
|
||||||
export class DestinyBondAttr extends MoveEffectAttr {
|
export class DestinyBondAttr extends MoveEffectAttr {
|
||||||
constructor() {
|
constructor() {
|
||||||
super(true, MoveEffectTrigger.PRE_APPLY);
|
super(true, MoveEffectTrigger.PRE_APPLY);
|
||||||
@ -4257,9 +4262,9 @@ export class DestinyBondAttr extends MoveEffectAttr {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Applies {@linkcode BattlerTagType.DESTINY_BOND} to the user.
|
* Applies {@linkcode BattlerTagType.DESTINY_BOND} to the user.
|
||||||
* @param {Pokemon} user User that is having the tag applied to.
|
* @param user {@linkcode Pokemon} that is having the tag applied to.
|
||||||
* @param {Pokemon} target N/A
|
* @param target {@linkcode Pokemon} N/A
|
||||||
* @param {Move} move {@linkcode Move.DESTINY_BOND}
|
* @param move {@linkcode Move} {@linkcode Move.DESTINY_BOND}
|
||||||
* @param {any[]} args N/A
|
* @param {any[]} args N/A
|
||||||
* @returns true
|
* @returns true
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user