1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

60
data-asia/SV/SV6/058.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "サンドパン",
'zh-tw': "穿山王"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Nisota Niso",
dexId: [28],
hp: 120,
types: ["Fighting"],
description: {
ja: "トゲは 皮膚が 硬くなったもの。 体を 丸めて トゲトゲを 刺すように 相手を 攻撃する。",
'zh-tw': "身上的刺是皮膚硬化後形成的。 會將身體蜷成一團, 用尖刺刺向對手進行攻擊。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ツメをたてる",
'zh-tw': "豎爪"
},
damage: 30
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "じしん",
'zh-tw': "地震"
},
damage: 120,
effect: {
ja: "自分のベンチポケモン全員にも、それぞれ10ダメージ。ベンチは弱点・抵抗力を計算しない。",
'zh-tw': "自己的所有備戰寶可夢也各受到10點傷害。 [在備戰區不計算弱點・抵抗力。]"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card