1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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
983 B
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 '../Ultra Prism'
const card: Card = {
name: {
en: "Lana",
fr: "Néphie",
es: "Capitana Nereida",
it: "Suiren",
pt: "Vitória",
de: "Tracy"
},
illustrator: "Kanako Eo",
rarity: "Ultra Rare",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 50 dégâts à chacun de vos Pokémon auquel de lÉnergie Water est attachée.",
en: "Heal 50 damage from each of your Pokémon that has any Water Energy attached to it.",
es: "Cura 50 puntos de daño a cada uno de tus Pokémon que tenga alguna Energía Water unida a él.",
it: "Cura ciascuno dei tuoi Pokémon che abbia delle Energie Water assegnate da 50 danni.",
pt: "Cure 50 pontos de dano de cada um dos seus Pokémon que tiver alguma Energia Water ligada a ele.",
de: "Heile 50 Schadenspunkte bei jedem deiner Pokémon, an das mindestens 1 Water-Energie angelegt ist."
},
trainerType: "Supporter",
}
export default card