1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

47
data-asia/SV/SV2D/057.ts Normal file
View File

@ -0,0 +1,47 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "オンバット",
'zh-tw': "嗡蝠",
th: "ออนแบท",
id: "Noibat"
},
illustrator: "chibi",
rarity: "Common",
category: "Pokemon",
dexId: [714],
hp: 70,
types: ["Dragon"],
description: {
ja: "大きな 耳から 超音波を 出して エサの 果物を 探す。 カジッチュを エサと 間違える。",
'zh-tw': "從大大的耳朵發出超音波,尋找水果來填飽肚子。 會把啃果蟲誤認成食物。",
th: "ปล่อยคลื่นความถี่สูงจากหูใหญ่เพื่อค้นหาผลไม้ ชอบหลงคิดว่าคาจิชชูเป็นอาหาร",
id: "Noibat mengeluarkan gelombang ultrasonik dari kuping besarnya untuk mencari buah makanannya. Ia keliru mengira Applin sebagai makanannya."
},
stage: "Basic",
attacks: [{
cost: ["Psychic", "Darkness"],
name: {
ja: "かぜおこし",
'zh-tw': "起風",
th: "เรียกลม",
id: "Hembusan Angin"
},
damage: 40
}],
retreat: 1,
regulationMark: "G"
}
export default card