import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Poliwhirl", }, illustrator: "Ken Sugimori", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 61, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Poliwag", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Energy Stream", }, effect: { en: "Search your discard pile for a basic Energy card and attach it to Poliwhirl.", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Bubble", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card