mirror of
https://github.com/tcgdex/javascript-sdk.git
synced 2025-04-22 02:42:08 +00:00
21 lines
373 B
TypeScript
21 lines
373 B
TypeScript
import Type from "./Type";
|
|
import LangList from "./LangList";
|
|
|
|
export interface AttackSingle extends AttackSimple {
|
|
cost?: Array<string>
|
|
text?: string
|
|
damage?: string|number
|
|
}
|
|
|
|
export interface AttackSimple {
|
|
// id: number
|
|
name: string
|
|
}
|
|
|
|
export default interface Attack {
|
|
cost?: Array<Type>
|
|
name: LangList<string>
|
|
text?: LangList<string>
|
|
damage?: string|number
|
|
}
|