1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-01 12:09:53 +00:00

33 lines
379 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Switch",
fr: "Échange",
},
illustrator: "Studio Bora Inc.",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Switch your Active Pokémon with 1 of your Benched Pokémon.",
},
trainerType: "Item",
}
export default card