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: "dpp-DP21", localId: "DP21", // Card informations name: { en: "Raichu", }, hp: 90, type: [ Type.LIGHTNING, ], dexId: 26, image: { low: { en: "https://assets.tcgdex.net/en/dp/dpp/DP21/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dpp/DP21/high.png", }, }, evolveFrom: { en: "Pikachu", }, tags: [ Tag.STAGE1, ], illustrator: { id: 94, name: "Daisuke Ito" }, attacks: [{ name: { en: "Electromagnetic Induction", }, text: { en: "Search your deck for up to 2 Lightning Energy cards and attach them to 1 of your Pokémon. Shuffle your deck afterward.", }, },{ cost: [ Type.LIGHTNING, Type.COLORLESS ], name: { en: "Explosive Thunder", }, text: { en: "Discard all basic Lightning Energy cards attached to Raichu. This attack does 30 damage times the number of Lightning Energy cards you discarded.", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "+20" }], resistances: [{ type: Type.METAL, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "DP Black Star Promos", code: "dpp" } } export default card