mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
804 B
TypeScript
54 lines
804 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
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"
|
|
}
|
|
|
|
export default card |