// ─── Enchanter Special Disciplines ───────────────────────────────────────────── // Disciplines for unlocking unique and powerful special enchantment effects import type { DisciplineDefinition } from '../../types/disciplines'; export const enchanterSpecialDisciplines: DisciplineDefinition[] = [ { id: 'study-special-enchantments', name: 'Study Special Enchantments', attunement: 'enchanter', manaType: 'death', baseCost: 22, description: 'Learn to enchant equipment with unique and powerful effects.', statBonus: { stat: 'enchantPower', baseValue: 5 }, difficultyFactor: 220, scalingFactor: 130, drainBase: 4, requires: ['study-advanced-weapon-enchantments'], perks: [ { id: 'special-spell-echo', type: 'once', threshold: 100, value: 0, description: 'Unlock Echo Chamber enchantment', unlocksEffects: ['spell_echo_10'], }, { id: 'special-guardian-dmg', type: 'once', threshold: 80, value: 0, description: 'Unlock Bane enchantment', unlocksEffects: ['guardian_dmg_10'], }, { id: 'special-overpower', type: 'once', threshold: 150, value: 0, description: 'Unlock Overpower enchantment', unlocksEffects: ['overpower_80'], }, { id: 'special-first-strike', type: 'once', threshold: 120, value: 0, description: 'Unlock First Strike enchantment', unlocksEffects: ['first_strike'], }, { id: 'special-combo-master', type: 'once', threshold: 200, value: 0, description: 'Unlock Combo Master enchantment', unlocksEffects: ['combo_master'], }, { id: 'special-adrenaline-rush', type: 'once', threshold: 180, value: 0, description: 'Unlock Adrenaline Rush enchantment', unlocksEffects: ['adrenaline_rush'], }, ], }, ];