1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

49
data-asia/S/S10a/017.ts Normal file
View File

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