1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-12 20:07:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

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