From 40207fdbe83bc177b628f1fcfb669c60d506585d Mon Sep 17 00:00:00 2001 From: Xavion3 Date: Mon, 6 May 2024 09:50:14 +1000 Subject: [PATCH] Add missing values for type boost tag. --- src/data/battler-tags.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/battler-tags.ts b/src/data/battler-tags.ts index 34a2e7b4881..14175f536b6 100644 --- a/src/data/battler-tags.ts +++ b/src/data/battler-tags.ts @@ -1071,6 +1071,8 @@ export class TypeBoostTag extends BattlerTag { loadTag(source: BattlerTag | any): void { super.loadTag(source); this.boostedType = source.boostedType as Type; + this.boostValue = source.boostValue; + this.oneUse = source.oneUse; } lapse(pokemon: Pokemon, lapseType: BattlerTagLapseType): boolean {