import { Card } from "../../../interfaces" import Set from "../SI" const card: Card = { set: Set, name: { 'zh-tw': "滾滾蝙蝠" }, illustrator: "Yuka Morii", category: "Pokemon", hp: 60, types: ["Psychic"], stage: "Basic", attacks: [{ name: { 'zh-tw': "呼喚" }, effect: { 'zh-tw': "從自己的牌庫抽出1張卡。" }, cost: ["Colorless"] }, { name: { 'zh-tw': "咬" }, damage: 10, cost: ["Psychic"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "E" } export default card