mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 03:29:51 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
50
data-asia/S/S10a/016.ts
Normal file
50
data-asia/S/S10a/016.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "自爆磁怪V"
|
||||
},
|
||||
|
||||
illustrator: "N-DESIGN Inc.",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "拉鋸磁力"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇對手的1隻備戰寶可夢,與戰鬥寶可夢互換。然後,新上場的寶可夢受到40點傷害。"
|
||||
},
|
||||
|
||||
cost: ["Lightning", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "分岔光束"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的2隻備戰寶可夢也各受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user