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

59
data-asia/SV/SV9a/030.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV9a"
const card: Card = {
set: Set,
name: {
ja: "ブイゼル",
'zh-tw': "泳圈鼬",
'zh-cn': "泳圈鼬"
},
illustrator: "Ayako Ozaki",
rarity: "Common",
category: "Pokemon",
dexId: [418],
hp: 70,
types: ["Water"],
description: {
ja: "尻尾を スクリューのように まわし 水中を 泳ぐだけでなく まとわりつく 海草も 切れる。",
'zh-tw': "像螺旋槳一樣旋轉的尾巴 除了能夠讓牠在水裡游泳, 還能切斷纏住自己的海草。",
'zh-cn': "像螺旋槳一樣旋轉的尾巴 除了能夠讓牠在水裡游泳, 還能切斷纏住自己的海草。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "しっぽではたく",
'zh-tw': "擺尾拍擊",
'zh-cn': "擺尾拍擊"
},
damage: 10
}, {
cost: ["Water", "Colorless", "Colorless"],
name: {
ja: "スプラッシュ",
'zh-tw': "飛濺",
'zh-cn': "飛濺"
},
damage: 30
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "I"
}
export default card