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

74 lines
2.4 KiB
TypeScript
Raw Permalink 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ガチグマ アカツキex",
id: "Ursaluna Bulan Merah ex",
th: "กาจิกุมะ พระจันทร์สีเลือดex",
'zh-tw': "月月熊 赫月ex",
'zh-cn': "月月熊 赫月ex"
},
illustrator: "aky CG Works",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Colorless"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "ろうれんのわざ",
id: "Jurus Terlatih",
th: "ทักษะเจนจัด",
'zh-tw': "老練招式",
'zh-cn': "老練招式"
},
effect: {
ja: "相手がすでにとったサイドの枚数ぶん、このポケモンが「ブラッドムーン」を使うためのエネルギーは少なくなる。",
id: "Energi {Bening} yang dibutuhkan oleh Pokémon ini untuk menggunakan Bulan Darah berkurang untuk tiap lembar Kartu Point yang telah diambil lawan.",
th: "พลังงาน[ไร้สี]สำหรับใช้ [บลัดมูน] ของโปเกมอนนี้จะลดลง ตามจำนวนการ์ดรางวัลที่ฝ่ายตรงข้ามหยิบไปแล้ว",
'zh-tw': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。",
'zh-cn': "這隻寶可夢使用「血月」所需的【無】能量,減少對手已經獲得的獎賞卡的張數數量。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ブラッドムーン",
id: "Bulan Darah",
th: "บลัดมูน",
'zh-tw': "血月",
'zh-cn': "血月"
},
damage: 240,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card