import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Poliwrath", }, illustrator: "Hajime Kusajima", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 62, ], hp: 120, types: [ "Fighting", ], evolveFrom: { en: "Poliwhirl", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Spiral Swirl", }, effect: { en: "If Poliwrath is your Active Pokémon and is Knocked Out by damage from an opponent's attack, the Attacking Pokémon is now Confused.", }, }, ], attacks: [ { cost: [ "Fighting", "Colorless", ], name: { en: "Beatdown", }, effect: { en: "If the Defending Pokémon is a Darkness Pokémon or has Dark in its name, this attack does 40 damage plus 30 more damage.", }, damage: 40, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Hyper Splash", }, effect: { en: "If the Defending Pokémon is a Stage 2 Evolved Pokémon, this attack does 60 damage plus 30 more damage.", }, damage: 60, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card