1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

67
data-asia/SV/SV8a/217.ts Normal file
View File

@ -0,0 +1,67 @@
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