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: "bw11-RC19", localId: "RC19", // Card informations name: { en: "Cinccino", }, hp: 90, type: [ Type.COLORLESS, ], dexId: 573, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/RC19/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/RC19/high", }, }, evolveFrom: { en: "Minccino", }, tags: [ Tag.STAGE1, ], illustrator: "Kagemaru Himeno", abilities: [{ id: 361, type: AbilityType.TALENT, name: { en: "Smooth Coat", }, text: { en: "If any damage is done to this Pokémon by attacks, flip a coin. If heads, prevent that damage.", } }], attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Echoed Voice", }, text: { en: "During your next turn, this Pokémon's Echoed Voice attack does 50 more damage (before applying Weakness and Resistance).", }, damage: 50 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card