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: "ex7-39", localId: 39, // Card informations name: { en: "Dark Magneton", }, hp: 70, type: [ Type.LIGHTNING, Type.DARKNESS, ], dexId: 82, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex7/39/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex7/39/high", }, }, evolveFrom: { en: "Magnemite", }, tags: [ Tag.STAGE1, ], illustrator: "Emi Miwa", attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Magnetic Lines", }, text: { en: "If your opponent has at least 2 Pokémon in play, move a basic Energy card from the Defending Pokémon to another of your opponent's Pokémon.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Poison Pulse", }, text: { en: "The Defending Pokémon is now Poisoned.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Team Rocket Returns", code: "ex7" } } export default card