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

60 lines
1000 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ダルマッカ",
'zh-tw': "火紅不倒翁"
},
category: "Pokemon",
rarity: "Common",
illustrator: "osare",
dexId: [554],
hp: 80,
types: ["Fire"],
description: {
ja: "体の 中で 燃える 炎が パワーの 源。 火が 小さく なると たちまち 眠ってしまう。",
'zh-tw': "能量之源是體內的火焰。 如果火焰變小了, 牠馬上就會睡著。"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "かいりき",
'zh-tw': "怪力"
},
damage: 10
}, {
cost: ["Fire", "Fire"],
name: {
ja: "ほのおタックル",
'zh-tw': "火焰衝撞"
},
damage: 50,
effect: {
ja: "このポケモンにも20ダメージ。",
'zh-tw': "這隻寶可夢也受到20點傷害。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card