1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00

32 lines
413 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Delta Species'
const card: Card = {
name: {
en: "Great Ball",
},
illustrator: "Nakaoka",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Search your deck for a Basic Pokémon (excluding Pokémon-ex) and put it onto your Bench. Shuffle your deck afterward.",
},
trainerType: "Item",
}
export default card