1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
1.5 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "クマシュン",
'zh-tw': "噴嚏熊",
th: "คูมะชุน"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
dexId: [613],
hp: 70,
types: ["Water"],
description: {
ja: "寒い 地域の 海辺に 多い。 鼻水が 垂れていない ときは 病気の 可能性が ある。",
'zh-tw': "經常出現在寒冷地帶的海邊。沒掛著一沱鼻涕的時候,就代表牠可能是生病了。",
th: "ส่วนใหญ่จะอาศัยอยู่แถวทะเลในบริเวณที่มีอากาศหนาวเย็น ตอนที่ไม่มีน้ำมูกอาจจะไม่สบายก็เป็นได้"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "けとばす",
'zh-tw': "踢飛",
th: "ดีด"
},
damage: 10
}, {
cost: ["Water", "Colorless"],
name: {
ja: "ころばす",
'zh-tw': "打滾",
th: "ล้มกลิ้ง"
},
damage: "20+",
effect: {
ja: "コインを1回投げオモテなら、20ダメージ追加。",
'zh-tw': "擲1次硬幣若為正面則增加20點傷害。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว การโจมตีนี้จะเพิ่มแดเมจอีก 20"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card