1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

67 lines
1.8 KiB
TypeScript
Raw Permalink 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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "謝米",
th: "เชมิน",
ja: "シェイミ"
},
illustrator: "Yukiko Baba",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "葛拉西蒂亞花盛開的季節裡,據說牠會為了傳遞感謝之情 而飛向天空。",
th: "ว่ากันว่าจะบินเพื่อส่งความรู้สึกขอบคุณต่อฤดูที่ดอกกราซิเดียเบ่งบาน",
ja: "グラシデアの花が 咲く 季節 感謝の 心を 届けるために 飛び立つと 言われている。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "撿花",
th: "เก็บดอกไม้",
ja: "はなひろい"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張能量卡在給對手看過後放回牌庫並重洗。",
th: "เลือกการ์ดพลังงานได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู ใส่กลับไปในสำรับการ์ดแล้วสับ",
ja: "自分のトラッシュからエネルギーを2枚まで選び、相手に見せて、山札にもどして切る。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "後踢",
th: "เตะกลับหลัง",
ja: "うしろげり"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [492]
}
export default card