mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
718 B
TypeScript
22 lines
718 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Surprise! Time Machine",
|
|
de: "Surprise! Time Machine*"
|
|
},
|
|
|
|
illustrator: "Katsura Tabata",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Rocket's Secret Machine",
|
|
|
|
effect: {
|
|
de: "Choose 1 of your Evolved Pokémon, remove the highest Stage Evolution card from it, and shuffle it into your deck (this counts as devolving that Pokémon). If that Pokémon remains in play, search your deck for an Evolution card that evolves from that Pokémon and put it onto that Pokémon (this counts as evolving that Pokémon). Shuffle your deck afterward."
|
|
}
|
|
}
|
|
|
|
export default card
|