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: "dp7-67", localId: 67, // Card informations name: { en: "Magnemite", fr: "Magnemite", }, hp: 50, type: [ Type.LIGHTNING, ], dexId: 81, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp7/67/low", fr: "https://assets.tcgdex.net/fr/dp/dp7/67/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp7/67/high", fr: "https://assets.tcgdex.net/fr/dp/dp7/67/high", }, }, evolveFrom: { fr: "Magneti", }, tags: [ Tag.BASIC, ], illustrator: "Kent Kanetsuna", attacks: [{ name: { en: "Ram", fr: "Collision", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Random Spark", fr: "Étincelle surprise", }, text: { en: "Choose 1 of your opponent's Pokémon. This attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Choisissez 1 des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)", }, }], weaknesses: [{ type: Type.FIGHTING, value: "+10" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Stormfront", code: "dp7" } } export default card