Interface HistoricalLeaderboardEntry

interface HistoricalLeaderboardEntry {
    _id: string;
    apm: number;
    bestrank?: string;
    country?: string;
    gamesplayed: number;
    gameswon: number;
    glicko: number;
    gxe: number;
    p: {
        pri: number;
        sec: number;
        ter: number;
    };
    placement: number;
    pps: number;
    rank: string;
    ranked: boolean;
    rd: number;
    season: string;
    tr: number;
    username: string;
    vs: number;
}

Properties

_id: string

The user's internal ID.

apm: number

This user's average APM (attack per minute) over the last 10 games in the season.

bestrank?: string

This user's highest achieved rank in the season.

country?: string

The country the user represented at the time.

gamesplayed: number

The amount of TETRA LEAGUE games played by this user.

gameswon: number

The amount of TETRA LEAGUE games won by this user.

glicko: number

This user's final Glicko-2 rating.

gxe: number

This user's final GLIXARE score (a % chance of beating an average player).

p: {
    pri: number;
    sec: number;
    ter: number;
}

The prisecter of this entry:

Type declaration

  • pri: number

    The primary sort key.

  • sec: number

    The secondary sort key.

  • ter: number

    The tertiary sort key.

placement: number

This user's final position in the season's global leaderboards.

pps: number

This user's average PPS (pieces per second) over the last 10 games in the season.

rank: string

This user's final letter rank. z is unranked.

ranked: boolean

Whether the user was ranked at the time of the season's end.

rd: number

This user's final Glicko-2 Rating Deviation.

season: string

The season ID.

tr: number

This user's final TR (Tetra Rating).

username: string

The username the user had at the time.

vs: number

This user's average VS (versus score) over the last 10 games in the season.