import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "xyp-XY197", localId: "XY197", // Card informations name: { en: "Arceus", }, hp: 130, type: [ Type.COLORLESS, ], dexId: 493, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY197/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY197/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Naoki Saito", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Type Switch", }, text: { en: "Choose Grass, Fire, Water, Lightning, Psychic, Fighting, Darkness, Metal, Fairy, or Dragon type. Until the end of your next turn, this Pokémon is that type.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Power Blast", }, text: { en: "Discard an Energy card attached to this Pokémon.", }, damage: 120 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card