import { Card } from '../../../interfaces' import Set from '../Ruby & Sapphire' const card: Card = { name: { en: "Mudkip", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 258, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Pound", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card