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' const card: Card = { // ids id: "ex7-56", localId: 56, // Card informations name: { en: "Grimer", }, hp: 50, type: [ Type.GRASS, ], dexId: 88, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/56/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/56/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Aya Kusube", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Taunt", }, text: { en: "Choose 1 of your opponent's Benched Pokémon and switch it with 1 of the Defending Pokémon. Your opponent chooses the Defending Pokémon to switch.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Spit Poison", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 10 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card