import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Lampent", fr: "Mélancolux", }, illustrator: "Anesaki Dynamic", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 608, ], hp: 80, types: [ "Psychic", ], evolveFrom: { en: "Litwick", fr: "Funécire", }, stage: "Stage1", attacks: [ { cost: [ "Psychic", ], name: { en: "Haunt", fr: "Hanter", }, effect: { en: "Put 3 damage counters on your opponent's Active Pokémon.", fr: "Placez 3 marqueurs de dégâts sur le Pokémon Actif de votre adversaire.", }, }, ], weaknesses: [ { type: "Darkness", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, } export default card