// ─── Hands Equipment Types ───────────────────────────────────────── import type { EquipmentType } from './types'; export const HANDS_EQUIPMENT: Record = { // ─── Hands ─────────────────────────────────────────────────────── civilianGloves: { id: 'civilianGloves', name: 'Civilian Gloves', category: 'hands', slot: 'hands', baseCapacity: 20, description: 'Simple cloth gloves. Minimal magical capacity.', }, apprenticeGloves: { id: 'apprenticeGloves', name: 'Apprentice Gloves', category: 'hands', slot: 'hands', baseCapacity: 30, description: 'Basic gloves for handling magical components.', }, spellweaveGloves: { id: 'spellweaveGloves', name: 'Spellweave Gloves', category: 'hands', slot: 'hands', baseCapacity: 40, description: 'Gloves woven with mana-conductive threads.', }, combatGauntlets: { id: 'combatGauntlets', name: 'Combat Gauntlets', category: 'hands', slot: 'hands', baseCapacity: 35, description: 'Armored gauntlets for battle mages.', }, };