1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

69
data-asia/SV/SV3/116.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ハッサム",
'zh-tw': "巨鉗螳螂",
th: "ฮัซซัม"
},
illustrator: "Oku",
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