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

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

59
data-asia/SV/SV5a/031.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ズピカ",
'zh-tw': "光蚪仔",
th: "ซุพีคา"
},
illustrator: "nisimono",
rarity: "Common",
category: "Pokemon",
dexId: [938],
hp: 50,
types: ["Lightning"],
description: {
ja: "体に 蓄えた 電力で 浮遊する。 雷雲のときは いつもより 高く 浮き上がるのだ。",
'zh-tw': "會用蓄積在體內的電力 浮在空中。出現雷雲時 則能浮得比平時還要高。",
th: "ลอยตัวด้วยกระแสไฟฟ้าที่สะสมอยู่ในร่างกาย และจะลอยสูงกว่าปกติเมื่อมีเมฆฝนฟ้าคะนอง"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "たいあたり",
'zh-tw': "撞擊",
th: "พุ่งเข้าชน"
},
damage: 10
}, {
cost: ["Lightning", "Colorless"],
name: {
ja: "エレキボール",
'zh-tw': "電球",
th: "อิเล็กทริกบอล"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card