1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 09:29:55 +00:00

66 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [692],
set: Set,
name: {
en: "Clauncher",
fr: "Flingouste",
es: "Clauncher",
it: "Clauncher",
pt: "Clauncher",
de: "Scampisto"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Water"],
stage: "Basic",
retreat: 2,
regulationMark: "E",
illustrator: "Pani Kobayashi",
description: {
en: "It moves around by jetting water from its right pincer. It has a poor sense of balance, so it's terrible at swimming straight."
},
attacks: [{
cost: ["Water"],
name: {
en: "Water Gun",
fr: "Pistolet à O",
de: "Aquaknarre",
es: "Pistola Agua",
pt: "Revólver d'Água",
it: "Pistolacqua"
},
damage: 10
}, {
cost: ["Water", "Colorless"],
name: {
en: "Vise Grip",
fr: "Force Poigne",
de: "Klammer",
es: "Agarre",
pt: "Agarramento Compressor",
it: "Presa"
},
damage: 20
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card