mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
45 lines
760 B
TypeScript
45 lines
760 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "雷吉鐸拉戈V"
|
||
},
|
||
|
||
illustrator: "PLANETA Hiiragi",
|
||
category: "Pokemon",
|
||
hp: 220,
|
||
types: ["Dragon"],
|
||
stage: "Basic",
|
||
suffix: "V",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "天之吶喊"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "將自己的牌庫上方3張卡丟棄,將其中的能量卡全部附於這隻寶可夢身上。"
|
||
},
|
||
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "龍之鐳射"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Grass", "Grass", "Fire"]
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |