mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
48 lines
1.1 KiB
TypeScript
48 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "คาปู บูลูลู",
|
||
id: "Tapu Bulu"
|
||
},
|
||
|
||
illustrator: "GOSSAN",
|
||
category: "Pokemon",
|
||
hp: 140,
|
||
types: ["Grass"],
|
||
|
||
description: {
|
||
th: "ถอนต้นไม้ใหญ่ขึ้นมาเหวี่ยงไปรอบ ๆ ทำให้ต้นไม้ใบหญ้าเจริญเติบโต แล้วดูดซับพลังงานนั้น",
|
||
id: "Tapu Bulu mencabut pohon besar lalu mengayun-ayunkannya dengan kencang. Ia membuat tanaman tumbuh dengan lebat lalu mengisap energi tersebut."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "วู้ดแฮมเมอร์",
|
||
id: "Wood Hammer"
|
||
},
|
||
|
||
effect: {
|
||
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 30 ด้วย",
|
||
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
|
||
},
|
||
|
||
damage: 220,
|
||
cost: ["Grass", "Grass", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |