mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Twilight Masquerade (#491)
This commit is contained in:
63
data/Scarlet & Violet/Twilight Masquerade/037.ts
Normal file
63
data/Scarlet & Violet/Twilight Masquerade/037.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Twilight Masquerade"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lampent",
|
||||
fr: "Mélancolux",
|
||||
es: "Lampent",
|
||||
it: "Lampent",
|
||||
pt: "Lampent",
|
||||
de: "Laternecto"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Live Coal",
|
||||
fr: "Charbon Mutant",
|
||||
es: "Carbón Activado",
|
||||
it: "Carboni Ardenti",
|
||||
pt: "Carvão Vivo",
|
||||
de: "Glühende Kohlen"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}, {
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Burn It All Up",
|
||||
fr: "Combustion Totale",
|
||||
es: "Carbonizar",
|
||||
it: "Fiamma Estrema",
|
||||
pt: "Queimar Tudo",
|
||||
de: "Alles abbrennen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon.",
|
||||
fr: "Défaussez toutes les Énergies de ce Pokémon.",
|
||||
es: "Descarta todas las Energías de este Pokémon.",
|
||||
it: "Scarta tutte le Energie da questo Pokémon.",
|
||||
pt: "Descarte todas as Energias deste Pokémon.",
|
||||
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
|
||||
},
|
||||
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user