1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

60 lines
1.2 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 "../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