Strata - v1.4.10
    Preparing search index...

    Interface InventoryItem

    interface InventoryItem {
        equipped?: boolean;
        id: string;
        metadata?: Record<string, unknown>;
        name: string;
        quantity: number;
        type: "key" | "quest" | "weapon" | "armor" | "consumable" | "misc";
    }
    Index

    Properties

    equipped?: boolean
    id: string
    metadata?: Record<string, unknown>
    name: string
    quantity: number
    type: "key" | "quest" | "weapon" | "armor" | "consumable" | "misc"