yolkbot
    Preparing search index...

    Interface StampItem

    Represents a Stamp item

    interface StampItem {
        activeProduct?: boolean;
        category_name: "Stamps";
        exclusive_for_class: null;
        id: number;
        is_available: boolean;
        item_data: { tags?: string[]; x: number; y: number };
        item_type_id: Stamp;
        item_type_name: "Stamp";
        name: string;
        price: number;
        unlock: "default" | "purchase" | "physical" | "manual" | "premium" | "vip";
    }

    Hierarchy

    • BaseItem
      • StampItem
    Index

    Properties

    activeProduct?: boolean

    Indicates that the product is an active product (only present on "premium" unlock items)

    category_name: "Stamps"

    A more specific item "category" name

    exclusive_for_class: null

    Always null, as this is used for PrimaryGunItem

    id: number

    A unique item ID

    is_available: boolean

    Whether the item is available

    item_data: { tags?: string[]; x: number; y: number }

    Additional item data

    Type Declaration

    • Optionaltags?: string[]

      The tags the item has (used for search). Almost always present, but may not be in rare cases

    • x: number

      The X alignment of the stamp on the egg

    • y: number

      The Y alignment of the stamp on the egg

    item_type_id: Stamp

    The item type "ID"

    item_type_name: "Stamp"

    The item type "name"

    name: string

    The item name

    price: number

    The item price, in eggs. Default items are 0 and unavailable items are the 2147483647 (signed 32-bit integer limit)

    unlock: "default" | "purchase" | "physical" | "manual" | "premium" | "vip"

    How the item is unlocked