1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +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
956 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: "Gardenia",
fr: "Flo",
es: "Gardenia",
it: "Gardenia",
pt: "Gardênia",
de: "Silvana"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
fr: "Soignez 80 dégâts à lun de vos Pokémon auquel de lÉnergie Grass est attachée.",
en: "Heal 80 damage from 1 of your Pokémon that has any Grass Energy attached to it.",
es: "Cura 80 puntos de daño a 1 de tus Pokémon que tenga alguna Energía Grass unida a él.",
it: "Cura uno dei tuoi Pokémon che abbia delle Energie Grass assegnate da 80 danni.",
pt: "Cure 80 pontos de dano de 1 dos seus Pokémon que tiver alguma Energia Grass ligada a ele.",
de: "Heile 80 Schadenspunkte bei 1 deiner Pokémon, an das mindestens 1 Grass-Energie angelegt ist."
},
trainerType: "Supporter",
}
export default card