import { Card } from '../../../interfaces' import Set from '../Promos' const card: Card = { name: { en: "Pikipek", }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 731, ], hp: 60, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Nosedive", }, effect: { en: "This Pokémon does 20 damage to itself.", }, damage: 40, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fightning", value: "-20" }, ], } export default card