import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Sobble", fr: "Larméléon", }, illustrator: "Mizue", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Bind", fr: "Étreinte", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card