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: "sm8-2", localId: 2, // Card informations name: { en: "Tangrowth", fr: "Bouldeneu", }, hp: 140, type: [ Type.GRASS, ], dexId: 465, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/2/low", fr: "https://assets.tcgdex.net/fr/sm/sm8/2/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/2/high", fr: "https://assets.tcgdex.net/fr/sm/sm8/2/high", }, }, evolveFrom: { en: "Tangela", fr: "Saquedeneu", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hefty Whip", fr: "Fouet Robuste", }, text: { en: "If this Pokémon was healed during this turn, this attack does 130 more damage.", fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 130 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Whip Smash", fr: "Frappe Fouet", }, damage: 110 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Lost Thunder", code: "sm8" } } export default card