mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
51 lines
932 B
TypeScript
51 lines
932 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV6"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "ヒンバス",
|
||
'zh-tw': "醜醜魚"
|
||
},
|
||
|
||
category: "Pokemon",
|
||
rarity: "Common",
|
||
illustrator: "Scav",
|
||
dexId: [349],
|
||
hp: 30,
|
||
types: ["Water"],
|
||
|
||
description: {
|
||
ja: "一番 みすぼらしい ポケモン。 水草の 多い 川底で 大勢 集まって 暮らしている。",
|
||
'zh-tw': "最寒酸的寶可夢。 在有許多水草的河底 群聚而居。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Water"],
|
||
|
||
name: {
|
||
ja: "じたばた",
|
||
'zh-tw': "抓狂"
|
||
},
|
||
|
||
damage: "10×",
|
||
|
||
effect: {
|
||
ja: "このポケモンにのっているダメカンの数×10ダメージ。",
|
||
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×10點傷害。"
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |