Restore RechargingTag docs

This commit is contained in:
Zach Day 2024-08-09 19:08:49 -04:00
parent 4d89b76d34
commit 00d3c76008

View File

@ -183,6 +183,9 @@ export class DisabledTag extends DisablingBattlerTag {
}
}
/**
* BattlerTag that represents the "recharge" effects of moves like Hyper Beam.
*/
export class RechargingTag extends BattlerTag {
constructor(sourceMove: Moves) {
super(BattlerTagType.RECHARGING, [ BattlerTagLapseType.PRE_MOVE, BattlerTagLapseType.TURN_END ], 2, sourceMove);