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: "ex11-22", localId: 22, // Card informations name: { en: "Holon's Magneton", }, hp: 70, type: [ Type.METAL, ], dexId: 82, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex11/22/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/22/high.png", }, }, evolveFrom: { en: "Holon's Magnemite", }, tags: [ Tag.STAGE1, ], illustrator: { id: 76, name: "Katsura Tabata" }, attacks: [{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Extra Ball", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 20 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.GRASS, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Delta Species", code: "ex11" } } export default card