mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV4K"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ウミディグダ",
|
||
'zh-tw': "海地鼠",
|
||
th: "อุมิดิกดา"
|
||
},
|
||
|
||
illustrator: "Tomokazu Komiya",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
dexId: [960],
|
||
hp: 60,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "20メートル先の ミガルーサが 放つ 匂いも 嗅ぎとって 砂の中に 身を 隠すのだ。",
|
||
'zh-tw': "就算身處於20公尺外,牠都能嗅出輕身鱈散發出 的氣味,躲進沙子裡面藏身。",
|
||
th: "จะหลบซ่อนตัวในทรายเมื่อได้กลิ่นที่มิกาลูซาปล่อยออกมาแม้จะห่างออกไปกว่า 20 เมตร"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Water", "Colorless"],
|
||
|
||
name: {
|
||
ja: "しんどう",
|
||
'zh-tw': "震動",
|
||
th: "สั่นสะเทือน"
|
||
},
|
||
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |