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

60 lines
1.0 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ヒヒダルマ",
'zh-tw': "達摩狒狒"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "OKUBO",
dexId: [555],
hp: 140,
types: ["Fire"],
description: {
ja: "血気 盛んな ポケモン。 太い 腕から 繰りだす パンチは ダンプカーも 粉々に するぞ。",
'zh-tw': "總是熱血沸騰的寶可夢。 牠厚重的手臂使出的拳擊 甚至能把砂石車打得粉碎。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "ころがりタックル",
'zh-tw': "滾動衝撞"
},
damage: 60
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "もうかのとっしん",
'zh-tw': "猛火猛撞"
},
damage: 210,
effect: {
ja: "このポケモンにも70ダメージ。",
'zh-tw': "這隻寶可夢也受到70點傷害。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card