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: "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", }, high: { en: "https://assets.tcgdex.net/en/ex/ex11/22/high", }, }, evolveFrom: { en: "Holon's Magnemite", }, tags: [ Tag.STAGE1, ], illustrator: "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