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/SV4a/299.ts Normal file
View File

@ -0,0 +1,69 @@
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