1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

62 lines
1.9 KiB
TypeScript
Raw Permalink 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ゴース",
'zh-tw': "鬼斯",
th: "โกส"
},
illustrator: "Mousho",
category: "Pokemon",
dexId: [92],
hp: 60,
types: ["Darkness"],
description: {
ja: "ガス状の 体で まとわりつき 獲物の 皮膚から 少しずつ 毒を 送り込んで 弱らせる。",
'zh-tw': "會用氣體狀的身體纏住獵物,再從皮膚緩緩地注入毒素, 使對手變得虛弱。",
th: "ใช้ร่างกายที่เป็นแก๊สเกาะติดเหยื่อแล้วค่อย ๆ ส่งพิษผ่านเข้าผิวหนังไปทีละนิดจนเหยื่ออ่อนแอลง"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ふしぎなビーム",
'zh-tw': "神秘光束",
th: "ลำแสงพิศวง"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンについているエネルギーを1個選び、トラッシュする。",
'zh-tw': "擲1次硬幣若為正面則選擇1個對手的戰鬥寶可夢身上附加的能量將其丟棄。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด"
}
}, {
cost: ["Darkness", "Darkness"],
name: {
ja: "ガスでつつむ",
'zh-tw': "瓦斯包圍",
th: "ห่อหุ้มด้วยแก๊ส"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card