22 lines
553 B
TypeScript
22 lines
553 B
TypeScript
import type { DisciplineDefinition } from '../../types/disciplines';
|
|
|
|
const invokerDisciplines: DisciplineDefinition[] = [
|
|
{
|
|
name: 'Lightning Surge',
|
|
attunement: 'invoker',
|
|
manaType: 'lightning',
|
|
baseCost: 30,
|
|
description: 'Boost lightning spell damage',
|
|
thresholds: { xp: 150, interval: 75 }
|
|
},
|
|
{
|
|
name: 'Void Echo',
|
|
attunement: 'invoker',
|
|
manaType: 'void',
|
|
baseCost: 35,
|
|
description: 'Increase void spell cast speed',
|
|
thresholds: { xp: 180, interval: 90 }
|
|
}
|
|
];
|
|
export default invokerDisciplines;
|