mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
649 B
TypeScript
46 lines
649 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Twilight Masquerade"
|
|
|
|
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: 80,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Water", "Colorless"],
|
|
|
|
name: {
|
|
en: "Vise Grip",
|
|
fr: "Force Poigne",
|
|
es: "Agarre",
|
|
it: "Presa",
|
|
pt: "Agarramento Compressor",
|
|
de: "Klammer"
|
|
},
|
|
|
|
damage: 60
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |