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: "sm11-134", localId: 134, // Card informations name: { en: "Drapion", fr: "Drascore", }, hp: 140, type: [ Type.DARKNESS, ], dexId: 452, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/134/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/134/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/134/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/134/high.png", }, }, evolveFrom: { en: "Skorupi", fr: "Rapion", }, tags: [ Tag.STAGE1, ], illustrator: { id: 102, name: "SATOSHI NAKAI" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Cross Poison", fr: "Poison-Croix", }, text: { en: "Flip 4 coins. This attack does 50 damage for each heads. If at least 2 of them are heads, your opponent's Active Pokémon is now Poisoned.", fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts pour chaque côté face. Si vous obtenez au moins 2 côtés face, le Pokémon Actif de votre adversaire est maintenant Empoisonné.", }, damage: 50 },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Slicing Blade", fr: "Lame Tranchante", }, damage: 120 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 4, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card