1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

51
data-asia/SV/SV6/029.ts Normal file
View File

@ -0,0 +1,51 @@
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