mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
22 lines
501 B
TypeScript
22 lines
501 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Rocket's Admin.",
|
|
de: "Rocket's Admin.*"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Each player shuffles his or her hand into his or her deck. Then, each player counts his or her Prize cards left and draws up to that many cards. (You draw your cards first.)"
|
|
}
|
|
}
|
|
|
|
export default card
|