1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon 0ce5e62460
Added some XY translations (#63)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:18:16 +00:00

42 lines
1.1 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 '../Fates Collide'
const card: Card = {
name: {
en: "Fairy Garden",
fr: "Jardin des Fées",
es: "Jardín Hada",
it: "Giardino Fatato",
pt: "Jardim das Fadas",
de: "Feenbeet"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Chacun des Pokémon auquel de lÉnergie Fairy est attachée (les vôtres et ceux de votre adversaire) na pas de Coût de Retraite.",
en: "Each Pokémon that has any Fairy Energy attached to it (both yours and your opponents) has no Retreat Cost.",
es: "Los Pokémon que tengan alguna Energía Fairy unida a ellos (tanto tuyos como de tu rival) no tienen ningún Coste de Retirada.",
it: "I Pokémon che hanno delle Energie Fairy assegnate, sia tuoi che del tuo avversario, non hanno costo di ritirata.",
pt: "Qualquer Pokémon que possuir alguma Energia Fairy ligada a ele (seu e do seu oponente) não terá Custo para Recuar.",
de: "Jedes Pokémon (deine und die deines Gegners), an das Fairy-Energie angelegt ist, hat keine Rückzugskosten."
},
trainerType: "Stadium",
}
export default card