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

46 lines
749 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 "../S7R"
const card: Card = {
set: Set,
name: {
'zh-tw': "雷吉鐸拉戈"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "全身是由龍之能量的結晶打造而成。據說牠擁有所有的龍寶可夢的力量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "頭突"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "巨龍威能"
},
effect: {
'zh-tw': "減少這隻寶可夢身上放置的傷害指示物的數量×20點傷害。"
},
damage: "240-",
cost: ["Grass", "Grass", "Fire"]
}],
retreat: 3,
regulationMark: "E"
}
export default card