/** * Base Item class */ export class Item { constructor(id, name, type = 'consumable') { this.id = id; this.name = name; this.type = type; // 'consumable', 'weapon', 'armor', 'accessory' this.description = ''; this.value = 0; } }