1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
TCGdex [Bot] c10020a9a9
editor: change Twilight Masquerade variants (#516)
Co-authored-by: Avior <git@avior.me>
2024-07-03 22:16:16 +02:00

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