first commit
This commit is contained in:
12
data/skills.ts
Normal file
12
data/skills.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
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' }
|
||||
]
|
||||
Reference in New Issue
Block a user