mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
23 lines
519 B
TypeScript
23 lines
519 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Here Comes Team Rocket!",
|
|
fr: "Et voila les Team Rocket !",
|
|
de: "Hier kommt Team Rocket!"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Trainer",
|
|
set: Set,
|
|
|
|
effect: {
|
|
fr: "Chaque joueur joue avec ses cartes Récompenses découvertes jusqu'à la fin de la partie.",
|
|
de: "Each player plays with his or her Prize cards face up for the rest of the game."
|
|
}
|
|
}
|
|
|
|
export default card
|