1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

68 lines
1.1 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [693],
set: Set,
name: {
en: "Clawitzer",
fr: "Gamblast",
es: "Clawitzer",
it: "Clawitzer",
pt: "Clawitzer",
de: "Wummer"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Clauncher",
fr: "Flingouste",
es: "Clauncher",
it: "Clauncher",
pt: "Clauncher",
de: "Scampisto"
},
stage: "Stage1",
retreat: 2,
regulationMark: "E",
illustrator: "tetsuya koizumi",
description: {
en: "Its right arm is packed with meat. When its pincer falls off, it's exported to be used as a cooking ingredient."
},
attacks: [{
cost: ["Water"],
name: {
en: "Snipe Shot"
},
effect: {
en: "This attack does 50 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)"
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
en: "Crabhammer"
},
damage: 110
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card