import { Card } from '../../../interfaces' import Set from '../Unseen Forces' const card: Card = { name: { en: "Poliwag", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 60, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Hypnosis", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { name: { en: "Wave Splash", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card