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: "sm5-74", localId: 74, // Card informations name: { en: "Weavile", fr: "Dimoret", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 461, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/74/low", fr: "https://assets.tcgdex.net/fr/sm/sm5/74/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/74/high", fr: "https://assets.tcgdex.net/fr/sm/sm5/74/high", }, }, evolveFrom: { en: "Sneasel", fr: "Farfuret", }, tags: [ Tag.STAGE1, ], illustrator: "Misa Tsutsui", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Icy Wind", fr: "Vent Glace", }, text: { en: "Your opponent's Active Pokémon is now Asleep.", fr: "Le Pokémon Actif de votre adversaire est maintenant Endormi.", }, damage: 10 },{ cost: [ Type.DARKNESS ], name: { en: "Evil Admonition", fr: "Réprimande Maléfique", }, text: { en: "This attack does 50 damage for each of your opponent's Pokémon that has an Ability.", fr: "Cette attaque inflige 50 dégâts pour chaque Pokémon de votre adversaire ayant un talent.", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card