mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
23 lines
313 B
TypeScript
23 lines
313 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Promos-A"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Professor's Research"
|
|
},
|
|
|
|
illustrator: "Naoki Saito",
|
|
rarity: "One Diamond",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Draw 2 cards."
|
|
},
|
|
|
|
trainerType: "Supporter"
|
|
}
|
|
|
|
export default card
|