mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Lost Thunder'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Fairy Charm Fighting",
|
||
fr: "Amulette Féerique Fighting",
|
||
es: "Amuleto Hada Fighting",
|
||
it: "Amuleto Folletto Fighting",
|
||
pt: "Pingente de Fada Fighting",
|
||
de: "Feenschmuck Fighting"
|
||
},
|
||
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 Fighting ou Pokémon-EX Fighting de votre adversaire.",
|
||
en: "Prevent all damage done to the Fairy Pokémon this card is attached to by attacks from your opponent’s Fighting Pokémon-GX and Fighting 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 Fighting y Pokémon-EX Fighting de tu rival.",
|
||
it: "Previeni tutti i danni inflitti al Pokémon Fairy a cui è assegnata questa carta dagli attacchi dei Pokémon-GX Fighting e dei Pokémon-EX Fighting 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 Fighting e Pokémon-EX Fighting do seu oponente.",
|
||
de: "Verhindere allen Schaden, der dem Fairy-Pokémon, an das diese Karte angelegt ist, durch Attacken von Fighting-Pokémon-GX und Fighting-Pokémon-EX deines Gegners zugefügt wird."
|
||
},
|
||
trainerType: "Tool",
|
||
|
||
}
|
||
|
||
export default card
|