Interface WishedItem

interface WishedItem {
    abstractType?: string;
    error?: string;
    icon: string;
    name: string;
    price: number;
    rarity?: Rarity;
    type: Type;
}

Properties

abstractType?: string

Subtitle of a market item under its name or tooltip content of a mall item in the mall menu

error?: string

Latest error received from Eldarya.

icon: string
name: string
price: number
rarity?: Rarity
type: Type