1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-05 08:57:49 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

40 lines
1.2 KiB
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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Pokémon Center Lady",
fr: "Dame du Centre Pokémon",
es: "Chica del Centro Pokémon",
it: "Addetta del Centro Pokémon",
pt: "Dama do Centro Pokémon",
de: "Pokémon-Center-Dame"
},
illustrator: "kirisAki",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Heal 60 damage from 1 of your Pokémon, and it recovers from all Special Conditions.",
fr: "Soignez 60 dégâts de lun de vos Pokémon, et il guérit de tous les États Spéciaux.",
es: "Cura 60 puntos de daño a 1 de tus Pokémon, y este se recupera de todas las Condiciones Especiales.",
it: "Cura uno dei tuoi Pokémon da 60 danni. Quel Pokémon guarisce da tutte le condizioni speciali.",
pt: "Cure 60 pontos de dano de 1 dos seus Pokémon e aquele Pokémon se recupera de quaisquer Condições Especiais.",
de: "Heile 60 Schadenspunkte bei 1 deiner Pokémon, und es erholt sich von allen Speziellen Zuständen."
},
trainerType: "Supporter",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card