1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +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.6 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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Shehroz",
en: "Rose",
es: "Rose",
it: "Rose",
pt: "Rossi",
de: "Rose"
},
illustrator: "Megumi Mizutani",
rarity: "Ultra Rare",
category: "Trainer",
effect: {
fr: "Attachez jusquà 2 cartes Énergie de base de votre pile de défausse à lun de vos Pokémon-VMAX. Si vous avez attaché au moins une carte Énergie de cette façon, défaussez votre main.",
en: "Attach up to 2 basic Energy cards from your discard pile to 1 of your Pokémon VMAX. If you attached any Energy cards in this way, discard your hand.",
es: "Une hasta 2 cartas de Energía Básica de tu pila de descartes a 1 de tus Pokémon VMAX. Si has unido alguna carta de Energía de esta manera, descarta las cartas de tu mano.",
it: "Assegna a uno dei tuoi Pokémon-VMAX fino a due carte Energia base dalla tua pila degli scarti. Se hai assegnato delle carte Energia in questo modo, scarta le carte che hai in mano.",
pt: "Ligue até 2 cartas de Energia básica da sua pilha de descarte a 1 dos seus Pokémon VMAX. Se você ligou qualquer carta de Energia desta forma, descarte a sua mão.",
de: "Lege bis zu 2 Basis-Energiekarten aus deinem Ablagestapel an 1 deiner Pokémon-VMAX an. Wenn du auf diese Weise mindestens 1 Energiekarte angelegt hast, lege deine Handkarten auf deinen Ablagestapel."
},
trainerType: "Supporter",
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card