interface TokenMovementHistoryData {
    cost: number;
    diagonals: number;
    distance: number;
    recorded: TokenMovementSectionData;
    spaces: number;
    unrecorded: TokenMovementSectionData;
}

Properties

cost: number

The cost of the combined movement path

diagonals: number

The number of diagonals moved along the combined path

distance: number

The distance of the combined movement path

The recorded waypoints of the movement path

spaces: number

The number of spaces moved along the combined path

The unrecored waypoints of the movement path