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

70 lines
1.7 KiB
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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ハッサム",
'zh-tw': "巨鉗螳螂",
th: "ฮัซซัม"
},
illustrator: "otumami",
rarity: "Rare",
category: "Pokemon",
dexId: [212],
hp: 140,
types: ["Metal"],
description: {
ja: "鋼鉄を 含んでいる ハサミで 捕らえたものは どんなに 硬くても コナゴナに 砕く。",
'zh-tw': "不管抓到多麼堅硬的東西,都能用含有鋼鐵成分的鉗子夾得粉碎。",
th: "ไม่ว่าสิ่งที่จับอยู่จะแข็งเพียงไหนก็สามารถหนีบหั่นให้เป็นชิ้น ๆ ได้ด้วยก้ามที่มีเหล็กเป็นส่วนประกอบ"
},
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
ja: "パニッシュシザー",
'zh-tw': "懲罰之剪",
th: "พันนิชซิสเซอร์"
},
damage: "10+",
effect: {
ja: "相手の場の特性を持つポケモンの数×50ダメージ追加。",
'zh-tw': "增加對手的場上擁有特性的寶可夢的數量×50點傷害。",
th: "แดเมจจะเพิ่มตามจำนวนโปเกมอนที่มีความสามารถบนกระดานฝ่ายตรงข้าม x50"
}
}, {
cost: ["Metal", "Metal"],
name: {
ja: "いあいぎり",
'zh-tw': "居合斬",
th: "ตัด"
},
damage: 70
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card