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

55 lines
1.0 KiB
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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "皮卡丘&捷克羅姆GX"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 240,
types: ["Lightning"],
stage: "Basic",
attacks: [{
name: {
'zh-tw': "滿溢驅動"
},
effect: {
'zh-tw': "從自己的牌庫抽出最多3張【雷】能量卡附於自己的1隻寶可夢身上。並且重洗牌庫。"
},
damage: 150,
cost: ["Lightning", "Lightning", "Lightning"]
}, {
name: {
'zh-tw': "聯手伏特GX"
},
effect: {
'zh-tw': "若額外附有3個【雷】能量則對手的1隻備戰寶可夢也受到170點傷害。[在備戰區不計算弱點・抵抗力。][對戰中己方只可使用1次GX招式。]"
},
damage: 200,
cost: ["Lightning", "Lightning", "Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
resistances: [{
type: "Metal",
value: "-20"
}],
retreat: 3,
regulationMark: "C"
}
export default card