mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
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
|
|
},
|
|
|
|
illustrator: "Yuu Nishida",
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card
|