import { Card } from '../../../interfaces' import Set from '../Gym Heroes' const card: Card = { name: { en: "Misty's Poliwag", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 60, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Hypnotic Stare", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep.", }, }, { cost: [ "Water", "Colorless", ], name: { en: "Tail Rap", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], } export default card