1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

69 lines
1.9 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウミディグダ",
'zh-tw': "海地鼠",
th: "อุมิดิกดา"
},
illustrator: "OKUBO",
rarity: "Common",
category: "Pokemon",
dexId: [960],
hp: 60,
types: ["Water"],
description: {
ja: "20メートル先の ミガルーサが 放つ 匂いも 嗅ぎとって 砂の中に 身を 隠すのだ。",
'zh-tw': "就算身處於20公尺外,牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。",
th: "จะหลบซ่อนตัวในทรายเมื่อได้กลิ่นที่มิกาลูซาปล่อยออกมาแม้จะห่างออกไปกว่า 20 เมตร"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "ほりだしもの",
'zh-tw': "挖到寶",
th: "ของเลหลัง"
},
effect: {
ja: "自分の山札からグッズを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張物品卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดไอเท็ม 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Water", "Water"],
name: {
ja: "アクアボム",
'zh-tw': "水炸彈",
th: "อควาบอมบ์"
},
damage: 40,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 20 ด้วย"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card