mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
67 lines
1.1 KiB
TypeScript
67 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
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 |