From d1a0949c435e3b2c4b47fc9251a161bc2a9680cc Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Mon, 26 Aug 2024 19:13:42 -0700 Subject: [PATCH] Add Destiny Bond, remove `GroundedTag` and `ExposedTag` --- src/data/battler-tags.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index ec111e3426d..8c3a824f849 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -372,7 +372,7 @@ export class ConfusedTag extends BattlerTag { */ export class DestinyBondTag extends BattlerTag { constructor(sourceMove: Moves, sourceId: number) { - super(BattlerTagType.DESTINY_BOND, BattlerTagLapseType.PRE_MOVE, 1, sourceMove, sourceId); + super(BattlerTagType.DESTINY_BOND, BattlerTagLapseType.PRE_MOVE, 1, sourceMove, sourceId, true); } /** @@ -1605,7 +1605,7 @@ export class CursedTag extends BattlerTag { */ export class GroundedTag extends BattlerTag { constructor(tagType: BattlerTagType, lapseType: BattlerTagLapseType, sourceMove: Moves) { - super(tagType, lapseType, 1, sourceMove, undefined, true); + super(tagType, lapseType, 1, sourceMove); } } @@ -1804,7 +1804,7 @@ export class ExposedTag extends BattlerTag { private allowedTypes: Type[]; constructor(tagType: BattlerTagType, sourceMove: Moves, defenderType: Type, allowedTypes: Type[]) { - super(tagType, BattlerTagLapseType.CUSTOM, 1, sourceMove, undefined, true); + super(tagType, BattlerTagLapseType.CUSTOM, 1, sourceMove); this.defenderType = defenderType; this.allowedTypes = allowedTypes; }