import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Mudkip", fr: "Gobou", }, illustrator: "Aya Kusube", rarity: "None", category: "Pokemon", set: Set, dexId: [ 258, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Mud-Slap", fr: "Coud'Boue", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, description: { en: "To alert it, the fin on its head senses the flow of water. It has the strength to heft boulders." }, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card