mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-23 16:49:53 +00:00
32 lines
347 B
TypeScript
32 lines
347 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Champion\'s Path'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Professor’s Research (Professor Magnolia)",
|
||
},
|
||
illustrator: "Yusuke Ohmura",
|
||
rarity: "Rare",
|
||
category: "Trainer",
|
||
|
||
set: Set,
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
effect: {
|
||
en: "Discard your hand and draw 7 cards.",
|
||
},
|
||
|
||
|
||
}
|
||
|
||
export default card
|