mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
418 B
TypeScript
22 lines
418 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Here Comes Team Rocket!",
|
|
de: "Hier kommt Team Rocket!"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Each player plays with his or her Prize cards face up for the rest of the game."
|
|
}
|
|
}
|
|
|
|
export default card
|