mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
61 lines
906 B
TypeScript
61 lines
906 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
dexId: [341],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Corphish",
|
|
fr: "Écrapince",
|
|
es: "Corphish",
|
|
it: "Corphish",
|
|
pt: "Corphish",
|
|
de: "Krebscorps"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Water Gun",
|
|
fr: "Pistolet à O",
|
|
es: "Pistola Agua",
|
|
it: "Pistolacqua",
|
|
pt: "Revólver d'Água",
|
|
de: "Aquaknarre"
|
|
},
|
|
|
|
damage: 10
|
|
}, {
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Crabhammer",
|
|
fr: "Pince-Masse",
|
|
es: "Martillazo",
|
|
it: "Martellata",
|
|
pt: "Martelo Caranguejo",
|
|
de: "Krabbhammer"
|
|
},
|
|
|
|
damage: 50
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |