mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
63
data-asia/SV/SV1S/015.ts
Normal file
63
data-asia/SV/SV1S/015.ts
Normal file
@ -0,0 +1,63 @@
|
||||
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
|
Reference in New Issue
Block a user