import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Copycat", fr: "Copieuse", }, 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." }, trainerType: "Supporter", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, hp: 0 } export default card