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: "bwp-BW78", localId: "BW78", // Card informations name: { en: "Raichu", }, hp: 100, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/bw/bwp/BW78/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bwp/BW78/high.png", }, }, evolveFrom: {}, tags: [ Tag.STAGE1, ], illustrator: { id: 3, name: "Mizue" }, attacks: [{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Quick Attack", }, text: { en: "Flip a coin. If heads, this attack does 20 more damage.", }, damage: 30 },{ cost: [ Type.LIGHTNING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Thunder Blast", }, text: { en: "Discard an Energy attached to this Pokémon.", }, damage: 90 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "BW Black Star Promos", code: "bwp" } } export default card