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: "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", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/37/high", }, }, evolveFrom: { en: "Slugma", }, tags: [ Tag.STAGE1, ], illustrator: "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