import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Pikachu", fr: "Pikachu", es: "Pikachu", it: "Pikachu", pt: "Pikachu", de: "Pikachu" }, illustrator: "nagimiso", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 70, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", "Colorless", ], name: { en: "Pika Ball", fr: "Pika Ball", es: "Pika Ball", it: "Pikasfera", pt: "Bola Pikachu", de: "Pikaball" }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card