import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex11-90", localId: 90, // Card informations name: { en: "Great Ball", }, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/90/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/90/high.png", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: { id: 16, name: "Nakaoka" }, attacks: [{ name: { en: "Great Ball", }, text: { en: "Search your deck for a Basic Pokémon (excluding Pokémon-ex) and put it onto your Bench. Shuffle your deck afterward.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Delta Species", code: "ex11" } } export default card