mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "謝米",
|
||
th: "เชมิน"
|
||
},
|
||
|
||
illustrator: "Megumi Mizutani",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
'zh-tw': "葛拉西蒂亞花盛開的季節裡,據說牠會為了傳遞感謝之情而飛向天空。",
|
||
th: "ว่ากันว่าจะบินเพื่อส่งความรู้สึกขอบคุณต่อฤดูที่ดอกกราซิเดียเบ่งบาน"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "報恩",
|
||
th: "ทดแทนคุณ"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "若希望,從牌庫抽卡直到自己的手牌滿6張為止。",
|
||
th: "หากต้องการ จั่วการ์ดจากสำรับการ์ด จนได้การ์ดบนมือฝ่ายเราเป็น 6 ใบ"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "天空迴旋",
|
||
th: "สกายรีเทิร์น"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將這隻寶可夢與附加的卡,全部放回手牌。",
|
||
th: "นำโปเกมอนนี้กับการ์ดทั้งหมดที่ติดอยู่กลับขึ้นมือ"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |