UNPKG

yugioh-card

Version:

<h1 align="center">🎉 游戏王卡片 - Yugioh Card 🎉</h1>

73 lines (72 loc) 1.81 kB
import { Card } from '../card/index.js'; export class YugiohSeries2Card extends Card { cardLeaf: any; nameLeaf: any; attributeLeaf: any; levelLeaf: any; spellTrapLeaf: any; imageLeaf: any; maskLeaf: any; packageLeaf: any; effectLeaf: any; descriptionLeaf: any; atkDefLeaf: any; passwordLeaf: any; copyrightLeaf: any; laserLeaf: any; data: { language: string; name: string; color: string; align: string; gradient: boolean; gradientColor1: string; gradientColor2: string; type: string; attribute: string; icon: string; image: string; cardType: string; level: number; monsterType: string; atk: number; def: number; description: string; firstLineCompress: boolean; descriptionAlign: boolean; descriptionZoom: number; descriptionWeight: number; package: string; password: string; copyright: string; laser: string; rare: string; radius: boolean; scale: number; }; get tag(): string; drawCard(): void; drawName(): void; drawAttribute(): void; drawLevel(): void; drawSpellTrap(): void; drawImage(): void; drawMask(): void; drawPackage(): void; drawEffect(): void; drawDescription(): void; drawAtkDef(): void; drawPassword(): void; drawCopyright(): void; drawLaser(): void; get baseImage(): string; get style(): {}; get cardUrl(): string; get autoNameColor(): string; get showAttribute(): boolean; get attributeUrl(): string; get spellTrapName(): string; get showEffect(): string; get atkName(): string; get defName(): string; }