import { Card } from "../../../interfaces" import Set from "../SV6a" const card: Card = { set: Set, name: { 'zh-tw': "大嘴蝠" }, illustrator: "Teeziro", category: "Pokemon", hp: 80, types: ["Darkness"], description: { 'zh-tw': "喜歡吸食生物的血液。 據說還會將吸來的血 分給空腹的夥伴。" }, stage: "Stage1", attacks: [{ name: { 'zh-tw': "高速飛行" }, damage: 30, cost: ["Darkness"] }, { name: { 'zh-tw': "漆黑利刃" }, effect: { 'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。" }, damage: 80, cost: ["Darkness", "Colorless"] }], weaknesses: [{ type: "Lightning", value: "×2" }], resistances: [{ type: "Fighting", value: "-30" }], retreat: 1, regulationMark: "H", rarity: "Common" } export default card