mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-13 04:17:49 +00:00
* First batch Missing more informations like Attacks,etc but it will be added later Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some data Signed-off-by: Avior <florian.bouillon@delta-wings.net>
28 lines
444 B
TypeScript
28 lines
444 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Copycat"
|
||
},
|
||
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "Shuffle your hand into your deck. Then, draw a card for each card in your opponent’s hand."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card |