mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-28 22:02:15 +00:00
64 lines
758 B
TypeScript
64 lines
758 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Guardians Rising'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Lampent",
|
||
fr: "Mélancolux",
|
||
es: "Lampent",
|
||
it: "Lampent",
|
||
pt: "Lampent",
|
||
de: "Laternecto"
|
||
},
|
||
illustrator: "0313",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
608,
|
||
],
|
||
hp: 80,
|
||
types: [
|
||
"Fire",
|
||
],
|
||
evolveFrom: {
|
||
en: "Litwick",
|
||
fr: "Funécire",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Fire",
|
||
],
|
||
name: {
|
||
en: "Will-O-Wisp",
|
||
fr: "Feu Follet",
|
||
es: "Llama abrasadora",
|
||
it: "Fulminshock",
|
||
pt: "Fogo-fátuo",
|
||
de: "Irrlicht"
|
||
},
|
||
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Water",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|