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: "bw9-93", localId: 93, // Card informations name: { en: "Miltank", fr: "Écrémeuh", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 241, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/93/low", fr: "https://assets.tcgdex.net/fr/bw/bw9/93/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/93/high", fr: "https://assets.tcgdex.net/fr/bw/bw9/93/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "MAHOU", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Max Milk", fr: "Lait Max", }, text: { en: "Heal all damage from 1 of your Pokémon. Then, discard all Energy attached to this Pokémon.", fr: "Soignez tous les dégâts de l'un de vos Pokémon. Ensuite, défaussez toutes les Énergies attachées à ce Pokémon.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tackle", fr: "Charge", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 3, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card