1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

22 lines
319 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Pokédex"
},
illustrator: "Yuu Nishida",
rarity: "One Diamond",
category: "Trainer",
effect: {
en: "Look at the top 3 cards of your deck."
},
trainerType: "Item"
}
export default card