mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
63
data/Scarlet & Violet/Twilight Masquerade/032.ts
Normal file
63
data/Scarlet & Violet/Twilight Masquerade/032.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Monferno",
|
||||
fr: "Chimpenfeu",
|
||||
es: "Monferno",
|
||||
it: "Monferno",
|
||||
pt: "Monferno",
|
||||
de: "Panpyro"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Chop",
|
||||
fr: "Coup Tranchant",
|
||||
es: "Cortar",
|
||||
it: "Ceffone",
|
||||
pt: "Trincar",
|
||||
de: "Hacker"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}, {
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Heat Blow",
|
||||
fr: "Coup Explosif",
|
||||
es: "Golpe de Fuego",
|
||||
it: "Colpocalore",
|
||||
pt: "Golpe de Calor",
|
||||
de: "Hitzschlag"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte uma Energia deste Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user