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

69 lines
2.0 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "バオップ",
'zh-tw': "爆香猴",
th: "บาอปปุ"
},
illustrator: "LINNE",
rarity: "Common",
category: "Pokemon",
dexId: [513],
hp: 70,
types: ["Fire"],
description: {
ja: "火山の 洞穴で 暮らす。 頭の ふさの 中が 燃えていて 300度の 高温になる。",
'zh-tw': "在火山的洞穴裡生活。頭上的毛髮叢中熊熊燃燒著,溫度高達300度。",
th: "อาศัยอยู่ตามถ้ำภูเขาไฟ ข้างในหงอนบนหัวจะลุกไหม้จนมีอุณหภูมิสูง 300 องศา"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "なかまをよぶ",
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "やきこがす",
'zh-tw': "灼燒",
th: "เพลิงประลัยกัลป์"
},
damage: 20,
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card