mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
67
data/Sword & Shield/Fusion Strike/75.ts
Normal file
67
data/Sword & Shield/Fusion Strike/75.ts
Normal file
@ -0,0 +1,67 @@
|
||||
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
|
Reference in New Issue
Block a user