warframe-worldstate-parser
    Preparing search index...

    An object describing a type of reward, including name, description, test function to verify type from a string, thumbnail url, and color

    interface RewardType {
        color: number;
        description: string;
        name: string;
        test: (s: string) => boolean;
        thumbnail: string;
    }
    Index

    Properties

    color: number

    Summary color representing this reward type

    description: string

    Description of the reward type.

    name: string

    Name of the reward type.

    test: (s: string) => boolean

    Function for testing the reward type against a string.

    thumbnail: string

    Thumbnail url for the reward type.