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: "xy2-83", localId: 83, // Card informations name: { en: "Miltank", fr: "Écrémeuh", }, hp: 100, type: [ Type.COLORLESS, ], dexId: 241, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy2/83/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy2/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy2/83/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy2/83/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 40, name: "Kanako Eo" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Powerful Friends", fr: "Force de l'Amitié", }, text: { en: "If you have any Stage 2 Pokémon on your Bench, this attack does 70 more damage.", fr: "Si vous avez un Pokémon de Niveau 2 sur votre Banc, cette attaque inflige 70 dégâts supplémentaires.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hammer In", fr: "Enfoncement", }, damage: 60 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Flashfire", code: "xy2" } } export default card