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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/6/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 32, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card