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: "xy8-53", localId: 53, // Card informations name: { en: "Magneton", fr: "Magnéton", }, hp: 80, type: [ Type.LIGHTNING, ], dexId: 82, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/53/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/53/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/53/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/53/high.png", }, }, evolveFrom: { en: "Magnemite", fr: "Magnéti", }, tags: [ Tag.STAGE1, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Static Shock", fr: "Choc Statique", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Electro Ball", fr: "Boule Élek", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 70 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card