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

46 lines
737 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 "../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