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: "xy4-122", localId: 122, // Card informations name: { en: "Dialga-EX", }, hp: 180, type: [ Type.METAL, ], dexId: 483, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/122/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/122/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Ayaka Yoshida", attacks: [{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Chrono Wind", }, text: { en: "If the Defending Pokémon is a Pokémon-EX, it can't attack during your opponent's next turn.", }, damage: 60 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Full Metal Impact", }, text: { en: "Discard 2 Metal Energy attached to this Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card