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

65 lines
1.6 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': "達摩狒狒",
th: "ฮิฮิดารุมะ"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "OKUBO",
dexId: [555],
hp: 140,
types: ["Fire"],
description: {
ja: "血気 盛んな ポケモン。 太い 腕から 繰りだす パンチは ダンプカーも 粉々に するぞ。",
'zh-tw': "總是熱血沸騰的寶可夢。 牠厚重的手臂使出的拳擊 甚至能把砂石車打得粉碎。",
th: "เป็นโปเกมอนที่มีพละกำลังเต็มเปี่ยม หมัดที่ปล่อยออกมาจากลำแขนท่อนใหญ่ แม้รถบรรทุกเทท้ายก็แหลกเป็นผุยผงได้"
},
stage: "Stage1",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "ころがりタックル",
'zh-tw': "滾動衝撞",
th: "กลิ้งโจมตี"
},
damage: 60
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "もうかのとっしん",
'zh-tw': "猛火猛撞",
th: "ไฟลุกพุ่งเข้าใส่"
},
damage: 210,
effect: {
ja: "このポケモンにも70ダメージ。",
'zh-tw': "這隻寶可夢也受到70點傷害。",
th: "โปเกมอนนี้ก็จะได้รับแดเมจ 70 ด้วย"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card