Type alias Bee

Bee: {
    author: string;
    branch: string;
    color: {
        primary: string;
        secondary: string;
    };
    description?: string | {
        author: string;
        text: string;
    };
    dominant?: boolean;
    drops?: {
        regular?: Stack[];
        special?: Stack[];
    };
    glowing?: boolean;
    humidity?: string;
    latin: string;
    name: string;
    nocturnal?: boolean;
    secret?: boolean;
    temperature?: string;
    traits: Traits;
}

Type declaration

  • author: string

    Truncated at 7 characters or more

  • branch: string
  • color: {
        primary: string;
        secondary: string;
    }
    • primary: string
    • secondary: string
  • Optional description?: string | {
        author: string;
        text: string;
    }
  • Optional dominant?: boolean
  • Optional drops?: {
        regular?: Stack[];
        special?: Stack[];
    }
    • Optional regular?: Stack[]
    • Optional special?: Stack[]
  • Optional glowing?: boolean
  • Optional humidity?: string
  • latin: string
  • name: string
  • Optional nocturnal?: boolean
  • Optional secret?: boolean
  • Optional temperature?: string
  • traits: Traits

Generated using TypeDoc