1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 19:40:48 +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

65
data-asia/SV/SV5a/032.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ハラバリー",
'zh-tw': "電肚蛙",
th: "ฮาราบารี"
},
illustrator: "Mina Nakai",
rarity: "Uncommon",
category: "Pokemon",
dexId: [939],
hp: 140,
types: ["Lightning"],
description: {
ja: "目玉に 見えるが じつは お腹の へそダイナモで 作った 電気を 撃ちだす 放電器官なのだ。",
'zh-tw': "看似眼球的部位其實是 放電器官,能夠用來發射 腹部的發電臍製造的電力。",
th: "แม้จะดูเหมือนลูกตา แต่แท้จริงแล้วคืออวัยวะที่ปล่อยกระแสไฟฟ้าที่ผลิตจากสะดือไดนาโมตรงท้อง"
},
stage: "Stage1",
attacks: [{
cost: ["Lightning", "Colorless"],
name: {
ja: "でんきショック",
'zh-tw': "電擊",
th: "ช็อกไฟฟ้า"
},
damage: 50,
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【麻痺】。",
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว จะทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ชา]"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "ライトニングボール",
'zh-tw': "雷電球",
th: "ไลท์นิงบอล"
},
damage: 130
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card