1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

57 lines
1.6 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 "../SV9s"
const card: Card = {
set: Set,
name: {
th: "ฮาราบารีex ของนันจาโม",
id: "Bellibolt <Mistika> ex"
},
illustrator: "Yuu Nishida",
category: "Pokemon",
hp: 280,
types: ["Lightning"],
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
th: "อิเล็กทริกสตรีมเมอร์",
id: "Streamer Elektrik"
},
effect: {
th: "ใช้กี่ครั้งก็ได้ในเทิร์นฝ่ายเรา เลือกการ์ด [พลังงานพื้นฐาน[สายฟ้า]] 1 ใบจากบนมือ ฝ่ายเรา ติดที่ [โปเกมอนของนันจาโม] ฝ่ายเรา",
id: "Dapat digunakan berkali-kali pada giliran sendiri. Pilih 1 lembar Energi Dasar {Listrik} dari Kartu Pegangan sendiri, lalu kenakan pada Pokémon Mistika sendiri."
}
}],
attacks: [{
name: {
th: "ธันเดอร์โบลต์",
id: "Thunderbolt"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 230,
cost: ["Lightning", "Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "I",
suffix: "EX"
}
export default card