Agent skill
diamond-mining
ダイヤモンド採掘の戦略とテクニック。Y=-59のブランチマイニング、鉄ピッケル以上が必要。 Use when: ダイヤモンドが欲しい、最強装備を作りたい、ブランチマイニングのやり方を知りたい時。鉄ピッケル所持が前提。
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/diamond-mining
SKILL.md
ダイヤモンド採掘スキル
ダイヤはエンドゲーム装備に必須。効率的な採掘方法をマスターする。
前提条件
- 鉄のピッケル以上(木・石ではドロップしない)
- 松明(大量)
- 食料
- 水バケツ(溶岩対策)
ダイヤの生成高度
1.18以降(現行バージョン)
| 高度 (Y) | 生成量 | 備考 |
|---|---|---|
| Y=-64〜-60 | 最多 | 深層岩、岩盤付近 |
| Y=-59 | ピーク | 最も効率的 |
| Y=14以下 | 少量 | 旧バージョン方式 |
推奨採掘高度
Y = -59(深層岩層)
採掘方法
1. ブランチマイニング(最効率)
# メイン通路を掘る
minecraft_dig_block { x, y: -59, z } # 直進
# 3ブロック間隔で枝を伸ばす
#
# メイン通路
# ━━━━━━━━━━━━━━━━━
# ↑ ↑ ↑ ↑ ↑ 枝(3ブロック間隔)
# | | | | |
なぜ3ブロック間隔?
- ダイヤ鉱脈は最大8ブロック
- 3間隔で見落としなし
2. 実際の手順
# 1. Y=-59まで階段で降りる
minecraft_dig_block { ..., y: current_y - 1 } # 繰り返し
# 2. メイン通路を作成(高さ2)
minecraft_dig_block { x, y: -59, z }
minecraft_dig_block { x, y: -58, z }
# 3. 松明を設置(8ブロックごと)
minecraft_place_block { block_type: "torch", ... }
# 4. 枝を掘る
# 左右に交互に、3ブロック間隔で
3. 採掘パターン図
上から見た図(Y=-59):
北
↑
T----+----+----+----T メイン通路(T=松明)
| | | | |
| | | | | 枝(各20-30ブロック)
| | | | |
危険対策
溶岩
# 水バケツを常に持つ
minecraft_equip_item { item_name: "water_bucket" }
# 溶岩を見つけたら水で固める
minecraft_use_item {}
重要: Y=-54以下は溶岩湖に注意
落下
# 真下を掘らない
# 足元を確認しながら進む
モブ
# 松明を頻繁に設置
# 暗いところはスポーン可能
minecraft_place_block { block_type: "torch", ... }
ダイヤ発見時
# 1. 周囲を全部掘る(最大8ブロック繋がってる可能性)
minecraft_dig_block { ... } # 周囲8方向 + 上下
# 2. 回収
minecraft_collect_items {}
# 3. 場所を記録(また近くにあるかも)
remember_location { name: "diamond_vein_1", ... }
効率化テクニック
Fortune(幸運)エンチャント
| レベル | 平均ドロップ |
|---|---|
| なし | 1個 |
| Fortune I | 1.33個 |
| Fortune II | 1.75個 |
| Fortune III | 2.2個 |
推奨: ダイヤを見つけても、Fortuneピッケル入手まで掘らずにマーク
シルクタッチ
- ダイヤ鉱石のまま回収
- 後でFortune付きで掘り直し可能
必要ダイヤ数の目安
| 用途 | 必要数 |
|---|---|
| ダイヤピッケル | 3個 |
| ダイヤ剣 | 2個 |
| フルアーマー | 24個 |
| エンチャントテーブル | 2個 |
| 合計(基本セット) | 31個 |
チェックリスト
採掘前:
- 鉄ピッケル以上
- 松明 64本以上
- 食料 32個以上
- 水バケツ
- 予備のピッケル
採掘中:
- Y=-59を維持
- 3ブロック間隔でブランチ
- 松明を8ブロックごと
- 溶岩は水で固める
ダイヤ発見時:
- 周囲を全て掘る
- 座標を記録
- インベントリに空きを確認
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?