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

63 lines
1.8 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: "yuu",
rarity: "Common",
category: "Pokemon",
dexId: [170],
hp: 60,
types: ["Lightning"],
description: {
ja: "暗い 海底では いつも 点滅している 触手の 灯り だけが 通信手段。",
'zh-tw': "在黑暗的海底,觸手上不斷閃爍的亮光 是牠唯一的通訊手段。",
th: "ในก้นมหาสมุทรอันมืดมิด แสงจากหนวดที่กะพริบอย่างต่อเนื่องคือวิธีการเดียวที่ใช้สื่อสารกัน"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "てらす",
'zh-tw': "光照",
th: "ฉายแสง"
},
effect: {
ja: "自分の山札を上から1枚見て、もとにもどす。のぞむなら、そのカードを山札の下にもどす。",
'zh-tw': "查看自己的牌庫上方1張卡回復原樣。若希望將那張卡放回牌庫下方。",
th: "ดูการ์ด 1 ใบจากด้านบนของสำรับการ์ดฝ่ายเรา คืนที่เดิมหากต้องการ นำการ์ดนั้นใส่กลับไปด้านล่างของสำรับการ์ด"
}
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "プチでんき",
'zh-tw': "小電氣",
th: "กระแสไฟน้อยนิด"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card