mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
42 lines
433 B
TypeScript
42 lines
433 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Shining Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Switch",
|
|
fr: "Échange",
|
|
es: "Cambio",
|
|
it: "Scambio",
|
|
pt: "Substituição",
|
|
de: "Tausch"
|
|
},
|
|
illustrator: "Ryo Ueda",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
set: Set,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
effect: {
|
|
fr: "",
|
|
en: "",
|
|
es: "",
|
|
it: "",
|
|
pt: "",
|
|
de: ""
|
|
},
|
|
trainerType: "Item",
|
|
|
|
}
|
|
|
|
export default card
|