1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

60 lines
1.6 KiB
TypeScript
Raw 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ゴルバット",
'zh-tw': "大嘴蝠",
th: "โกลแบท"
},
illustrator: "Eri Yamaki",
rarity: "Common",
category: "Pokemon",
dexId: [42],
hp: 80,
types: ["Darkness"],
description: {
ja: "小さな 脚で 器用に 歩く。 寝ている 獲物に 忍びより キバを 突きたて 血を すするのだ。",
'zh-tw': "能以小小的腳靈巧地步行。會無聲無息地靠近沉睡中的獵物, 用獠牙咬住對方並且吸食血液。",
th: "เดินอย่างคล่องตัวด้วยขาขนาดเล็ก แอบฝังเขี้ยวเข้ากับเหยื่อที่กำลังหลับใหลและดูดเลือด"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "きゅうけつ",
'zh-tw': "吸血",
th: "ดูดเลือด"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンに与えたダメージぶん、このポケモンのHPを回復する。",
'zh-tw': "將這隻寶可夢恢復對對手的戰鬥寶可夢造成的傷害相同數值的HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ ตามจำนวนแดเมจที่ทำกับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card