import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/54/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy9/54/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy9/54/high.png", }, }, evolveFrom: { en: "Skorupi", fr: "Rapion", }, tags: [ Tag.STAGE1, ], illustrator: { id: 9, name: "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