1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-05 17:59:18 +00:00
Files
cards-database/interfaces/Attack.ts
2020-02-12 00:21:24 +01:00

19 lines
352 B
TypeScript

import LangList from "./LangList";
import Type from "./Type";
interface Attack {
cost?: Array<Type>
name: LangList<string>
text?: LangList<string>
damage?: string|number
}
export interface LocalizedAttack {
cost?: Array<Type|string>
name: string|LangList<string>
text?: string|LangList<string>
damage?: string|number
}
export default Attack