1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

54
data-asia/S/S5R/051.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../S5R"
const card: Card = {
set: Set,
name: {
'zh-tw': "連擊武道熊師VMAX",
th: "วูลาโอส จู่โจมต่อเนื่องVMAX"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "疾風直撞",
th: "พุ่งชนดั่งพายุ"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則增加120點傷害。",
th: "ในเทิร์นนี้ ถ้าโปเกมอนนี้ออกจากเบนช์มาที่ตำแหน่งต่อสู้ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
},
damage: "30+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨流水連擊",
th: "กิกะจู่โจมต่อเนื่อง"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄對手的2隻寶可夢各受到120點傷害。[在備戰區不計算弱點・抵抗力。]",
th: "ทิ้งพลังงานทั้งหมดที่ติดกับโปเกมอนนี้ที่ตำแหน่งทิ้งการ์ดและโปเกมอนฝ่ายตรงข้าม 2 ตัว จะได้รับแดเมจตัวละ 120 [โปเกมอนบนเบนช์จะไม่นำจุดอ่อนและความต้านทานมาคิด]"
},
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card