1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

60
data-asia/S/S5a/026.ts Normal file
View File

@@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "滾滾蝙蝠",
th: "โคโรโมริ"
},
illustrator: "Yuka Morii",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
description: {
'zh-tw': "一邊發出超音波,一邊飛來飛去尋找蟲寶可夢來填飽自己的肚子。",
th: "กระพือปีกบินไปพร้อมกับปล่อยคลื่นความถี่สูงเพื่อหาโปเกมอนแมลงที่เป็นเหยื่อของมัน"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼喚",
th: "รวบรวม"
},
effect: {
'zh-tw': "從自己的牌庫抽出1張卡。",
th: "จั่วการ์ด 1 ใบจากสำรับการ์ดฝ่ายเรา"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "咬",
th: "แทะ"
},
damage: 10,
cost: ["Psychic"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "E"
}
export default card