1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat(asian): Updated SV6 and added SV6a & SV6s (#502)

This commit is contained in:
2024-10-10 00:44:36 +02:00
committed by GitHub
parent 4f2c27937a
commit 1d14078dd8
365 changed files with 13098 additions and 481 deletions

57
data-asia/SV/SV6a/028.ts Normal file
View File

@ -0,0 +1,57 @@
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