mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
51
data-asia/SV/SVC/009.ts
Normal file
51
data-asia/SV/SVC/009.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SVC"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "巴布土撥"
|
||||
},
|
||||
|
||||
illustrator: "kodama",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "雖然平時動作慢吞吞的,但在逼不得已要面對戰鬥時,會用迅雷不及掩耳的身手擊潰敵人。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "音速伏特"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "電氣拳"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻備戰寶可夢也受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user