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-85", localId: 85, // Card informations name: { en: "Cinccino", fr: "Pashmilla", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 573, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw2/85/low", fr: "https://assets.tcgdex.net/fr/bw/bw2/85/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/85/high", fr: "https://assets.tcgdex.net/fr/bw/bw2/85/high", }, }, evolveFrom: { en: "Minccino", fr: "Chinchidou", }, tags: [ Tag.STAGE1, ], illustrator: "Mizue", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Captivate", fr: "Séduction", }, text: { en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon.", fr: "Échangez le Pokémon Défenseur avec 1 des Pokémon de Banc de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Fluffy Tail", fr: "Queue Touffue", }, text: { en: "The Defending Pokémon is now Asleep.", fr: "Le Pokémon Défenseur est maintenant Endormi.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Emerging Powers", code: "bw2" } } export default card