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

63 lines
1.9 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウネルミナモex",
'zh-tw': "波盪水ex",
th: "คลื่นน้ำกระเพื่อมex"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 220,
types: ["Water"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "こんぺきはとう",
'zh-tw': "藏青浪濤",
th: "คลื่นยักษ์น้ำเงินคราม"
},
effect: {
ja: "このポケモンが使うワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。",
'zh-tw': "這隻寶可夢使用招式的傷害,不計算對手的戰鬥寶可夢身上的附加效果。",
th: "แดเมจของท่าต่อสู้ที่โปเกมอนนี้ใช้ จะไม่นำเอฟเฟกต์ที่มีผลอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามมาคิด"
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "カタルシスロアー",
'zh-tw': "宣洩吼嘯",
th: "แผดเสียงระบายอารมณ์"
},
damage: "120+",
effect: {
ja: "相手のバトルポケモンが特殊状態なら、120ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢處於特殊狀態則增加120點傷害。",
th: "ถ้าโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะผิดปกติ การโจมตีนี้จะเพิ่มแดเมจอีก 120"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card