import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "多邊獸" }, illustrator: "ryoma uratsuka", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ name: { 'zh-tw': "稜角化" }, damage: 20, cost: ["Colorless"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 2, regulationMark: "E" } export default card