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