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-62", localId: 62, // Card informations name: { en: "Dialga-EX", fr: "Dialga-EX", }, hp: 180, type: [ Type.METAL, ], dexId: 483, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/62/low", fr: "https://assets.tcgdex.net/fr/xy/xy4/62/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/62/high", fr: "https://assets.tcgdex.net/fr/xy/xy4/62/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ayaka Yoshida", attacks: [{ cost: [ Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Chrono Wind", fr: "Vent Temporel", }, text: { en: "If the Defending Pokémon is a Pokémon-EX, it can't attack during your opponent's next turn.", fr: "Si le Pokémon Défenseur est un Pokémon-EX, il ne peut pas attaquer pendant le prochain tour de votre adversaire.", }, damage: 60 },{ cost: [ Type.METAL, Type.METAL, Type.COLORLESS, Type.COLORLESS ], name: { en: "Full Metal Impact", fr: "Full Metal Impact", }, text: { en: "Discard 2 Metal Energy attached to this Pokémon.", fr: "Défaussez 2 Énergies Metal attachées à ce Pokémon.", }, damage: 150 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card