1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

61 lines
1.4 KiB
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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "โกลแบท",
id: "Golbat"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 80,
types: ["Darkness"],
description: {
th: "เลือดของสิ่งมีชีวิตคือของโปรด กล่าวกันว่ามีการแบ่งเลือดที่สูบมาได้ให้กับเพื่อนพ้องที่หิวโหยด้วย",
id: "Cairan darah makhluk hidup adalah makanan favoritnya. Kabarnya Golbat kadang juga membagikan darah yang telah diisap kepada sesamanya yang kelaparan."
},
stage: "Stage1",
attacks: [{
name: {
th: "บินเร็วจี๋",
id: "Terbang Cepat"
},
damage: 30,
cost: ["Darkness"]
}, {
name: {
th: "ดาบทมิฬ",
id: "Pisau Hitam Kelam"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 80,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card