1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-22 08:09:54 +00:00
2025-05-04 00:37:30 +02:00

22 lines
422 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../EX trainer Kit 2 (Plusle)'
const card: Card = {
name: {
en: "Professor Cozmo's Discovery"
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Trainer",
set: Set,
trainerType: "Supporter",
effect: {
en: "Flip a coin. If heads, draw the bottom 3 cards of your deck. If tails, draw the top 2 cards of your deck."
}
}
export default card