1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

22 lines
690 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Team Rocket Returns'
const card: Card = {
name: {
en: "Swoop! Teleporter",
de: "Swoop! Teleporter*"
},
illustrator: "Katsura Tabata",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Rocket's Secret Machine",
effect: {
de: "Search your deck for a Basic Pokémon (excluding Pokémon-ex) and switch it with 1 of your Basic Pokémon (excluding Pokémon-ex) in play. (Any cards attached to that Pokémon, damage counters, Special Conditions, and effects on it are now on the new Pokémon.) Place the first Basic Pokémon in the discard pile. Shuffle your deck afterward."
}
}
export default card