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

51 lines
786 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷鳥龍V"
},
illustrator: "Ryota Murayama",
category: "Pokemon",
hp: 220,
types: ["Lightning"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "遠古鳥嘴"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的寶可夢,無法從手牌使出並附上能量。"
},
damage: 30,
cost: ["Lightning"]
}, {
name: {
'zh-tw': "山岳橫掃"
},
effect: {
'zh-tw': "將自己的牌庫上方3張卡丟棄。"
},
damage: 180,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card