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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/RC19/high.png", }, }, evolveFrom: { en: "Minccino", }, tags: [ Tag.STAGE1, ], illustrator: { id: 0, name: "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