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

52 lines
828 B
TypeScript
Raw Permalink 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "紅蓮鎧騎"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
hp: 120,
types: ["Fire"],
description: {
'zh-tw': "藉由立下眾多勛績的戰士所穿的鎧甲進化成的樣子。 是忠心耿耿的寶可夢。"
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
'zh-tw': "灼熱鎧甲"
},
effect: {
'zh-tw': "這隻寶可夢在戰鬥場上受到對手的寶可夢招式的傷害時,將使用招式的寶可夢【灼傷】。"
}
}],
attacks: [{
name: {
'zh-tw': "爆熱炮"
},
damage: 70,
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card