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: "smp-SM55", localId: "SM55", // Card informations name: { en: "Decidueye", fr: "Archéduc", }, hp: 140, type: [ Type.GRASS, ], dexId: 724, image: { low: { en: "https://assets.tcgdex.net/en/sm/smp/SM55/low", fr: "https://assets.tcgdex.net/fr/sm/smp/SM55/low", }, high: { en: "https://assets.tcgdex.net/en/sm/smp/SM55/high", fr: "https://assets.tcgdex.net/fr/sm/smp/SM55/high", }, }, evolveFrom: { en: "Dartrix", fr: "Efflèche", }, tags: [ Tag.STAGE2, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.GRASS ], name: { en: "Leaf Blade", fr: "Lame-Feuille", }, text: { en: "Flip a coin. If heads, this attack does 30 more damage.", fr: "Lancez une pièce. Si c’est face, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 30 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Brave Bird", fr: "Rapace", }, text: { en: "This Pokémon does 20 damage to itself.", fr: "Ce Pokémon s’inflige 20 dégâts.", }, damage: 120 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card