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: "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.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/93/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/93/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/93/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 46, name: "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