mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
624 B
TypeScript
22 lines
624 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Pokémon Retriever",
|
|
de: "Pokémon Retriever*"
|
|
},
|
|
|
|
illustrator: "Katsura Tabata",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Rocket's Secret Machine",
|
|
|
|
effect: {
|
|
de: "Search your discard pile for Basic Pokémon and Evolution cards. You may either show 1 Basic Pokémon or Evolution card to your opponent and put it into your hand, or show a combination of 3 Basic Pokémon and Evolution cards to your opponent nd shuffle them into your deck."
|
|
}
|
|
}
|
|
|
|
export default card
|