[Misc] Set default for crit stage battler tag (#6192)

Set default for crit stage
This commit is contained in:
Sirz Benjie 2025-08-01 12:59:53 -06:00 committed by GitHub
parent e50ebaa815
commit c6ca35c4ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2320,7 +2320,7 @@ export class TypeBoostTag extends SerializableBattlerTag {
export class CritBoostTag extends SerializableBattlerTag {
public declare readonly tagType: CritStageBoostTagType;
/** The number of stages boosted by this tag */
public readonly critStages: number;
public readonly critStages: number = 1;
constructor(tagType: CritStageBoostTagType, sourceMove: MoveId) {
super(tagType, BattlerTagLapseType.TURN_END, 1, sourceMove, undefined, true);