1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Promos-A/004.ts

22 lines
321 B
TypeScript

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