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: "xy7-56", localId: 56, // Card informations name: { en: "Whimsicott", fr: "Farfaduvet", }, hp: 70, type: [ Type.FAIRY, ], dexId: 547, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy7/56/low", fr: "https://assets.tcgdex.net/fr/xy/xy7/56/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy7/56/high", fr: "https://assets.tcgdex.net/fr/xy/xy7/56/high", }, }, evolveFrom: { en: "Cottonee", fr: "Doudouvet", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.FAIRY ], name: { en: "Windy Mischief", fr: "Espièglerie Venteuse", }, text: { en: "Move all damage counters from 1 of your Benched Pokémon to your opponent's Active Pokémon.", fr: "Déplacez tous les marqueurs de dégâts de l'un de vos Pokémon de Banc vers le Pokémon Actif de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Rolling Tackle", fr: "Roulé-Boulé", }, damage: 30 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Ancient Origins", code: "xy7" } } export default card