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: "ex12-32", localId: 32, // Card informations name: { en: "Electrode", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 101, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex12/32/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex12/32/high", }, }, evolveFrom: { en: "Voltorb", }, tags: [ Tag.STAGE1, ], illustrator: "Midori Harada", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Supersonic", }, text: { en: "The Defending Pokémon is now Confused.", }, damage: 10 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Tumbling Attack", }, text: { en: "Flip a coin. If heads, this attack does 40 damage plus 20 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Legend Maker", code: "ex12" } } export default card