1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

57 lines
837 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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