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: "xy5-23", localId: 23, // Card informations name: { en: "Magcargo", fr: "Volcaropod", }, hp: 120, type: [ Type.FIRE, ], dexId: 219, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/23/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/23/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/23/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/23/high", }, }, evolveFrom: { en: "Slugma", fr: "Limagma", }, tags: [ Tag.STAGE1, ], illustrator: "Shigenori Negishi", attacks: [{ cost: [ Type.FIRE ], name: { en: "Flame Burst", fr: "Rebondifeu", }, text: { en: "This attack does 20 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à 2 des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Flamethrower", fr: "Lance-Flammes", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 90 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 4, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card