1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

51 lines
802 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "火神蛾"
},
illustrator: "Yukiko Baba",
category: "Pokemon",
hp: 140,
types: ["Fire"],
description: {
'zh-tw': "燃燒的身體在炎熱之地備受嫌棄,但在寒冷之地 卻被信奉為太陽的化身。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "火焰纏身"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張「基本【火】能量」卡附於這隻寶可夢身上。"
},
damage: 30,
cost: ["Fire"]
}, {
name: {
'zh-tw': "高溫爆破"
},
damage: 130,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card