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

49 lines
910 B
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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "自爆磁怪VSTAR"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 270,
types: ["Lightning"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "磁力緊握"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張物品卡在給對手看過後加入手牌。並且重洗牌庫。"
},
damage: 180,
cost: ["Lightning", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]電子星星"
},
effect: {
'zh-tw': "對手的2隻備戰寶可夢各受到90點傷害。[在備戰區不計算弱點・抵抗力。][對戰中己方只可使用1次【VSTAR】力量。]"
},
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card