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: "xy2-52", localId: 52, // Card informations name: { en: "Weavile", fr: "Dimoret", }, hp: 90, type: [ Type.DARKNESS, ], dexId: 461, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy2/52/low", fr: "https://assets.tcgdex.net/fr/xy/xy2/52/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy2/52/high", fr: "https://assets.tcgdex.net/fr/xy/xy2/52/high", }, }, evolveFrom: { en: "Sneasel", fr: "Farfuret", }, tags: [ Tag.STAGE1, ], illustrator: "Shigenori Negishi", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", fr: "Appel à la Famille", }, text: { en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", fr: "Cherchez jusqu'à 2 Pokémon de base dans votre deck et placez-les sur votre Banc. Mélangez ensuite votre deck.", }, },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Claw Rend", fr: "Déchirure", }, text: { en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 30 more damage.", fr: "Si le Pokémon Actif de votre adversaire a déjà des marqueurs de dégâts, cette attaque inflige 30 dégâts supplémentaires.", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Flashfire", code: "xy2" } } export default card