1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

22 lines
463 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Rocket's Poké Ball",
de: "Rocket's Poké Ball*"
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Item",
effect: {
de: "Search your deck for a Pokémon with Dark in its name, show it to your opponent, and put it into your hand. Shuffle your deck afterward."
}
}
export default card