import { Card } from '../../../interfaces' import Set from '../Rising Rivals' const card: Card = { name: { en: "Drapion 4", fr: "Drascore Niv. 53", de: "Piondragi 4" }, illustrator: "Kouki Saitou", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 452, ], hp: 100, types: [ "Darkness", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Body Slam", fr: "Plaquage", de: "Bodyslam" }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", de: "Wirf 1 Münze. Bei \"Kopf\" ist das Verteidigende Pokémon jetzt gelähmt." }, damage: 20, }, { cost: [ "Psychic", "Colorless", "Colorless", "Colorless", ], name: { en: "Mega Impact", fr: "Méga impact", de: "Mega Einschlag" }, damage: 70, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Psychic", value: "-20" }, ], retreat: 3, } export default card