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: "ex6-43", localId: 43, // Card informations name: { en: "Parasect", }, hp: 70, type: [ Type.GRASS, ], dexId: 47, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/43/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/43/high", }, }, evolveFrom: { en: "Paras", }, tags: [ Tag.STAGE1, ], illustrator: "Yuka Morii", attacks: [{ cost: [ Type.GRASS ], name: { en: "Energy Powder", }, text: { en: "Search your deck for up to 2 basic Energy cards and attach them to any of your Pokémon (excluding Pokémon-ex) in any way you like. Shuffle your deck afterward.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Toxic Spore", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card