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: "xy9-54", localId: 54, // Card informations name: { en: "Drapion", fr: "Drascore", }, hp: 130, type: [ Type.PSYCHIC, ], dexId: 452, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy9/54/low", fr: "https://assets.tcgdex.net/fr/xy/xy9/54/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/54/high", fr: "https://assets.tcgdex.net/fr/xy/xy9/54/high", }, }, evolveFrom: { en: "Skorupi", fr: "Rapion", }, tags: [ Tag.STAGE1, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Poison Claws", fr: "Griffes Empoisonnées", }, text: { en: "Your opponent's Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, damage: 70 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS ], name: { en: "Heavy Impact", fr: "Gros Impact", }, damage: 130 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "BREAKpoint", code: "xy9" } } export default card