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: "bw2-8", localId: 8, // Card informations name: { en: "Leavanny", fr: "Manternel", }, hp: 130, type: [ Type.GRASS, ], dexId: 542, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/8/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/8/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/8/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/8/high", }, }, evolveFrom: { en: "Swadloon", fr: "Couverdure", }, tags: [ Tag.STAGE2, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Slash", fr: "Tranche", }, damage: 30 },{ cost: [ Type.GRASS, Type.GRASS, Type.COLORLESS ], name: { en: "Triple Cutter", fr: "Triple Lame", }, text: { en: "Flip 3 coins. This attack does 60 damage times the number of heads.", fr: "Lancez 3 pièces. Cette attaque inflige 60 dégâts multipliés par le nombre de côtés face.", }, damage: 60 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card