import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Poliwhirl", }, illustrator: "Hisao Nakamura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 61, ], hp: 70, types: [ "Water", ], evolveFrom: { en: "Poliwag", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Twiddle", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused. If tails, the Defending Pokémon is now Asleep.", }, }, { cost: [ "Colorless", "Colorless", "Colorless", ], name: { en: "Double Kick", }, effect: { en: "Flip 2 coins. This attack does 30 damage times the number of heads.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card