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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/43/high.png", }, }, evolveFrom: { en: "Paras", }, tags: [ Tag.STAGE1, ], illustrator: { id: 45, name: "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