1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 87a25d2319
Updated Interfaces
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
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