import Type from "./Type"; import LangList from "./LangList"; export interface AttackSingle extends AttackSimple { cost?: Array text?: string damage?: string|number } export interface AttackSimple { // id: number name: string } export default interface Attack { cost?: Array name: LangList text?: LangList damage?: string|number }