Experiment

This commit is contained in:
2025-05-29 17:12:16 +02:00
parent 6756678b1d
commit b2a3c9b1c3
51 changed files with 1057 additions and 310 deletions

View File

@@ -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;