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: "base5-60", localId: 60, // Card informations name: { en: "Magnemite", }, hp: 40, type: [ Type.LIGHTNING, ], dexId: 81, image: { low: { en: "https://assets.tcgdex.net/en/base/base5/60/low", }, high: { en: "https://assets.tcgdex.net/en/base/base5/60/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Miki Tanaka", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tackle", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Magnetism", }, text: { en: "Does 10 damage plus 10 more damage for each Magnemite, Magneton, and Dark Magneton on your Bench.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Team Rocket", code: "base5" } } export default card