Experiment
This commit is contained in:
@@ -7,24 +7,22 @@
|
||||
* https://openapi-generator.tech
|
||||
* Do not edit the class manually.
|
||||
*/
|
||||
import { MonsterCardType } from './monster-card-type';
|
||||
import { TrapCard } from './trap-card';
|
||||
import { TrapCardType } from './trap-card-type';
|
||||
import { Attribute } from './attribute';
|
||||
import { CardType } from './card-type';
|
||||
import { LinkArrow } from './link-arrow';
|
||||
import { SpellCardType } from './spell-card-type';
|
||||
import { MonsterCard } from './monster-card';
|
||||
import { SpellCard } from './spell-card';
|
||||
import { CardPrint } from './card-print';
|
||||
import { MonsterType } from './monster-type';
|
||||
|
||||
|
||||
export interface Card {
|
||||
id?: number;
|
||||
description: string;
|
||||
pendulumDescription?: string | null;
|
||||
defense?: number | null;
|
||||
attack?: number | null;
|
||||
health?: number | null;
|
||||
level?: number | null;
|
||||
linkValue?: number | null;
|
||||
name: string;
|
||||
type: string;
|
||||
frameType: string;
|
||||
archetype?: string | null;
|
||||
race?: string | null;
|
||||
attribute?: string | null;
|
||||
decks: { [key: string]: number; };
|
||||
imageApiPath: string;
|
||||
}
|
||||
/**
|
||||
* @type Card
|
||||
* @export
|
||||
*/
|
||||
export type Card = MonsterCard | SpellCard | TrapCard;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user