yolkbot
    Preparing search index...

    Interface AccountChallenge

    The Challenge that is in Challenges.list

    interface AccountChallenge {
        desc: string;
        goalNum: number;
        id: number;
        isClaimed: boolean;
        isCompleted: boolean;
        isRerolled: boolean;
        name: string;
        progressNum: number;
        raw: RawChallenge;
        rewardEggs: number;
    }
    Index

    Properties

    desc: string

    The challenges "description" (actually explains the challenge)

    goalNum: number

    A number indicating the "goal" (see AccountChallenge.progressNum)

    id: number

    The challenge's ID

    isClaimed: boolean

    If this challenge slot has been claimed

    isCompleted: boolean

    If this challenge slot has been completed

    isRerolled: boolean

    If this challenge slot has been rerolled already and cannot be rerolled again

    name: string

    The challenge's "name" (playful and does not explain challenge)

    progressNum: number

    A number indicating "progress". In a challenge with kills, this would be the number of kills so far. Varies heavily depending on challenge type.

    The raw challenge as sent by the server. Challenges does a bit behind the scenes to "clean up" the challenge and make information on it a bit easier to understand.

    rewardEggs: number

    The number of eggs rewarded when the challenge is completed & claimed