import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../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.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/85/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw2/85/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw2/85/high.png", }, }, evolveFrom: { en: "Minccino", fr: "Chinchidou", }, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "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