1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

22 lines
345 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Poké Ball"
},
illustrator: "Ryo Ueda",
rarity: "One Diamond",
category: "Trainer",
description: {
en: "Put 1 random Basic Pokémon from your deck into your hand."
},
trainerType: "Item"
}
export default card