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

49 lines
876 B
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 "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "連擊武道熊師VMAX"
},
illustrator: "PLANETA Tsuji",
category: "Pokemon",
hp: 330,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "疾風直撞"
},
effect: {
'zh-tw': "在這個回合若從備戰區將這隻寶可夢放置於戰鬥場則增加120點傷害。"
},
damage: "30+",
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨流水連擊"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄對手的2隻寶可夢各受到120點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card