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

67 lines
1.5 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ブラッキーex",
id: "Umbreon ex",
'zh-tw': "月亮伊布ex",
'zh-cn': "月亮伊布ex"
},
illustrator: "YASHIRO Nanaco",
rarity: "None",
category: "Pokemon",
hp: 280,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ムーンミラージュ",
id: "Moon Mirage",
'zh-tw': "月亮幻想",
'zh-cn': "月亮幻想"
},
damage: 160,
effect: {
ja: "相手のバトルポケモンをこんらんにする。",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Pusing.",
'zh-tw': "將對手的戰鬥寶可夢【混亂】。",
'zh-cn': "將對手的戰鬥寶可夢【混亂】。"
}
}, {
cost: ["Lightning", "Psychic", "Darkness"],
name: {
ja: "オニキス",
id: "Onyx",
'zh-tw': "縞瑪瑙",
'zh-cn': "縞瑪瑙"
},
effect: {
ja: "このポケモンについているエネルギーをすべてトラッシュし、自分のサイドを1枚とる。",
id: "Buang semua Energi yang dikenakan pada Pokémon ini ke Trash, lalu ambil 1 lembar Kartu Point sendiri.",
'zh-tw': "將這隻寶可夢身上附加的能量卡全部丟棄獲得1張自己的獎賞卡。",
'zh-cn': "將這隻寶可夢身上附加的能量卡全部丟棄獲得1張自己的獎賞卡。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card