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

50 lines
1.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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "打擊鬼",
ja: "ダゲキ"
},
illustrator: "Shinji Kanda",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
description: {
'zh-tw': "不斷地尋求強大的實力。要是看到了在山上修行的 打擊鬼,就靜靜地離開吧。",
ja: "ひたすらに 強さを 求める。 山で 修行する ダゲキを 見たら 静かに 立ち去ろう。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "掃腿",
ja: "あしばらい"
},
effect: {
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。"
},
damage: 30,
cost: ["Fighting"]
}],
weaknesses: [{
type: "Psychic",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [539]
}
export default card