1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-09 02:37:50 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

42 lines
617 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"
}
export default card