1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

82
data-asia/S/S8b/056.ts Normal file
View File

@ -0,0 +1,82 @@
import { Card } from "../../../interfaces"
import Set from "../S8b"
const card: Card = {
set: Set,
name: {
'zh-tw': "莫魯貝可V-UNION"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 310,
types: ["Lightning"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "寶可夢V-UNION放置方法"
},
effect: {
'zh-tw': "對戰中可放置1次在自己的回合將自己的棄牌區中4種莫魯貝可【V-UNION】加以組合放置於備戰區。"
}
}, {
name: {
'zh-tw': "聯盟增輝"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張【雷】能量卡附於這隻寶可夢身上。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "吃到飽"
},
effect: {
'zh-tw': "從牌庫抽卡直到自己的手牌滿10張為止。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "爆炸輪"
},
effect: {
'zh-tw': "將這隻寶可夢身上附加的能量全部丟棄造成其張數×100點傷害。"
},
damage: "100×",
cost: ["Lightning", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "雷電球"
},
damage: 160,
cost: ["Lightning", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "V-UNION規則"
},
effect: {
'zh-tw': "寶可夢【V-UNION】【氣絕】時對手獲得3張獎賞卡。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card