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: "sm11-59", localId: 59, // Card informations name: { en: "Magneton", fr: "Magnéton", }, hp: 90, type: [ Type.LIGHTNING, ], dexId: 82, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm11/59/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/59/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm11/59/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm11/59/high.png", }, }, evolveFrom: { en: "Magnemite", fr: "Magnéti", }, tags: [ Tag.STAGE1, ], illustrator: { id: 58, name: "Yumi" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Lightning Ball", fr: "Boule Éclair", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Tri Attack", fr: "Triplattaque", }, text: { en: "Flip 3 coins. This attack does 40 damage for each heads.", fr: "Lancez 3 pièces. Cette attaque inflige 40 dégâts pour chaque côté face.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 2, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Unified Minds", code: "sm11" } } export default card