1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 06:19:54 +00:00

22 lines
391 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Space-Time Smackdown"
const card: Card = {
set: Set,
name: {
en: "Pokémon Communication"
},
illustrator: "Ayaka Yoshida",
rarity: "Two Diamond",
category: "Trainer",
effect: {
en: "Choose a Pokémon in your hand and switch it with a random Pokémon in your deck."
},
trainerType: "Item"
}
export default card