1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

63 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV1S"
const card: Card = {
set: Set,
name: {
ja: "ブイゼル",
'zh-tw': "泳圈鼬",
th: "บุยเซล",
id: "Buizel"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
dexId: [418],
hp: 70,
types: ["Water"],
description: {
ja: "尻尾を スクリューのように まわし 水中を 泳ぐだけでなく まとわりつく 海草も 切れる。",
'zh-tw': "像螺旋槳一樣旋轉的尾巴除了能夠讓牠在水裡游泳, 還能切斷纏住自己的海草。",
th: "หมุนหางต่างใบพัด ไม่ได้ใช้แค่ว่ายในน้ำได้อย่างเดียว แต่ยังใช้ตัดพวกสาหร่ายที่มาพันตัวได้ด้วย",
id: "Tidak hanya untuk berenang, Buizel memutar ekornya seperti baling-baling untuk memotong rumput laut yang menempel padanya."
},
stage: "Basic",
attacks: [{
cost: ["Water"],
name: {
ja: "みずかけ",
'zh-tw': "潑水",
th: "สาดน้ำ",
id: "Guyuran Air"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ひれカッター",
'zh-tw': "鰭快刀",
th: "ครีบใบมีด",
id: "Sirip Pemotong"
},
damage: 20
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card