1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

69 lines
1.4 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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "ハッサム",
'zh-tw': "巨鉗螳螂",
id: "Scizor"
},
illustrator: "GOSSAN",
category: "Pokemon",
dexId: [212],
hp: 140,
types: ["Metal"],
description: {
ja: "鋼鉄を 含んでいる ハサミで 捕らえたものは どんなに 硬くても コナゴナに 砕く。",
'zh-tw': "不管抓到多麼堅硬的東西,都能用含有鋼鐵成分的鉗子 夾得粉碎。",
id: "Dengan capitnya yang mengandung baja, Scizor akan menghancurkan benda sekeras apa pun yang ditangkapnya menjadi berkeping-keping."
},
stage: "Stage1",
attacks: [{
cost: ["Metal"],
name: {
ja: "パニッシュシザー",
'zh-tw': "懲罰之剪",
id: "Punish Scissor"
},
damage: "10+",
effect: {
ja: "相手の場の特性を持つポケモンの数×50ダメージ追加。",
'zh-tw': "增加對手的場上擁有特性的寶可夢的數量×50點傷害。",
id: "Kerusakan yang diberikan bertambah sejumlah 50 untuk tiap Pokémon yang memiliki Ability di Arena lawan."
}
}, {
cost: ["Metal", "Metal"],
name: {
ja: "いあいぎり",
'zh-tw': "居合斬",
id: "Potongan Iai"
},
damage: 70
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card