import type { ResourceInteraction } from './types'; import type { StatModifier } from '../Effects/types'; export interface SetBonus { resourceInteraction?: Partial; passiveEffects?: string[]; statModifiers?: StatModifier[]; } export interface ItemSet { id: string; name: string; description: string; memberTemplateIds: string[]; bonuses: Partial>; } //# sourceMappingURL=set.types.d.ts.map