import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Poliwag", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 60, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Spiral Attack", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Tail Whap", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card