import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Misty's Starmie", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 121, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Staryu", }, stage: "Stage1", attacks: [ { cost: [ "Water", ], name: { en: "Water Gun", }, effect: { en: "Does 10 damage plus 10 more damage for each W Energy attached to Misty's Starmie but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.", }, damage: 10, }, { cost: [ "Water", "Water", "Water", ], name: { en: "Bubblebeam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card