1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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.5 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: "Hyper Potion",
fr: "Hyper Potion",
es: "Hiperpoción",
it: "Iperpozione",
pt: "Hiperpoção",
de: "Hypertrank"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Heal 120 damage from 1 of your Pokémon that has at least 2 Energy attached. If you healed any damage in this way, discard 2 Energy from it.",
fr: "Soignez 120 dégâts de lun de vos Pokémon auquel sont attachées au moins 2 Énergies. Si des dégâts sont ainsi soignés, défaussez 2 Énergies de ce Pokémon.",
es: "Cura 120 puntos de daño a 1 de tus Pokémon que tenga por lo menos 2 Energías unidas a él. Si has curado algún punto de daño de esta manera, descarta 2 Energías de ese Pokémon.",
it: "Cura uno dei tuoi Pokémon che ha almeno due Energie assegnate da 120 danni. Se hai curato dei danni in questo modo, scarta due Energie da quel Pokémon.",
pt: "Cure 120 pontos de dano de 1 dos seus Pokémon que tiver pelo menos 2 Energias ligadas a ele. Se você curou qualquer dano desta forma, descarte 2 Energias daquele Pokémon.",
de: "Heile 120 Schadenspunkte bei 1 deiner Pokémon, an das mindestens 2 Energien angelegt sind. Wenn du auf diese Weise Schaden geheilt hast, lege 2 Energien von jenem Pokémon auf deinen Ablagestapel."
},
trainerType: "Item",
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card