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

feat: Add SV9 (#674)

This commit is contained in:
2025-02-28 08:44:38 +01:00
committed by GitHub
parent 19dccfd5d7
commit e4099defdb
133 changed files with 7333 additions and 0 deletions

65
data-asia/SV/SV9/023.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ルンパッパ",
'zh-tw': "樂天河童",
'zh-cn': "樂天河童"
},
illustrator: "Jerky",
rarity: "Uncommon",
category: "Pokemon",
dexId: [272],
hp: 140,
types: ["Water"],
description: {
ja: "陽気な リズムの 音波を 受けると エネルギーを 作りだす 仕組みを 全身に 持っている。",
'zh-tw': "全身都有著獨特的結構, 讓牠一接收歡樂節奏的 音波就會製造出能量。",
'zh-cn': "全身都有著獨特的結構, 讓牠一接收歡樂節奏的 音波就會製造出能量。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "バイタルサンバ",
'zh-tw': "生機森巴",
'zh-cn': "生機森巴"
},
effect: {
ja: "このポケモンがいるかぎり、自分の場のポケモン全員の最大HPは、それぞれ「40」される。この効果は、この特性を持つポケモンが何匹いても、重ならない。",
'zh-tw': "只要這隻寶可夢在場上自己場上所有寶可夢的最大HP各「+40」。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。",
'zh-cn': "只要這隻寶可夢在場上自己場上所有寶可夢的最大HP各「+40」。無論有多少隻擁有這個特性的寶可夢這個效果也不會重複。"
}
}],
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
ja: "ハイドロスプラッシュ",
'zh-tw': "水炮濺射",
'zh-cn': "水炮濺射"
},
damage: 130
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "I"
}
export default card