import { Card } from '../../../interfaces' import Set from '../Gym Challenge' const card: Card = { name: { en: "Misty's Staryu", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 120, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Star Boomerang", }, effect: { en: "Flip a coin. If heads, return Misty's Staryu and all cards attached to it to your hand. (Either way, this attack does its damage.)", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card