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: "sm5-18", localId: 18, // Card informations name: { en: "Magmar", fr: "Magmar", }, hp: 80, type: [ Type.FIRE, ], dexId: 126, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/18/low", fr: "https://assets.tcgdex.net/fr/sm/sm5/18/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/18/high", fr: "https://assets.tcgdex.net/fr/sm/sm5/18/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 58, name: "Yumi" }, attacks: [{ cost: [ Type.FIRE ], name: { en: "Controlled Burn", fr: "Feu Contrôlé", }, text: { en: "Discard the top card of your opponent's deck.", fr: "Défaussez la carte du dessus du deck de votre adversaire.", }, },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Flamethrower", fr: "Lance-Flammes", }, text: { en: "Discard an Energy from this Pokémon.", fr: "Défaussez une Énergie de ce Pokémon.", }, damage: 80 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card