mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
22 lines
437 B
TypeScript
22 lines
437 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Call of Legends'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Copycat",
|
|
de: "Nachahmerin"
|
|
},
|
|
|
|
illustrator: "Kanako Eo",
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
set: Set,
|
|
trainerType: "Supporter",
|
|
|
|
effect: {
|
|
de: "Mische deine Handkarten in dein Deck. Zähle danach die Anzahl der Karten auf der Hand deines Gegners. Ziehe ebenso viele Karten."
|
|
}
|
|
}
|
|
|
|
export default card
|