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

55 lines
848 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨鍛匠"
},
illustrator: "DOM",
category: "Pokemon",
hp: 140,
types: ["Psychic"],
description: {
'zh-tw': "智商高超,性格豪邁。 會用錘子打飛岩石來攻擊 飛在空中的鋼鎧鴉。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "拍落"
},
effect: {
'zh-tw': "在不看正面的情況下選擇1張對手的手牌將其丟棄。"
},
damage: 40,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "狂野壓制"
},
effect: {
'zh-tw': "這隻寶可夢也受到60點傷害。"
},
damage: 220,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card