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

51 lines
913 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: "kodama",
category: "Pokemon",
hp: 170,
types: ["Dragon"],
description: {
'zh-tw': "在不斷地強烈祈求之下,身體的細胞發生了突變,讓牠得到了夢寐以求的翅膀。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "威嚇戰吼"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
}
}],
attacks: [{
name: {
'zh-tw': "龍之殘暴"
},
effect: {
'zh-tw': "若對手的戰鬥寶可夢身上放置有傷害指示物則增加120點傷害。"
},
damage: "100+",
cost: ["Fire", "Water"]
}],
retreat: 2,
regulationMark: "E"
}
export default card