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
974 B
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 Drop",
fr: "Pastilles Féériques",
es: "Bolitas Hada",
it: "Goccia Fatata",
pt: "Bolinha de Fada",
de: "Feentropfen"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 50 dégâts à lun de vos Pokémon auquel de lÉnergie Fairy est attachée.",
en: "Heal 50 damage from 1 of your Pokémon that has any Fairy Energy attached to it.",
es: "Cura 50 puntos de daño a 1 de tus Pokémon que tenga alguna Energía Fairy unida a él.",
it: "Cura da 50 danni uno dei tuoi Pokémon che abbia delle Energie Fairy assegnate.",
pt: "Cure 50 de danos de 1 dos seus Pokémon que possua qualquer Energia Fairy ligada a ele.",
de: "Heile 50 Schadenspunkte bei 1 deiner Pokémon, an das Fairy-Energie angelegt ist."
},
trainerType: "Item",
}
export default card