mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
28 lines
410 B
TypeScript
28 lines
410 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Celebrations'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Professor’s Research Full Art)"
|
||
},
|
||
|
||
rarity: "Ultra Rare",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
en: "Discard your hand and draw 7 cards."
|
||
},
|
||
|
||
trainerType: "Supporter"
|
||
}
|
||
|
||
export default card |