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

75
data-asia/SV/SV3a/073.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ギルガルド",
'zh-tw': "堅盾劍怪",
th: "กิลการ์ด"
},
illustrator: "Takumi Wada",
category: "Pokemon",
dexId: [681],
hp: 150,
types: ["Metal"],
description: {
ja: "強力な 霊力で 人や ポケモンを 操り ギルガルドに 都合の 良い 国を つくらせた。",
'zh-tw': "堅盾劍怪曾經用強大的靈力控制人和寶可夢,建立了 適合自己生活的國家。",
th: "ควบคุมมนุษย์และโปเกมอนด้วยพลังวิญญาณอันแรงกล้าให้สร้างประเทศตามที่กิลการ์ดต้องการ"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "しんぴのたて",
'zh-tw': "神秘之盾",
th: "โล่ลึกลับ"
},
effect: {
ja: "このポケモンは、相手の「ポケモンex・V」からワザのダメージを受けない。",
'zh-tw': "這隻寶可夢不會受到對手的「寶可夢【ex】・【V】」招式的傷害。",
th: "โปเกมอนนี้ จะไม่ได้รับแดเมจของท่าต่อสู้จาก [โปเกมอน【ex】 /【V】] ฝ่ายตรงข้าม"
}
}],
attacks: [{
cost: ["Metal", "Colorless"],
name: {
ja: "ハードバッシュ",
'zh-tw': "堅硬猛擊",
th: "ตีแรง"
},
damage: 120,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้นี้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 3,
regulationMark: "G"
}
export default card