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

55 lines
915 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 "../S6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "流氓熊貓"
},
illustrator: "HYOGONOSUKE",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
description: {
'zh-tw': "透過葉子來洞悉敵人的動向。只要使出一記拳擊就能讓大型砂石車變成廢鐵。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "敲擊之錘"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 90,
cost: ["Darkness", "Darkness", "Colorless"]
}, {
name: {
'zh-tw': "恐嚇掠奪"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 150,
cost: ["Darkness", "Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "E"
}
export default card