mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
22 lines
429 B
TypeScript
22 lines
429 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Team Rocket Returns'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Copycat",
|
|
de: "Nachahmerin"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Shuffle your hand into your deck. Then, count the number of cards in your opponent's hand an draw that many cards."
|
|
}
|
|
}
|
|
|
|
export default card
|