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

63 lines
1.3 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ニョロボン",
'zh-tw': "蚊香泳士"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Nisota Niso",
dexId: [62],
hp: 170,
types: ["Water"],
description: {
ja: "発達した 手足を 使って ほんの 一瞬だけなら 水の上を 走ることができる。",
'zh-tw': "如果只是一瞬間的話, 牠能夠用肌肉發達的 四肢在水上奔跑。"
},
stage: "Stage2",
attacks: [{
cost: ["Water"],
name: {
ja: "さいみんじゅつ",
'zh-tw': "催眠術"
},
effect: {
ja: "相手のバトルポケモンをねむりにする。",
'zh-tw': "將對手的戰鬥寶可夢【睡眠】。"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ジャンピングアッパー",
'zh-tw': "跳躍衝天"
},
damage: "120+",
effect: {
ja: "のぞむなら、120ダメージ追加。その場合、このポケモンと、ついているすべてのカードを、自分の山札にもどして切る。",
'zh-tw': "若希望增加120點傷害。這個情況下將這隻寶可夢與附加的卡全部放回自己的牌庫並重洗。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card