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: "ex2-6", localId: 6, // Card informations name: { en: "Jolteon", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 135, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/6/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/6/high", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: "Atsuko Nishida", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Double Kick", }, text: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING, Type.COLORLESS ], name: { en: "Lightning Strike", }, text: { en: "You may discard all Lightning Energy cards attached to Jolteon. If you do, this attack's base damage is 70 instead of 40.", }, damage: 40 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-30" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card