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: "ex8-37", localId: 37, // Card informations name: { en: "Magcargo", }, hp: 80, type: [ Type.FIRE, ], dexId: 219, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/37/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/37/high.png", }, }, evolveFrom: { en: "Slugma", }, tags: [ Tag.STAGE1, ], illustrator: { id: 43, name: "Aya Kusube" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Headbutt", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Burning Ball", }, text: { en: "If Magcargo has at least 2 Fire Energy attached to it, the Defending Pokémon is now Burned.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card