1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

54 lines
897 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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "臺北的皮卡丘"
},
illustrator: "REOspikee",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
'zh-tw': "在森林裡和夥伴們一起生活。會把電力 儲存在兩頰的電囊裡。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "新開幕"
},
effect: {
'zh-tw': "雙方玩家各將自己的牌庫上方1張卡翻到正面在給對手看過後加入手牌。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "樂享伏特"
},
effect: {
'zh-tw': "擲3次硬幣造成正面出現的次數×30點傷害。"
},
damage: "30×",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card