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

49
data-asia/SV/SV9/021.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ハスボー",
'zh-tw': "蓮葉童子",
'zh-cn': "蓮葉童子"
},
illustrator: "Ayako Ozaki",
rarity: "Common",
category: "Pokemon",
dexId: [270],
hp: 60,
types: ["Water"],
description: {
ja: "頭の 葉っぱは 汚れを 弾く 性質。 泥だらけの ポケモンを 乗せても 葉っぱは きれいなままだ。",
'zh-tw': "頭上的葉子具有防污的性質。 即使載了滿身是泥的寶可夢, 葉子也能常保乾淨。",
'zh-cn': "頭上的葉子具有防污的性質。 即使載了滿身是泥的寶可夢, 葉子也能常保乾淨。"
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "みずでっぽう",
'zh-tw': "水槍",
'zh-cn': "水槍"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card