1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

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