import { Card } from "../../../interfaces" import Set from "../Eevee Grove" const card: Card = { set: Set, name: { en: "Meltan" }, illustrator: "HYOGONOSUKE", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Metal"], description: { en: "It dissolves and eats metal. Circulating liquid\nmetal within its body is how it generates energy." }, stage: "Basic", attacks: [{ name: { en: "Headbutt" }, damage: 20, cost: ["Metal"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card