import { Card } from '../../../interfaces' import Set from '../SWSH Black Star Promos' const card: Card = { name: { fr: "Morpeko", en: "Morpeko" }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, hp: 80, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", "Colorless", ], name: { fr: "Éclair", en: "Thunder Shock" }, effect: { fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed." }, damage: 60, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card