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

69 lines
2.3 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: "satoma",
rarity: "Uncommon",
category: "Pokemon",
dexId: [323],
hp: 130,
types: ["Fire"],
description: {
ja: "火山の 火口で 生活する。 10年ごとに 背中の コブが 大噴火することで 有名だ。",
'zh-tw': "平時生活在火山口。以背上的駝峰每10年 會大爆發一次而聞名。",
th: "อาศัยอยู่บริเวณปากปล่องภูเขาไฟ ขึ้นชื่อเรื่องภูเขาไฟที่หนอกบนกลางหลังระเบิดครั้งใหญ่ทุก 10 ปี"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "ほのおでこがす",
'zh-tw': "火焰灼燒",
th: "ลนไฟ"
},
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
}
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "ふんせきキャノン",
'zh-tw': "火山岩加農炮",
th: "ปืนใหญ่กรวดภูเขาไฟ"
},
damage: "120+",
effect: {
ja: "のぞむなら、このポケモンについているエネルギーを1個選び、トラッシュする。その場合、120ダメージ追加。",
'zh-tw': "若希望選擇1個這隻寶可夢身上附加的【鬥】能量將其丟棄。這個情況下增加120點傷害。",
th: "หากต้องการ เลือกพลังงาน[ต่อสู้]ที่ติดอยู่กับโปเกมอนนี้ 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด เมื่อทำเช่นนั้นแล้ว การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card