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

40 lines
713 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': "捷拉奧拉V"
},
illustrator: "chibi",
category: "Pokemon",
hp: 210,
types: ["Lightning"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "十字拳"
},
effect: {
'zh-tw': "在上個自己的回合若這隻寶可夢以外的「連擊」寶可夢使用了招式則對手的1隻備戰寶可夢也受到160點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 100,
cost: ["Lightning", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card