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

63 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "レドームシ",
'zh-tw': "天罩蟲",
th: "เรโดมุชิ"
},
illustrator: "Haru Akasaka",
rarity: "Common",
category: "Pokemon",
dexId: [825],
hp: 80,
types: ["Grass"],
description: {
ja: "殻の 中で 成長中。 サイコパワーで 外の 様子を うかがい 進化に 備えている。",
'zh-tw': "正在殼裡成長著。用精神力量掌握外界的狀況,做好進化的準備。",
th: "กำลังเติบโตอยู่ในกระดอง รับรู้สภาพการณ์ภายนอกด้วยพลังจิต กำลังเตรียมตัวเพื่อวิวัฒนาการ"
},
stage: "Stage1",
attacks: [{
cost: ["Grass"],
name: {
ja: "まもる",
'zh-tw': "守住",
th: "ป้องกันตัว"
},
effect: {
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。",
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจและเอฟเฟกต์ของท่าต่อสู้"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "しねんのずつき",
'zh-tw': "意念頭錘",
th: "โขกหัวพลังจิต"
},
damage: 20
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card