PokéRogue
    Preparing search index...

    Battler Tag that keeps track of how many times the user has Autotomized Each count of Autotomization reduces the weight by 100kg

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    "#isBatonPassable": boolean = false
    "#lapseTypes": readonly [BattlerTagLapseType, BattlerTagLapseType]
    autotomizeCount: number = 0
    sourceId?: number

    The PID of the Pokemon that added this tag, or undefined if not set by a Pokemon.

    sourceMove?: MoveId

    The MoveId that created this tag, or undefined if not set by a move.

    tagType: AUTOTOMIZED = BattlerTagType.AUTOTOMIZED
    turnCount: number

    The tag's remaining duration.

    Accessors

    Methods

    • Load the data for a given BattlerTag or JSON representation thereof. Should be inherited from by any battler tag with custom attributes.

      Parameters

      • source: BaseBattlerTag & Pick<AutotomizedTag, "tagType" | "autotomizeCount">

        An object containing the fields needed to reconstruct this tag

      Returns void