1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

59 lines
1.1 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "メラルバ",
'zh-tw': "燃燒蟲",
'zh-cn': "燃燒蟲"
},
illustrator: "MARINA Chikazawa",
rarity: "Common",
category: "Pokemon",
dexId: [636],
hp: 70,
types: ["Fire"],
description: {
ja: "大昔は 太陽の遣い と 崇められたが しばしば 山火事を 起こすこともあり 煙たがられた。",
'zh-tw': "在遙遠的過去曾被信奉成 太陽的使者,但卻因為常常 引發森林大火而遭人們疏遠。",
'zh-cn': "在遙遠的過去曾被信奉成 太陽的使者,但卻因為常常 引發森林大火而遭人們疏遠。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
'zh-cn': "衝撞"
},
damage: 10
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "ひをはく",
'zh-tw': "吐火",
'zh-cn': "吐火"
},
damage: 20
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card