import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Poulpaf", en: "Clobbopus" }, illustrator: "Kyoko Umemoto", rarity: "Ultra Rare", category: "Pokemon", hp: 60, types: ["Fighting"], attacks: [{ name: { fr: "Étreinte", en: "Bind" }, 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: 20, cost: ["Fighting"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "D" } export default card