import { Card } from '../../../interfaces' import Set from '../Shining Fates' const card: Card = { set: Set, name: { fr: "Mustéflott" }, illustrator: "AKIRA EGAWA", rarity: "Uncommon", category: "Pokemon", hp: 110, types: ["Water"], evolveFrom: { fr: "Mustébouée" }, attacks: [{ name: { fr: "Surf" }, damage: 50, cost: ["Water"] }], weaknesses: [{ type: "Lightning", value: "×2" }], retreat: 1 } export default card