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: "sm9-182", localId: 182, // Card informations name: { en: "Celebi & Venusaur-GX", fr: "Celebi et Florizarre-GX", }, hp: 270, type: [ Type.GRASS, ], dexId: 3, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/182/low", fr: "https://assets.tcgdex.net/fr/sm/sm9/182/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/182/high", fr: "https://assets.tcgdex.net/fr/sm/sm9/182/high", }, }, evolveFrom: {}, tags: [ Tag.TAGTEAM, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Pollen Hazard", fr: "Règle des ESCOUADES", }, text: { en: "Your opponent's Active Pokémon is now Burned, Confused, and Poisoned.", }, damage: 50 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Solar Beam", fr: "Pollen Dangereux", }, text: { fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé, Confus et Empoisonné.", }, damage: 150 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Evergreen-GX", fr: "Lance-Soleil", }, text: { en: "Heal all damage from this Pokémon. If this Pokémon has at least 1 extra Grass Energy attached to it (in addition to this attack's cost), shuffle all cards from your discard pile into your deck. (You can't use more than 1 GX attack in a game.)", }, damage: 180 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { fr: "Sempervirent-GX", }, text: { fr: "Soignez tous les dégâts de ce Pokémon. Si au moins une Énergie Grass supplémentaire est attachée à ce Pokémon (en plus du coût de cette attaque), mélangez toutes les cartes dans votre pile de défausse avec votre deck. (Vous ne pouvez utiliser qu’une attaque GX par partie.)", }, damage: 180 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Team Up", code: "sm9" } } export default card