import { Card } from '../../../interfaces' import Set from '../Evolutions' const card: Card = { name: { en: "Poliwrath", fr: "Tartard", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 62, ], hp: 140, types: [ "Water", ], evolveFrom: { en: "Poliwhirl", fr: "Têtarte", }, stage: "Stage2", attacks: [ { cost: [ "Water", ], name: { en: "Dashing Punch", fr: "Poing Épique", }, effect: { en: "If this Pokémon was on the Bench and became your Active Pokémon this turn, this attack does 50 more damage.", fr: "Si ce Pokémon était sur le Banc et est devenu votre Pokémon Actif pendant ce tour, cette attaque inflige 50 dégâts supplémentaires.", }, damage: "50+", }, { cost: [ "Water", "Water", "Water", ], name: { en: "Whirlpool", fr: "Siphon", }, effect: { en: "Discard an Energy attached to your opponent’s Active Pokémon.", fr: "Défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 80, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 2, } export default card