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 {