import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "銅鏡怪" }, illustrator: "Mizue", category: "Pokemon", hp: 60, types: ["Metal"], stage: "Basic", attacks: [{ name: { 'zh-tw': "衝撞" }, damage: 30, cost: ["Metal", "Colorless"] }], weaknesses: [{ type: "Fire", value: "×2" }], resistances: [{ type: "Grass", value: "-30" }], retreat: 1, regulationMark: "E" } export default card