import { Card } from '../../../interfaces' import Set from '../Holon Phantoms' const card: Card = { name: { en: "Pikachu Star", }, illustrator: "Masakazu Fukuda", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 25, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Thundershock", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 10, }, { cost: [ "Lightning", "Lightning", ], name: { en: "Spring Back", }, effect: { en: "If your opponent has only 1 Prize card left, this attack does 20 damage plus 50 more damage.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], } export default card