1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

77 lines
1.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 '../Phantom Forces'
const card: Card = {
name: {
en: "Chandelure",
fr: "Lugulabre",
},
illustrator: "PLANETA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
609,
],
hp: 130,
types: [
"Psychic",
],
evolveFrom: {
en: "Lampent",
fr: "Mélancolux",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Fainting Spell",
fr: "Sort d'Évanouissement",
},
effect: {
en: "If this Pokémon is Knocked Out by damage from an opponent's attack, flip a coin. If heads, the Attacking Pokémon is Knocked Out.",
fr: "Si ce Pokémon est mis K.O. par les dégâts d'une attaque de votre adversaire, lancez une pièce. Si c'est face, le Pokémon Attaquant est mis K.O.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Cursed Drop",
fr: "Chute Maudite",
},
effect: {
en: "Put 6 damage counters on your opponent's Pokémon in any way you like.",
fr: "Placez 6 marqueurs de dégâts sur les Pokémon de votre adversaire, de la manière que vous voulez.",
},
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 2,
}
export default card