1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV3a/012.ts Normal file
View File

@ -0,0 +1,63 @@
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