1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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

42 lines
1.5 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 '../Team Up'
const card: Card = {
name: {
en: "Fairy Charm UB",
fr: "Amulette Féerique UC",
es: "Amuleto Hada UE",
it: "Amuleto Folletto UC",
pt: "Pingente de Fada UC",
de: "Feenschmuck UB"
},
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 Ultra-Chimères ou des Pokémon-EX Ultra-Chimères de votre adversaire.",
en: "Prevent all damage done to the Fairy Pokémon this card is attached to by attacks from your opponents Ultra Beast Pokémon-GX and Ultra Beast 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 Ultraentes y Pokémon-EX Ultraentes de tu rival.",
it: "Previeni tutti i danni inflitti al Pokémon Fairy a cui è assegnata questa carta dagli attacchi dei Pokémon-GX Ultracreatura e dei Pokémon-EX Ultracreatura 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 Ultracriaturas e Pokémon-EX Ultracriaturas do seu oponente.",
de: "Verhindere allen Schaden, der dem Fairy-Pokémon, an das diese Karte angelegt ist, durch Attacken von Ultrabestien-Pokémon-GX und Ultrabestien-Pokémon-EX deines Gegners zugefügt wird."
},
trainerType: "Tool",
}
export default card