mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
68 lines
1.3 KiB
TypeScript
68 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Scarlet & Violet"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Clawitzer",
|
|
fr: "Gamblast",
|
|
es: "Clawitzer",
|
|
it: "Clawitzer",
|
|
pt: "Clawitzer",
|
|
de: "Wummer"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 120,
|
|
types: ["Water"],
|
|
|
|
evolveFrom: {
|
|
en: "Clauncher"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Water Gun",
|
|
fr: "Pistolet à O",
|
|
es: "Pistola Agua",
|
|
it: "Pistolacqua",
|
|
pt: "Revólver d'Água",
|
|
de: "Aquaknarre"
|
|
},
|
|
|
|
damage: 50
|
|
}, {
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Aqua Cannon",
|
|
fr: "Aqua-Canon",
|
|
es: "Cañón Aqua",
|
|
it: "Cannone Acquatico",
|
|
pt: "Aqua Canhão",
|
|
de: "Wasserkanone"
|
|
},
|
|
|
|
effect: {
|
|
en: "During your next turn, this Pokémon can't attack.",
|
|
fr: "Pendant votre prochain tour, ce Pokémon ne peut pas attaquer.",
|
|
es: "Durante tu próximo turno, este Pokémon no puede atacar.",
|
|
it: "Durante il tuo prossimo turno, questo Pokémon non può attaccare.",
|
|
pt: "Durante o seu próximo turno, este Pokémon não poderá atacar.",
|
|
de: "Während deines nächsten Zuges kann dieses Pokémon nicht angreifen."
|
|
},
|
|
|
|
damage: 160
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |