1.9 KiB
1.9 KiB
MonsterCard
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | number | [optional] [default to undefined] | |
| cardType | CardType | [default to undefined] | |
| description | string | [default to undefined] | |
| name | string | [default to undefined] | |
| cardPrints | Array<CardPrint> | [default to undefined] | |
| monsterEffect | string | [optional] [default to undefined] | |
| attack | number | [optional] [default to undefined] | |
| defense | number | [optional] [default to undefined] | |
| level | number | [optional] [default to undefined] | |
| isPendulum | boolean | [optional] [default to undefined] | |
| pendulumScale | number | [optional] [default to undefined] | |
| pendulumEffect | string | [optional] [default to undefined] | |
| linkValue | number | [optional] [default to undefined] | |
| type | MonsterCardType | [default to undefined] | |
| monsterType | MonsterType | [default to undefined] | |
| attribute | Attribute | [default to undefined] | |
| linkArrows | Set<LinkArrow> | [default to undefined] | |
| subTypes | Set<MonsterCardSubType> | [default to undefined] |
Example
import { MonsterCard } from './api';
const instance: MonsterCard = {
id,
cardType,
description,
name,
cardPrints,
monsterEffect,
attack,
defense,
level,
isPendulum,
pendulumScale,
pendulumEffect,
linkValue,
type,
monsterType,
attribute,
linkArrows,
subTypes,
};