import { Card } from '../../../interfaces' import Set from '../Base Set' const card: Card = { name: { en: "Dewgong", }, illustrator: "Mitsuhiro Arita", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 87, ], hp: 80, types: [ "Water", ], evolveFrom: { en: "Seel", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Water", "Colorless", ], name: { en: "Aurora Beam", }, damage: 50, }, { cost: [ "Water", "Water", "Colorless", "Colorless", ], name: { en: "Ice Beam", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card