import { Card } from '../../../interfaces' import Set from '../Furious Fists' const card: Card = { name: { en: "Clauncher", fr: "Flingouste", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 692, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Bubble", fr: "Écume", }, 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é.", }, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Crabhammer", fr: "Pince-Masse", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card