1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

105 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Rebel Clash'
const card: Card = {
dexId: [609],
name: {
en: "Chandelure",
fr: "Lugulabre",
es: "Chandelure",
it: "Chandelure",
pt: "Chandelure",
de: "Skelabra"
},
illustrator: "Taira Akitsu",
rarity: "Holo Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Lampent",
fr: "Mélancolux",
es: "Lampent",
it: "Lampent",
pt: "Lampent",
de: "Laternecto"
},
abilities: [
{
type: "Ability",
name: {
en: "Protective Glow",
fr: "Lueur Protectrice",
es: "Brillo Protector",
it: "Lume Protettivo",
pt: "Brilho Protetor",
de: "Schützender Schein"
},
effect: {
en: "All of your Pokémon that have Energy attached have no Weakness.",
fr: "Vos Pokémon auxquels de l'Énergie est attachée n'ont pas de Faiblesse.",
es: "Ninguno de tus Pokémon que tenga alguna Energía unida a él tiene Debilidad.",
it: "Tutti i tuoi Pokémon che hanno delle Energie assegnate non hanno debolezza.",
pt: "Todos os seus Pokémon que tenham Energia ligada a eles não têm Fraqueza.",
de: "Alle deine Pokémon, an die Energie angelegt ist, haben keine Schwäche."
},
},
],
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Mirage Flare",
fr: "Mirage Flamboyant",
es: "Destello Espejismo",
it: "Miraggio Abbagliante",
pt: "Miragem de Chamas",
de: "Illusionsflackern"
},
effect: {
en: "Your opponent's Active Pokémon is now Confused.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.",
es: "El Pokémon Activo de tu rival pasa a estar Confundido.",
it: "Il Pokémon attivo del tuo avversario viene confuso.",
pt: "O Pokémon Ativo do seu oponente agora está Confuso.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verwirrt."
},
damage: 110,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
hp: 140,
types: ["Fire"],
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage2",
description: {
en: "This Pokémon haunts dilapidated mansions. It sways its arms to hypnotize opponents with the ominous dancing of its flames."
}
}
export default card