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-20", localId: 20, // Card informations name: { en: "Magcargo", }, hp: 80, type: [ Type.FIRE, ], dexId: 219, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex8/20/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex8/20/high", }, }, evolveFrom: { en: "Slugma", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", abilities: [{ id: 788, type: AbilityType.POKEPOWER, name: { en: "Smooth Over", }, text: { en: "Once during your turn (before your attack), you may search your deck for a card. Shuffle your deck, then put that card on top of your deck. This power can't be used if Magcargo is affected by a Special Condition.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Knock Over", }, text: { en: "You may discard any Stadium card in play.", }, damage: 10 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Combustion", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Deoxys", code: "ex8" } } export default card