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

70
data-asia/SV/SV6/075.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ボスゴドラ",
'zh-tw': "波士可多拉"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Dsuke",
dexId: [306],
hp: 180,
types: ["Metal"],
description: {
ja: "ぶ厚い 鉄板を 貫くほどの 鋭い ツノを 体当たりとともに くらわせて 敵を しとめる。",
'zh-tw': "在撞擊敵人的同時,會用 能刺穿厚鐵板的銳利尖角 給予對方致命的一擊。"
},
stage: "Stage2",
attacks: [{
cost: ["Metal"],
name: {
ja: "アングリースラム",
'zh-tw': "發怒猛進"
},
damage: "50×",
effect: {
ja: "自分の場のダメカンがのっているポケモンの数×50ダメージ。",
'zh-tw': "造成自己場上的身上放置有傷害指示物的寶可夢的數量×50點傷害。"
}
}, {
cost: ["Metal", "Colorless", "Colorless"],
name: {
ja: "ガードクロー",
'zh-tw': "防守利爪"
},
damage: 120,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-50」される。",
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-50」點。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card