import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "不良蛙" }, illustrator: "Nagomi Nijo", category: "Pokemon", hp: 60, types: ["Darkness"], stage: "Basic", attacks: [{ name: { 'zh-tw': "推擊" }, damage: 20, cost: ["Darkness"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, regulationMark: "E" } export default card