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: "swsh1-145", localId: 145, // Card informations name: { en: "Minccino", fr: "Chinchidou", }, hp: 70, type: [ Type.COLORLESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/145/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/145/low", } }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sekio", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Glance", fr: "Coup d’Œil", }, text: { en: "Look at the top card of your opponent’s deck.", fr: "Regardez la carte du dessus du deck de votre adversaire.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tail Slap", fr: "Plumo-Queue", }, text: { en: "Flip 2 coins. This attack does 20 damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts pour chaque côté face.", }, damage: "20×" }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card