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

55 lines
1.4 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 "../SV4K"
const card: Card = {
set: Set,
name: {
ja: "ウミディグダ",
'zh-tw': "海地鼠",
th: "อุมิดิกดา"
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
dexId: [960],
hp: 50,
types: ["Water"],
description: {
ja: "20メートル先の ミガルーサが 放つ 匂いも 嗅ぎとって 砂の中に 身を 隠すのだ。",
'zh-tw': "就算身處於20公尺外,牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。",
th: "จะหลบซ่อนตัวในทรายเมื่อได้กลิ่นที่มิกาลูซาปล่อยออกมาแม้จะห่างออกไปกว่า 20 เมตร"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "みだれずつき",
'zh-tw': "亂爆頭錘",
th: "พุ่งหัวชนแหลก"
},
damage: "10×",
effect: {
ja: "コインを3回投げ、オモテの数×10ダメージ。",
'zh-tw': "擲3次硬幣造成正面出現的次數×10點傷害。",
th: "ทอยเหรียญ 3 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x10"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card