mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 10:49:55 +00:00
35 lines
892 B
TypeScript
35 lines
892 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../HeartGold SoulSilver'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Copycat",
|
||
fr: "Copieuse",
|
||
de: "Nachahmerin"
|
||
},
|
||
|
||
illustrator: "Kanako Eo",
|
||
rarity: "Uncommon",
|
||
category: "Trainer",
|
||
set: Set,
|
||
|
||
effect: {
|
||
fr: "Vous ne pouvez jouer qu’une carte Supporter à chaque tour. Lorsque vous jouez cette carte, placez-la près de votre Pokémon actif. Une fois votre tour terminé, défaussez-vous de cette carte.",
|
||
en: "Shuffle your hand into your deck. Then, draw a number of cards equal to the number of cards in your opponent’s hand.",
|
||
de: "Mische deine Handkarten in dein Deck. Zähle danach die Anzahl der Karten auf der Hand deines Gegners. Ziehe ebenso viele Karten."
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
hp: 0
|
||
}
|
||
|
||
export default card
|