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: "xy5-5", localId: 5, // Card informations name: { en: "Tangrowth", fr: "Bouldeneu", }, hp: 130, type: [ Type.GRASS, ], dexId: 465, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/5/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/5/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/5/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/5/high", }, }, evolveFrom: { en: "Tangela", fr: "Saquedeneu", }, tags: [ Tag.STAGE1, ], illustrator: "MAHOU", attacks: [{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Mega Drain", fr: "Méga-Sangsue", }, text: { en: "Heal 20 damage from this Pokémon.", fr: "Soignez 20 dégâts à ce Pokémon.", }, damage: 50 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Grass Knot", fr: "Nœud Herbe", }, text: { en: "This attack does 10 more damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.", fr: "Cette attaque inflige 10 dégâts supplémentaires pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.", }, damage: 80 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card