Files
Mana-Loop/src/lib/game/data/disciplines/invoker-disciplines.ts
T
n8n-gitea e462bfcc13
Build and Publish Mana Loop Docker Image / build-and-publish (push) Failing after 31s
feat: implement Active Disciplines system
2026-05-16 19:17:12 +02:00

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;