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: "sm8-185", localId: 185, // Card informations name: { en: "Moomoo Milk", fr: "Lait Meumeu", }, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm8/185/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/185/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm8/185/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm8/185/high.png", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: { id: 6, name: "Ayaka Yoshida" }, attacks: [{ name: {}, text: { fr: "Choisissez l’un de vos Pokémon, puis lancez 2 pièces. Pour chaque côté face, soignez 30 dégâts à ce Pokémon-là.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Lost Thunder", code: "sm8" } } export default card