1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 20:02:15 +00:00

65 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "キョジオーン",
'zh-tw': "鹽石巨靈",
th: "เคียวจีโอน"
},
illustrator: "Souichirou Gunjima",
rarity: "Rare",
category: "Pokemon",
dexId: [934],
hp: 160,
types: ["Fighting"],
description: {
ja: "指先を 擦りあわせて 塩を ケガした ポケモンに 振りかけると ひどい 傷も たちまち 治る。",
'zh-tw': "只要合起指尖,搓出鹽來灑在受傷的寶可夢身上, 就算再重的傷都會瞬間痊癒。",
th: "ถูปลายนิ้วและโปรยเกลือใส่โปเกมอนที่บาดเจ็บ แม้จะเป็นบาดแผลที่สาหัสก็จะหายในทันที"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "エナジーがんえん",
'zh-tw': "能量岩鹽",
th: "พลังงานเกลือหิน"
},
effect: {
ja: "自分の番に1回使える。自分のトラッシュから「基本エネルギー」を1枚選び、自分のポケモンにつける。その後、つけたポケモンのHPを「30」回復する。",
'zh-tw': "在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡附於自己的寶可夢身上。然後將附上那張卡的寶可夢恢復「30」HP。",
th: "ใช้ได้ 1 ครั้งในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] 1 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา หลังจากนั้น ฟื้นฟู HP ของโปเกมอนที่ติดการ์ดนั้น [30]"
}
}],
attacks: [{
cost: ["Fighting", "Fighting", "Fighting"],
name: {
ja: "ランドクラッシュ",
'zh-tw': "大地粉碎",
th: "แลนด์ครัช"
},
damage: 140
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4,
regulationMark: "G"
}
export default card