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: "pl3-38", localId: 38, // Card informations name: { en: "Parasect", fr: "Parasect", }, hp: 80, type: [ Type.GRASS, ], dexId: 47, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl3/38/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl3/38/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl3/38/high.png", }, }, evolveFrom: { en: "Paras", fr: "Paras", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Nutritional Support", fr: "Support nutritionnel", }, text: { en: "Search your deck for up to 2 Grass Energy cards and attach them to any of your Pokémon in any way you like. Shuffle your deck afterward.", fr: "Choisissez dans votre deck jusqu'à 2 cartes Énergie Grass et attachez-les à n'importe lequel de vos Pokémon de la façon que vous voulez. Ensuite, mélangez votre deck.", }, },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Hibernation Spore", fr: "Spore d'hibernation", }, text: { en: "The Defending Pokémon is now Asleep. Flip 2 coins instead of 1 between turns. If either of them is tails, the Defending Pokémon is still Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi. Lancez 2 pièces au lieu d'1 entre deux tours. Si l'une d'elles est pile, le Pokémon Défenseur reste Endormi.", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "+20" }], retreat: 1, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Supreme Victors", code: "pl3" } } export default card