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

54 lines
1.7 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 "../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