import { Card } from '../../../interfaces' import Set from '../Aquapolis' const card: Card = { name: { en: "Seaking", }, illustrator: "Sumiyoshi Kizuki", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 119, ], hp: 70, types: [ "Water", ], evolveFrom: { en: "Goldeen", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Flail", }, effect: { en: "Does 10 damage times the number of damage counters on Seaking.", }, damage: 10, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Undulate", }, effect: { en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Seaking.", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card