import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Mawile" }, illustrator: "Kouki Saitou", rarity: "One Diamond", category: "Pokemon", hp: 70, types: ["Metal"], description: { en: "It uses its docile-looking face to lull foes into\ncomplacency, then bites with its huge,\nrelentless jaws." }, stage: "Basic", attacks: [{ name: { en: "Bite" }, damage: 30, cost: ["Metal"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card