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

62 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鴨嘴炎獸",
th: "บูเบิร์น",
ja: "ブーバーン"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
'zh-tw': "大口吸氣時,肚子裡的火焰就會燃燒得更旺盛, 達到攝氏2000度。",
th: "เมื่อสูดลมหายใจเข้าเฮือกใหญ่ เปลวเพลิงในท้องจะพลุ่งจนสูงถึง 2,000 องศาเซลเซียส",
ja: "大きく 息を 吸いこむと 腹の 中の 炎が 勢いを 増して 摂氏2000度に 達する。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "百萬噸重拳",
th: "เมกะตันพันช์",
ja: "メガトンパンチ"
},
damage: 50,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "伏特爆發",
th: "โวลต์โพลชัน",
ja: "ボルトプロージョン"
},
effect: {
'zh-tw': "若自己的備戰區有「電擊魔獸」則增加120點傷害。",
th: "ถ้าบนเบนช์ฝ่ายเรามี [เอเลคิเบิล] อยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 120",
ja: "自分のベンチに「エレキブル」がいるなら、120ダメージ追加。"
},
damage: "120",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "F",
dexId: [467]
}
export default card