UNPKG

tft-dataset

Version:

Basic informations on current tft set.

9 lines (8 loc) 258 B
import type { ChampionName } from "../constants/champion-name"; import type { SynergyName } from "../constants/synergy-name"; export interface Champion { name: ChampionName; synergies: SynergyName[]; cost: 1 | 2 | 3 | 4 | 5; range: number; }