import { Card } from '../../../interfaces' import Set from '../Chilling Reign' const card: Card = { set: Set, name: { en: "Clobbopus", fr: "Poulpaf" }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", hp: 70, types: ["Fighting"], attacks: [{ name: { en: "Beat", fr: "Bataille" }, damage: 30, cost: ["Colorless", "Colorless"] }], weaknesses: [{ type: "Psychic", value: "×2" }], retreat: 2, regulationMark: "E" } export default card