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: "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.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/27/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/27/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm12/27/high.png", }, }, evolveFrom: { en: "Slugma", fr: "Limagma", }, tags: [ Tag.STAGE1, ], illustrator: { id: 37, name: "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