1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 23:55:12 +00:00
Files
cards-database/data/Sword & Shield/Evolving Skies/162.ts

39 lines
956 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../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: "Switching Cups",
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: "Switch a card from your hand with the top card of your deck.",
de: "Tausche 1 Karte aus deiner Hand gegen die oberste Karte deines Decks aus."
},
trainerType: "Item",
illustrator: "Ryo Ueda"
}
export default card