import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Detective Pikachu", }, illustrator: "MPC Film", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 90, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Brilliant Deduction", }, effect: { en: "Look at the top 4 cards of your deck and put 1 of them into your hand. Shuffle the other cards back into your deck.", }, }, ], weaknesses: [ { type: "Fightning", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], } export default card