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: "sm12-27", localId: 27, // Card informations name: { en: "Magcargo", fr: "Volcaropod", }, hp: 120, type: [ Type.FIRE, ], dexId: 219, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/27/low", fr: "https://assets.tcgdex.net/fr/sm/sm12/27/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/27/high", fr: "https://assets.tcgdex.net/fr/sm/sm12/27/high", }, }, evolveFrom: { en: "Slugma", fr: "Limagma", }, tags: [ Tag.STAGE1, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.FIRE ], name: { en: "Stomp Off", fr: "Tohu-Bohu", }, text: { en: "Discard the top 2 cards of your opponent's deck.", fr: "Défaussez les 2 cartes du dessus du deck de votre adversaire.", }, },{ cost: [ 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: 3, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card