1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +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

60
data-asia/S/S9a/048.ts Normal file
View File

@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 萬針魚",
ja: "ヒスイ ハリーマン"
},
illustrator: "AKIRA EGAWA",
category: "Pokemon",
hp: 130,
types: ["Darkness"],
description: {
'zh-tw': "身上如同槍尖般的針以及凶暴的性情使這種寶可夢得到了海鬼的外號。 會吞下毒物作為己身糧食。",
ja: "槍の如き 針と 凶暴なる 気質にて 海鬼の 異名を 持つ ポケモン。 毒を すすりて 己の 糧とす。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "劇痛毒",
ja: "げきつうどく"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。因這個【中毒】而放置的傷害指示物的數量改為5個。",
ja: "相手のバトルポケモンをどくにする。このどくでのせるダメカンの数は5個になる。"
}
}, {
name: {
'zh-tw': "針刺刑",
ja: "ハリつけ"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢無法撤退。",
ja: "次の相手の番、このワザを受けたポケモンは、にげられない。"
},
damage: 50,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Uncommon",
dexId: [904]
}
export default card