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: "swsh1-122", localId: 122, // Card informations name: { en: "Drapion", fr: "Drascore", }, hp: 140, type: [ Type.DARKNESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/122/low.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/122/low.png", }, high: { en: "https://assets.tcgdex.net/en/swsh/swsh1/122/high.png", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/122/high.png", }, }, evolveFrom: { en: "Skorupi", fr: "Rapion", }, tags: [ Tag.STAGE1, ], illustrator: { id: 56, name: "Masakazu Fukuda" }, attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hard Press", fr: "Pression Robuste", }, text: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 80 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Toxic Strike", fr: "Frappe Toxique", }, text: { en: "Your opponent’s Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, damage: 130 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card