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

55 lines
950 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 "../S6K"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷電斑馬"
},
illustrator: "Hasuno",
category: "Pokemon",
hp: 120,
types: ["Lightning"],
description: {
'zh-tw': "有著閃電般的爆發力。如果雷電斑馬全速奔馳,雷聲就會響徹雲霄。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "聯合伏特"
},
effect: {
'zh-tw': "在上個自己的回合若這隻寶可夢以外的「連擊」寶可夢使用了招式則增加90點傷害。"
},
damage: "30+",
cost: ["Colorless"]
}, {
name: {
'zh-tw': "電光衝刺"
},
effect: {
'zh-tw': "擲硬幣直到出現反面造成正面出現的次數×90點傷害。"
},
damage: "90×",
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "E"
}
export default card