mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add database update (#825)
This commit is contained in:
53
data/Scarlet & Violet/White Flare/102.ts
Normal file
53
data/Scarlet & Violet/White Flare/102.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lampent",
|
||||
fr: "Mélancolux",
|
||||
de: "Laternecto",
|
||||
it: "Lampent",
|
||||
pt: "Lampent",
|
||||
es: "Lampent",
|
||||
'es-mx': "Lampent"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Fire Blast",
|
||||
fr: "Déflagration",
|
||||
de: "Feuersturm",
|
||||
it: "Fuocobomba",
|
||||
pt: "Rajada de Fogo",
|
||||
es: "Llamarada",
|
||||
'es-mx': "Llamarada"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
fr: "Défaussez une Énergie de ce Pokémon.",
|
||||
de: "Lege 1 Energie von diesem Pokémon auf deinen Ablagestapel.",
|
||||
it: "Scarta un'Energia da questo Pokémon.",
|
||||
pt: "Descarte uma Energia deste Pokémon.",
|
||||
es: "Descarta 1 Energía de este Pokémon.",
|
||||
'es-mx': "Descarta 1 Energía de este Pokémon."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user