1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

46
data-asia/SV/SVP1/005.ts Normal file
View File

@@ -0,0 +1,46 @@
import { Card } from "../../../interfaces"
import Set from "../SVP1"
const card: Card = {
set: Set,
name: {
'zh-tw': "巴布土撥ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 300,
types: ["Lightning"],
stage: "Stage2",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "電氣踢"
},
damage: 60,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "閃電強襲"
},
effect: {
'zh-tw': "將2個這隻寶可夢身上附加的【雷】能量丟棄對手的1隻寶可夢受到220點傷害。[在備戰區不計算弱點・抵抗力。]"
},
cost: ["Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0,
regulationMark: "G"
}
export default card