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: "ecard3-76", localId: 76, // Card informations name: { en: "Magnemite", }, hp: 40, type: [ Type.LIGHTNING, ], dexId: 81, image: { low: { en: "https://assets.tcgdex.net/en/ecard/ecard3/76/low.png", }, high: { en: "https://assets.tcgdex.net/en/ecard/ecard3/76/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 119, name: "Shin-ichi Yoshida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Thunder Wave", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Magnetic Lines", }, text: { en: "If the Defending Pokémon has any basic Energy cards attached to it, flip a coin. If heads, choose 1 of those Energy cards and move it to 1 of your opponent's Benched Pokémon. If your opponent has no Benched Pokémon, ignore this effect.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Skyridge", code: "ecard3" } } export default card