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

56 lines
865 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 "../SC1b"
const card: Card = {
set: Set,
name: {
'zh-tw': "巨鉗蟹"
},
illustrator: "tetsuya koizumi",
category: "Pokemon",
hp: 130,
types: ["Water"],
description: {
'zh-tw': "雖然堅硬的鉗子有著1萬馬力的力量,但尺寸太大讓牠行動遲緩。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "沉甸鉗"
},
effect: {
'zh-tw': "將對手的牌庫上方1張卡丟棄。"
},
damage: 40,
cost: ["Water"]
}, {
name: {
'zh-tw': "抓裂"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加60點傷害。"
},
damage: "90+",
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card