mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
19 lines
352 B
TypeScript
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
|