1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

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