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

57 lines
1.7 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "鬼斯通",
th: "โกสท์",
ja: "ゴースト"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "能夠穿牆透壁,出現在任何地方的 恐怖惡靈。傳說被牠的舌頭舔過的人 將會日漸衰弱,最後喪命。",
th: "เป็นวิญญาณชั่วร้ายอันน่ากลัวที่สามารลอดผ่านกำแพงและปรากฏกายได้ในทุกหนทุกแห่ง ลือกันว่าผู้ใดที่ถูกมันเลีย ผู้นั้นจะอ่อนกำลังลงทุกวัน ๆ และเสียชีวิตไปในที่สุด",
ja: "壁をすり抜け 何処にでも 姿 現す 恐ろしき悪霊。 舌で 舐められし者 日に日に 衰弱し 死に至るとの噂。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "詛咒水滴",
th: "หยาดหยดแห่งคำสาป",
ja: "のろいのしずく"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的寶可夢身上。",
th: "วางตัวนับแดเมจ 3 ตัวบนโปเกมอนฝ่ายตรงข้ามตามชอบ",
ja: "ダメカン3個を、相手のポケモンに好きなようにのせる。"
},
cost: ["Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
dexId: [93]
}
export default card