1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02: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
637 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Twilight Masquerade"
const card: Card = {
dexId: [37],
set: Set,
name: {
en: "Vulpix",
fr: "Goupix",
es: "Vulpix",
it: "Vulpix",
pt: "Vulpix",
de: "Vulpix"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire", "Fire"],
name: {
en: "Live Coal",
fr: "Charbon Mutant",
es: "Carbón Activado",
it: "Carboni Ardenti",
pt: "Carvão Vivo",
de: "Glühende Kohlen"
},
damage: 40
}],
retreat: 1,
regulationMark: "H",
variants: {
holo: false
}
}
export default card