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: "sm3-10", localId: 10, // Card informations name: { en: "Ledian", fr: "Coxyclaque", }, hp: 90, type: [ Type.GRASS, ], dexId: 166, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm3/10/low", fr: "https://assets.tcgdex.net/fr/sm/sm3/10/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm3/10/high", fr: "https://assets.tcgdex.net/fr/sm/sm3/10/high", }, }, evolveFrom: { en: "Ledyba", fr: "Coxy", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.GRASS ], name: { en: "Swift", fr: "Météores", }, text: { en: "This attack's damage isn't affected by Weakness, Resistance, or any other effects on your opponent's Active Pokémon.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance ou tout autre effet en action sur le Pokémon Actif de votre adversaire.", }, damage: 30 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Comet Punch", fr: "Poing Comète", }, text: { en: "Flip 4 coins. This attack does 40 damage for each heads.", fr: "Lancez 4 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de côtés face.", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Burning Shadows", code: "sm3" } } export default card