import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Poliwag", }, illustrator: "Miki Tanaka", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 60, ], hp: 40, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Sleep Bubble", }, effect: { en: "The Defending Pokémon is now Asleep.", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Doubleslap", }, effect: { en: "Flip 2 coins. This attack does 20 damage times the number of heads.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card