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

47 lines
884 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 "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈"
},
illustrator: "DOM",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "有學者認為牠的手臂是古代龍寶可夢頭部的形狀。 但這個學說尚未被證實。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "龍之護庇"
},
effect: {
'zh-tw': "若這隻寶可夢在戰鬥場上則在自己的回合時可使用1次。從牌庫抽卡直到自己的手牌滿4張為止。在這個回合若已經使出了其他的「龍之護庇」則這個特性無法使用。"
}
}],
attacks: [{
name: {
'zh-tw': "巨大之牙"
},
damage: 160,
cost: ["Grass", "Fire", "Colorless"]
}],
retreat: 3,
regulationMark: "F"
}
export default card