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

61 lines
954 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 "../SC1D"
const card: Card = {
set: Set,
name: {
'zh-tw': "堅果啞鈴"
},
illustrator: "Midori Harada",
category: "Pokemon",
hp: 130,
types: ["Metal"],
description: {
'zh-tw': "用尖刺刺裂岩壁之後,牠會用觸手的尖端接觸裂縫吸收營養。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "三重粉碎"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×30點傷害。"
},
damage: "30×",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "能量摑擊"
},
effect: {
'zh-tw': "若希望將這隻寶可夢身上附加的能量全部改附於1隻備戰寶可夢身上。"
},
damage: 100,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "D"
}
export default card