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

71 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ウネルミナモ",
'zh-tw': "波盪水",
th: "คลื่นน้ำกระเพื่อม"
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
dexId: [1009],
hp: 130,
types: ["Water"],
description: {
ja: "謎多き 凶暴な 生物。 古い 探検記に 記された 水の 怪物から 名付けられた。",
'zh-tw': "充滿謎團的凶暴生物。名字來自古老的探險記裡 記載的水之怪物。",
th: "มีรูปร่างคล้ายกับภาพประกอบที่ถูกตีพิมพ์และแนะนำในนิตยสารไสยศาสตร์ว่า เป็นซุยคูนในอดีตกาลอันไกลโพ้น"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "オーロラゲイン",
'zh-tw': "極光增輝",
th: "ออโรราเกน"
},
damage: 20,
effect: {
ja: "このポケモンのHPを「20」回復する。",
'zh-tw': "將這隻寶可夢恢復「20」HP。",
th: "ฟื้นฟู HP ของโปเกมอนนี้ [20]"
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
ja: "うねりさく",
'zh-tw': "蜿蜒割裂",
th: "บิดแล้วฉีก"
},
damage: "20×",
effect: {
ja: "このポケモンにダメカンを9個までのせ、のせた数×20ダメージ。",
'zh-tw': "在這隻寶可夢身上放置最多9個傷害指示物造成放置的數量×20點傷害。",
th: "วางตัวนับแดเมจได้สูงสุด 9 ตัวบนโปเกมอนนี้ แดเมจจะเท่ากับจำนวนที่วาง x20"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card