interface TurnMove {
    move: Moves;
    result: MoveResult;
    targets?: BattlerIndex[];
    turn?: number;
    virtual?: boolean;
}

Properties

move: Moves
result: MoveResult
targets?: BattlerIndex[]
turn?: number
virtual?: boolean