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: "dp2-58", localId: 58, // Card informations name: { en: "Parasect", }, hp: 90, type: [ Type.GRASS, ], dexId: 47, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp2/58/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp2/58/high", }, }, evolveFrom: { en: "Paras", }, tags: [ Tag.STAGE1, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.GRASS ], name: { en: "Wild Spores", }, text: { en: "If Parasect evolved from Paras during this turn, this attack does 40 damage and the Defending Pokémon is now Asleep and Poisoned.", }, damage: 20 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Extend Fungus", }, text: { en: "Remove 2 damage counters from Parasect.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Mysterious Treasures", code: "dp2" } } export default card