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

65 lines
1.8 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 "../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