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: "pop3-3", localId: 3, // Card informations name: { en: "Jolteon", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 135, image: { low: { en: "https://assets.tcgdex.net/en/pop/pop3/3/low.png", }, high: { en: "https://assets.tcgdex.net/en/pop/pop3/3/high.png", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: { id: 8, name: "Masakazu Fukuda" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Thundershock", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Pin Missile", }, text: { en: "Flip 4 coins. This attack does 20 damage times the number of heads.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-30" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "POP Series 3", code: "pop3" } } export default card