import { Card } from '../../../interfaces' import Set from '../Kalos Starter Set' const card: Card = { name: { en: "Clauncher", fr: "Flingouste", es: "Clauncher", it: "Clauncher", pt: "Clauncher", de: "Scampisto" }, illustrator: "5ban Graphics", rarity: "None", category: "Pokemon", set: Set, dexId: [ 692, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", es: "Pistola Agua", it: "Pistolacqua", pt: "Revolver d'Água", de: "Aquaknarre" }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card