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: "bw11-RC23", localId: "RC23", // Card informations name: { en: "Emolga", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 587, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw11/RC23/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw11/RC23/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 32, name: "Atsuko Nishida" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", }, text: { en: "Search your deck for 2 Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.", }, },{ cost: [ Type.LIGHTNING ], name: { en: "Static Shock", }, damage: 20 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareUltra, category: Category.POKEMON, set: { name: "Legendary Treasures", code: "bw11" } } export default card