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

68
data-asia/SV/SV4K/044.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ズバット",
'zh-tw': "超音蝠",
th: "ซูแบท"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Common",
category: "Pokemon",
dexId: [41],
hp: 50,
types: ["Darkness"],
description: {
ja: "陽の 当たらない 洞窟に 棲む。 朝になると 仲間で 集まり 体を 温めあいながら 寝る。",
'zh-tw': "棲息在陽光照射不到的洞窟裡。到了早上就會和夥伴相聚, 一邊互相取暖一邊睡覺。",
th: "อาศัยอยู่ในถ้ำที่แสงแดดส่องไม่ถึง เมื่อถึงเวลาเช้าจะรวมกลุ่มกับพวกพ้องเพื่อสร้างความอบอุ่นแก่ร่างกายและนอนหลับ"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "ちょうおんぱ",
'zh-tw': "超音波",
th: "ซูเปอร์โซนิค"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをこんらんにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【混亂】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[สับสน]"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "するどいはね",
'zh-tw': "銳利羽",
th: "ขนปีกแหลมคม"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card