import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' import set from '../../../sets/swsh/swsh35' const card: Card = { // Card Global Informations id: "swsh35-52", localId: 52, name: { en: "Great Ball", }, illustrator: "Toyste Beach", rarity: Rarity.UNCOMMON, category: Category.TRAINER, set, // Card Pokémon Informations // Card Trainer/Energy informations effect: { en: "Look at the top 7 cards of your deck. You may reveal a Pokémon you find there and put it into your hand. Shuffle the other cards back into your deck.", }, } export default card