1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

56 lines
1.2 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 "../SVDs"
const card: Card = {
set: Set,
name: {
th: "แกรนบูล",
id: "Granbull"
},
illustrator: "Lee HyunJung",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
th: "เป็นที่นิยมในหมู่สาว ๆ แต่นอกจากจะขี้ขลาดแล้วยังละเอียดอ่อน จึงใช้เป็นหมาเฝ้าบ้านไม่ได้",
id: "Walaupun populer di antara gadis muda, Granbull tidak berbakat sebagai anjing penjaga karena Pokémon ini penakut dan sensitif."
},
stage: "Stage1",
attacks: [{
name: {
th: "ตั้งใจสู้",
id: "Menentang"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}, {
name: {
th: "ไวลด์แท็กเกิล",
id: "Wild Tackle"
},
effect: {
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
},
damage: 160,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card