Skip to main content

stronghold-finding

Craft eyes of ender, find the stronghold with the locate_structure tool (no eye-throwing needed), reach the portal room, and fill the 12 frames via inspect_block + interact_at.

설치로 이동

소스 정보

저장소
Dwinovo/minecraft-animus
최근 소스 활동
2026년 8월 6일 09:51
감지된 SKILL.md 언어
영어
스타
403
포크
46

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
stronghold_finding
description
Craft eyes of ender, find the stronghold with the locate_structure tool (no eye-throwing needed), reach the portal room, and fill the 12 frames via inspect_block + interact_at.
# Skill: stronghold_finding Phase 5 of the dragon route. With rods and pearls in hand you craft eyes, walk straight to the stronghold — **`locate_structure("minecraft:stronghold")` replaces the whole throw-and-triangulate ritual** — and activate the End portal. ## Done when - You're standing at an **activated End portal** (all 12 frames filled, purple portal surface visible) - Dragon-fight gear still intact (`get_self_status` check against `dragon_combat`'s packlist) ## Step 1 — craft the eyes Both are 2×2/shapeless recipes — `lookup_recipe` for the layout, then `transfer` the ingredients into a grid and take the result (see the `containers` skill; no crafting table needed). 1. `blaze_powder` — each blaze rod grinds into 2 powder. 2. `ender_eye` (×12) — 1 blaze powder + 1 ender pearl each. 12 is the worst case; frames generate pre-filled at 10% each (~1–2 typically), so spares may remain. **Never throw eyes to navigate** — `locate_structure("minecraft:stronghold")` is free and exact; eyes are only for the frames. ## Step 2 — go there 1. `locate_structure("minecraft:stronghold")` → coordinates, direction, distance (often 1000–2500 blocks; the journey is the long part). 2. `goto(x, ~60, z)` to cross the surface, then `goto(x, 30, z)` — navigation digs down on its own. Strongholds sit around Y 6–50. 3. Hit stone bricks → you're inside. `scan_blocks(end_portal_frame)` to find the portal room; no match → explore corridors with `goto` and rescan. (Stronghold corridors are stone_bricks / mossy_stone_bricks / cracked_stone_bricks.) ## Step 3 — secure the portal room The room has a lava pool under the frame and a **silverfish spawner** on the stairs: 1. `mine(spawner)` immediately — unlike the blaze spawner, this one is pure liability. 2. If silverfish are already out, scan them, then pass their runtime IDs to `attack`; don't let them burrow into the brickwork. 3. `build` cobblestone over the lava pool edges where you'll stand. ## Step 4 — fill the frames 1. The 12 `end_portal_frame` blocks ring a 3×3 opening. `scan_blocks(end_portal_frame)` lists all 12 positions. 2. `inspect_block` each frame — the `has_eye` property tells you which are pre-filled. 3. `interact_at(button=right, x, y, z, item_id=minecraft:ender_eye)` on each empty frame. **Eyes cannot be taken back out.** 4. The 12th eye activates the portal; the opening fills with the starfield surface. ## Before dropping in - `load_skill(name="dragon_combat")` **now**, not after jumping — the fight needs a plan. - Verify the dragon packlist and **tell your owner the portal is active and where it is.** They may want to set their respawn nearby and come watch — entering the End is one-way until the dragon dies. ## What to load next `dragon_combat`. This is the final phase.
GitHub에서 보기