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

55 lines
906 B
TypeScript
Raw Permalink 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': "一擊武道熊師"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "棲息在遙遠地區的山岳地帶。會在斷崖絕壁上來回奔跑 鍛鍊下盤,磨練招式。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "場地粉碎"
},
effect: {
'zh-tw': "將場上的對手的競技場卡丟棄。"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}, {
name: {
'zh-tw': "修羅拳"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加100點傷害。"
},
damage: "100+",
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card