mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 06:42:10 +00:00
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Unbroken Bonds'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Fairy Charm Lightning",
|
||
fr: "Amulette Féerique Lightning",
|
||
es: "Amuleto Hada Lightning",
|
||
it: "Amuleto Folletto Lightning",
|
||
pt: "Pingente de Fada Lightning",
|
||
de: "Feenschmuck Lightning"
|
||
},
|
||
illustrator: "Toyste Beach",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
fr: "Évitez tous les dégâts infligés au Pokémon Fairy auquel cette carte est attachée par les attaques des Pokémon-GX Lightning ou Pokémon-EX Lightning de votre adversaire.",
|
||
en: "Prevent all damage done to the Fairy Pokémon this card is attached to by attacks from your opponent’s Lightning Pokémon-GX and Lightning Pokémon-EX.",
|
||
es: "Evita todo el daño infligido al Pokémon Fairy al que esté unida esta carta por ataques de los Pokémon-GX Lightning y Pokémon-EX Lightning de tu rival.",
|
||
it: "Previeni tutti i danni inflitti al Pokémon Fairy a cui è assegnata questa carta dagli attacchi dei Pokémon-GX Lightning e dei Pokémon-EX Lightning del tuo avversario.",
|
||
pt: "Previne todo o dano causado ao Pokémon Fairy ao qual esta carta está ligada por ataques dos Pokémon-GX Lightning e Pokémon-EX Lightning do seu oponente.",
|
||
de: "Verhindere allen Schaden, der dem Fairy-Pokémon, an das diese Karte angelegt ist, durch Attacken von Lightning-Pokémon-GX und Lightning-Pokémon-EX deines Gegners zugefügt wird."
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|