1 2 3 4 5 6 7 8 9 10 11 12 13export interface Talent { name: string title: string description: string icon: string icon_url: Record<string, string> ability: string sort: number cooldown: number mana_cost: number level: number }
1 2 3 4 5 6 7 8 9 10 11 12 13
export interface Talent { name: string title: string description: string icon: string icon_url: Record<string, string> ability: string sort: number cooldown: number mana_cost: number level: number }