1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add SV9a (#672)

This commit is contained in:
2025-05-24 20:35:21 +02:00
committed by GitHub
parent 90d12fc9b6
commit db5863caee
93 changed files with 5333 additions and 0 deletions

55
data-asia/SV/SV9a/023.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "カスミのヒトデマン",
'zh-tw': "<小霞的>海星星",
'zh-cn': "<小霞的>海星星"
},
illustrator: "Shinya Komatsu",
rarity: "Common",
category: "Pokemon",
dexId: [120],
hp: 70,
types: ["Water"],
description: {
ja: "魚ポケモンに ついばまれるが 体が ちぎれても すぐに 再生するので 気にしない。",
'zh-tw': "會被魚寶可夢啄食,但是 即使身體被咬斷也能很快就 再生,所以一點都不在意。",
'zh-cn': "會被魚寶可夢啄食,但是 即使身體被咬斷也能很快就 再生,所以一點都不在意。"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "バブルこうせん",
'zh-tw': "泡沫光線",
'zh-cn': "泡沫光線"
},
damage: 20,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
'zh-cn': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card