1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

75 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Lost Thunder'
const card: Card = {
name: {
en: "Lampent",
fr: "Mélancolux",
es: "Lampent",
it: "Lampent",
pt: "Lampent",
de: "Laternecto"
},
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",
es: "Espanto",
it: "Infestare",
pt: "Assombrar",
de: "Spuk"
},
effect: {
en: "Put 3 damage counters on your opponents Active Pokémon.",
fr: "Placez 3 marqueurs de dégâts sur le Pokémon Actif de votre adversaire.",
es: "Pon 3 contadores de daño en el Pokémon Activo de tu rival.",
it: "Metti tre segnalini danno sul Pokémon attivo del tuo avversario.",
pt: "Coloque 3 contadores de dano no Pokémon Ativo do seu oponente.",
de: "Lege 3 Schadensmarken auf das Aktive Pokémon deines Gegners."
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card