export interface SkillBuildOption { id: string name: string description?: string } export const skillBuilds: SkillBuildOption[] = [ { id: 'q_first', name: 'Max Q first', description: 'Prioritize first ability' }, { id: 'w_first', name: 'Max W first', description: 'Prioritize second ability' }, { id: 'e_first', name: 'Max E first', description: 'Prioritize third ability' }, { id: 'balanced', name: 'Balanced', description: 'Evenly distribute points' } ]