1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-25 17:39:54 +00:00

55 lines
1.4 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 "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "シロナのヒンバス",
'zh-tw': "<竹蘭的>醜醜魚",
'zh-cn': "<竹蘭的>醜醜魚"
},
illustrator: "kamonabe",
rarity: "Common",
category: "Pokemon",
dexId: [349],
hp: 30,
types: ["Water"],
description: {
ja: "汚い 水も ぜんぜん 平気な タフな ポケモン。 でも ボロボロで みすぼらしいため 人気は ない。",
'zh-tw': "即使在髒水裡也毫不介意的 堅強寶可夢。但那一副破破爛爛的 寒酸樣子並不受到歡迎。",
'zh-cn': "即使在髒水裡也毫不介意的 堅強寶可夢。但那一副破破爛爛的 寒酸樣子並不受到歡迎。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ゆらゆらおよぐ",
'zh-tw': "搖搖游水",
'zh-cn': "搖搖游水"
},
damage: 10,
effect: {
ja: "コインを1回投げオモテなら、次の相手の番、このポケモンはワザのダメージや効果を受けない。",
'zh-tw': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。",
'zh-cn': "擲1次硬幣若為正面則在下個對手的回合這隻寶可夢不會受到招式的傷害與效果的影響。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card