1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

76 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ギルガルド",
'zh-tw': "堅盾劍怪",
th: "กิลการ์ด"
},
illustrator: "Jiro Sasumo",
rarity: "Rare",
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