Set default for crit stage

This commit is contained in:
Sirz Benjie 2025-08-01 12:58:51 -06:00
parent e50ebaa815
commit 4abb480dcf
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

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);