1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

69
data-asia/SV/SV4M/010.ts Normal file
View File

@ -0,0 +1,69 @@
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