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

46 lines
779 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 "../S7D"
const card: Card = {
set: Set,
name: {
'zh-tw': "帝牙盧卡"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
description: {
'zh-tw': "擁有操縱時間的力量。在神奧地區被稱為神,並在神話中登場。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "時間扭轉"
},
effect: {
'zh-tw': "在下個對手的回合受到這個招式的「寶可夢【V】」無法使用招式。"
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
'zh-tw': "重磅衝擊"
},
damage: 210,
cost: ["Psychic", "Metal", "Metal", "Colorless"]
}],
retreat: 2,
regulationMark: "E"
}
export default card