1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* 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
2021-10-26 10:40:03 +02:00

41 lines
987 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Switching Cups",
fr: "Gobelets d'Échange",
es: "Cubiletes de Cambio",
it: "Bicchieri di Scambio",
pt: "Copos de Substituição",
de: "Tauschbecher"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Switch a card from your hand with the top card of your deck.",
fr: "Échangez une carte de votre main contre la carte du dessus de votre deck.",
es: "Cambia 1 carta de tu mano por la primera carta de tu baraja.",
it: "Scambia una carta che hai in mano con la prima carta del tuo mazzo.",
pt: "Troque 1 carta da sua mão pela carta de cima do seu baralho.",
de: "Tausche 1 Karte aus deiner Hand gegen die oberste Karte deines Decks aus."
},
trainerType: "Item",
illustrator: "Ryo Ueda",
regulationMark: "E"
}
export default card