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: "ex10-41", localId: 41, // Card informations name: { en: "Magcargo", }, hp: 80, type: [ Type.FIRE, ], dexId: 219, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex10/41/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex10/41/high", }, }, evolveFrom: { en: "Slugma", }, tags: [ Tag.STAGE1, ], illustrator: "Tomokazu Komiya", abilities: [{ id: 230, type: AbilityType.POKEBODY, name: { en: "Dual Armor", }, text: { en: "As long as Magcargo has any Fighting Energy attached to it, Magcargo is both Fire and Fighting type.", } }], attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Smokescreen", }, text: { en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.", }, damage: 30 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Extra Flame", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 40 damage plus 30 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Unseen Forces", code: "ex10" } } export default card