1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

38 lines
1.3 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Cheryl",
fr: "Sara",
es: "Malta",
it: "Demetra",
pt: "Cheryl",
de: "Raissa"
},
rarity: "Secret Rare",
category: "Trainer",
effect: {
en: "Heal all damage from each of your Evolution Pokémon. If you do, discard all Energy from the Pokémon that were healed in this way.",
fr: "Soignez tous les dégâts de chacun de vos Pokémon Évolutifs. Dans ce cas, défaussez toute lÉnergie des Pokémon soignés de cette façon.",
es: "Cura todos los puntos de daño a cada uno de tus Pokémon Evolución. Si lo haces, descarta todas las Energías de los Pokémon que hayas curado de esta manera.",
it: "Cura ciascuno dei tuoi Pokémon Evoluzione da tutti i danni. Se lo fai, scarta tutte le Energie dai Pokémon che hai curato in questo modo.",
pt: "Cure todo o dano de cada um dos seus Pokémon de Evolução. Se fizer isto, descarte todas as Energias dos Pokémon que foram curados desta forma.",
de: "Heile allen Schaden bei jedem deiner Entwicklungs-Pokémon. Wenn du das machst, lege alle Energien von den auf diese Weise geheilten Pokémon auf deinen Ablagestapel."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card