import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Morpeko", en: "Morpeko" }, illustrator: "Hideki Ishikawa", rarity: "Common", category: "Pokemon", hp: 80, types: ["Lightning"], attacks: [{ name: { fr: "Glouton", en: "Famished" }, effect: { fr: "Piochez une carte.", en: "Draw a card." }, cost: ["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: 40, cost: ["Lightning", "Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, regulationMark: "D" } export default card