import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Poliwag" }, illustrator: "Shibuzoh.", category: "Pokemon", hp: 60, types: ["Water"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Razor Fin" }, damage: "10" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "For Poliwag, swimming is easier than walking. The swirl pattern on its belly is actually part of the Pokémon's innards showing through the skin.", } } export default card