MonitoringMinecraft MonitoringMinecraft

Enhanced SkyRecipes

Мод Fabric

Browse 8,000+ Hypixel SkyBlock items with crafting recipes, forge recipes, mob drops, NPC shops, essence upgrades, reforges, garden mutations and more. Smart search, autocomplete, and stat filters included.

165к скачиваний 1 подписчик
Оцените первым

Download on Modrinth Join Discord Requires Fabric API

Requires RRV Modrinth Downloads Join Fluxer

SkyRecipes

The complete SkyBlock recipe viewer — 8,000+ items, 12 recipe types, and powerful search.

Browse crafting recipes, forge recipes, mob drops, NPC shops, essence upgrades, reforges, garden mutations, and more. Built on Reliable Recipe Viewer as its display layer, with data sourced from the NEU repository and kept up to date automatically.

What is SkyRecipes?

SkyRecipes is a standalone Fabric client mod that adds the full SkyBlock item and recipe database to Minecraft, displayed through Reliable Recipe Viewer (RRV). On first launch it downloads and compiles data from the NotEnoughUpdates Repository, then keeps it cached and refreshed in the background. The result: instant recipe lookup, powerful search, and a clean UI for every SkyBlock item.

Recipe Types

SkyRecipes registers 12 custom SkyBlock recipe categories in RRV. Press R over an item to see how it's crafted or obtained, and U to see what recipes use it.

SkyBlock Crafting — Classic 3×3 crafting grid recipes pulled from the NEU recipe field. Shows ingredients, output count, craft requirements, and a direct link to the SkyBlock wiki.

SkyBlock Forge — Forge recipes with up to 9 ingredient slots, output item, and craft duration (e.g. "2h 30m"). Includes forge unlock requirement hints.

SkyBlock Mob Drops — Drop tables showing where you can obtain an item. Each entry displays its drop chance (e.g. 25% drop chance).

SkyBlock NPC Shop — Shop recipes showing the cost of an item and what you receive in return.

SkyBlock NPC Info — Info cards for every NPC (*_NPC items) showing their island, coordinates, and a Navigate button to locate them in-game. Requires SkyHanni.

SkyBlock Kat Upgrade — Kat pet upgrade recipes showing the input pet, required materials, coin cost, upgrade time, and resulting pet tier.

SkyBlock Trade — Simple trade recipes — one cost item, one result item.

SkyBlock Wiki Info — Fallback info card for items that have wiki URLs but no other recipe data, keeping every SkyBlock item accessible inside the viewer.

SkyBlock Essence Upgrade — Essence upgrade recipes showing the input item, essence type and cost per star, any companion materials required, and the upgraded output.

SkyBlock Reforge — Reforge recipes showing what stats each reforge provides. Displays the input item, reforge stone, applicable rarities, and a blacksmith NPC preview.

SkyBlock Garden Mutation — A built-in garden mutation reference with a 6×6 grid layout, surface/water requirements, spreading conditions, effects, and copper cost. Quickly look up the required layout for any mutation.

SkyBlock Shard Fusion — Every attribute shard shows the fusion combinations that produce it, with input amounts and output quantity. Each fusion card includes a SkyShards button (optimal fusion paths and prices on skyshards.com) and a Bazaar button. Clicking a shard also opens an info card with its ability, rarity, category, shard ID, and family.

Search & Discovery

Smart Autocomplete

Type in the RRV search bar and SkyRecipes shows gray ghost-text suggestions matching item display names, internal names, aliases, and recipe page names. Press Right Arrow or Tab to accept a suggestion instantly.

Common Aliases

SkyRecipes understands SkyBlock shorthand. Try searching:

  • aote → Aspect of the End
  • aotv → Aspect of the Void
  • juju → Juju Shortbow
  • term → Terminator
  • hype → Hyperion
  • gdrag → Golden Dragon Pet
  • valk → Valkyrie
  • ...and more.

Category Filtering

Click the category toggle buttons above the search bar to filter the item list to Armor, Weapons, Tools, Accessories, Pets, Enchanted Books, Minions, Equipment, or Materials.

You can also search by category path:

  • %ARMOR — all armor
  • %ARMOR/HELMET — helmets only
  • %PET — pets
  • %TOOL — tools
  • %WEAPON — weapons

Advanced Search Syntax

SkyRecipes supports structured queries beyond plain keywords:

Syntax Example Meaning
Stat thresholds damage>100 Items with more than 100 damage
health<=500 Items with 500 or less health
Rarity filter rarity:legendary or r:l Legendary items only
Type filter type:sword or t:bow Swords or bows
Slayer req slayer:zombie>3 Requires Zombie Slayer III+
Skill req skill:combat>20 Requires Combat 20+
Catacombs req cata>=5 Requires Catacombs 5+
Boolean flags dungeon, rift, soulbound, bazaar, craftable, forgeable, npc, vanilla, pet, accessory Filter by property
Exact phrase "mining speed" The words must appear together on one line of the name or lore
Regex /mining.*fortune/ Full regular expression, case-insensitive, matched one line at a time

Combine filters freely: rarity:legendary damage>200 dungeon sword finds legendary dungeon swords with more than 200 damage.

Exact phrases & regex

Plain keywords are matched independently and can land anywhere in an item's name or lore — even on different lines. So reforge stone mining speed also turns up items that merely happen to mention "mining" and "speed" on separate lines (the Sunstone, for example), not just true mining-speed reforges.

Wrap words in double quotes to require them as a contiguous phrase on a single line:

  • reforge stone "mining speed" — reforge stones whose effect text actually reads "mining speed"
  • "reforge stone" "mining speed" — same result, with both parts required as phrases

For full power, put a regular expression between slashes. It's case-insensitive and matched one line at a time (like grep), so it never bridges two lore lines:

  • /mining (speed|fortune)/ — lines mentioning mining speed or mining fortune
  • /\+\d+ mining speed/ — a numeric mining-speed bonus such as "+30 Mining Speed"

Type the alternation pipe | directly/(speed|fortune)/. Don't write \|; in a regex that means a literal | character and the alternation won't work.

New to regex? A regular expression is a tiny pattern language for describing text. You only need a handful of pieces:

  • . — any single character; .* — any run of characters ("anything in between")
  • \d — any digit 0–9; \d+ — one or more digits, i.e. a number like 30
  • + — one or more of the item before it; * — zero or more; ? — makes the item before it optional (swords? matches "sword" and "swords")
  • a|b — matches a or b; wrap the choices in parentheses to group them: (speed|fortune)
  • [abc] — any one of the listed characters ([ivx] matches a roman-numeral letter)
  • ^ — the start of the line; $ — the end of the line (^aspect matches lines that begin with "aspect")
  • \ — makes the next special character literal, so \+ matches a real + and \. a real .

Plain letters and spaces just match themselves, so you can mix them in. Putting it together, /\+\d+ (speed|fortune)/ reads as: a literal +, then a number, a space, then "speed" or "fortune" — matching stat lines like "+30 Speed" or "+12 Fortune". Everything is case-insensitive and checked one line at a time, so you never have to worry about upper/lowercase or a pattern spilling across two lore lines.

Phrases and regex combine with every other filter — e.g. %WEAPON rarity:legendary "ability damage". A half-typed or invalid regex is simply ignored until it's complete, so your results never blank out while you type. Plain keyword searches are completely unaffected.

Search Calculator

Evaluate math directly in the RRV search bar. The result appears as gray ghost text next to your query — no need to press anything.

Basic arithmetic

  • 10+1020
  • 50m / 1.2k41,666.66667
  • (1000+500)*23,000

SkyBlock unit suffixes (no spaces needed)

  • k → ×1,000 (e.g. 1.5m + 250k1,750,000)
  • m → ×1,000,000
  • b → ×1,000,000,000
  • t → ×1,000,000,000,000
  • s → ×64 (stack, e.g. 27s1,728)
  • e → ×160 (enchanted item, e.g. 10e1,600)
  • % → ÷100, a postfix percentage modifier (e.g. 50 * 10%5)

Operators

  • + - * / ^ (power)
  • x can be used in place of * for multiplication
  • ** is treated as ^

Config: calculatorPrecision controls decimal places (0–10, default 5).

Family Expansion

Tiered items — dungeon stars, pet tiers, minion tiers, accessory upgrades, and enchantment levels — are grouped into families. When family expansion is enabled, pressing R on one member can show recipes across the entire family, so you don't have to hunt down each tier separately.

Tiered Item Grouping

The item list groups tiered items into single expandable entries: minions, pets, enchantments, drills, accessory upgrade lines (Talisman → Ring → Artifact → Relic), armor upgrade lines, and crafted upgrade chains (Diamond → Enchanted Diamond → Enchanted Diamond Block, Aspect of the End → Aspect of the Void, and similar). Click a group to expand it; searching still surfaces exact tiers directly. Controlled by the groupTieredItems and groupCraftedChains settings, with per-group management in RRV's Stack Groups screen.

Configuration

Open the config through Mod Menu → SkyRecipes → Config. SkyRecipes uses MidnightLib, so all options are editable in-game with live saving.

Category Option Description
UI calculatorEnabled Enables math expressions in the RRV search bar
UI calculatorPrecision Decimal places for search-bar calculator results (0–10)
UI familyExpansionEnabled Groups tiered items (pets, minions, stars, accessory upgrades) into families
RRV groupTieredItems Collapses tiered items (minions, pets, enchantments, upgrade lines) into expandable groups in the item list
RRV groupCraftedChains Groups items that craft directly into one another as upgrade chains (takes effect after the next data load)
RRV shardFusionRecipes Shows fusion recipes for attribute shards (data from skyshards.com)
RRV blockKeybindsWhileTyping Try to prevents keybinds from other mods triggering while typing in the RRV search bar (Escape/Tab still work)
RRV hideCategoryButtons Completely hides the category icon row above the RRV search bar
RRV hideCategoryButtonsWhenNotSearching Hides category buttons when RRV is in "Only visible when searching" mode and the search bar is empty
RRV hideEmptyBookmarkPanel Auto-hides the bookmark side panel when no bookmarks exist
RRV wideRrvSearchBar Expands the RRV search bar (centred mode: up to the configured width; item-list mode: limited by available space)
RRV rrvSearchBarWidth Minimum width for the search bar when wide mode is enabled
RRV rrvItemListWidthPercent Adjusts the RRV item-list overlay width (25–100%)
RRV rrvSidePanelWidthPercent Adjusts the RRV side-panel overlay width (25–100%)
Data dataRefreshIntervalMinutes How often the background data refresh checks for NEU repo updates (15–480 minutes)

Recipe category visibility is managed natively by RRV through its Recipe Category Config screen.

Installation

  1. Install Minecraft 26.1.x with the Fabric Loader.
  2. Download the latest .jar from Modrinth.
  3. Also find and download the lates Fabric API and Reliable Recipe Viewer (RRV) jar and palce it in your mods folder. MidnightLib is bundled inside the SkyRecipes jar, so no separate download is needed.
  4. Launch the game. On first launch, SkyRecipes will download and compile the NEU repository in the background.
  5. Once the data is ready, press your RRV keybind (default R / U) on any SkyBlock item.

Download SkyRecipes on Modrinth

Support & Community

Have a bug report, feature request, or just want to hang out?

Join Discord Join Fluxer

Support the Project

Want to support development? You can do so on Ko-fi. All donations are greatly appreciated and help keep the mod updated.

Support on Ko-fi

Credits & Third-Party Attribution

Data sources

SkyRecipes would not exist without these community-maintained data sources:

  • NotEnoughUpdates Repository (MIT) — the SkyBlock item and recipe database (items, crafting, forge, drops, NPC shops, essence upgrades, attribute shards, and more). Downloaded and compiled at runtime, kept refreshed in the background.
  • SkyShards by Campionnn — the attribute shard fusion dataset powering the Shard Fusion recipe category. Fetched at runtime; visit skyshards.com for optimal fusion paths accounting for price.
  • Hypixel SkyBlock Wiki — the target of the in-mod wiki buttons.

Derivative code

This project includes derivative code from:

NotEnoughUpdates (NEU)

  • Project: https://github.com/NotEnoughUpdates/NotEnoughUpdates
  • License: GNU Lesser General Public License v3.0
  • Affected file(s): NeuCalculator.java (adapted from NEU Calculator)
  • Notes: Original lexer, shunting-yard parsing, and RPN evaluation logic were adapted and extended.

AI tools were extensively used during the creation of this project.

Смотри также

Похожие подборки моды — по версиям Майнкрафта, загрузчикам и жанрам.

Сервера Майнкрафт

Играть интереснее на сервере — выбирай в рейтинге серверов Майнкрафт и заходи прямо сейчас.

SkyBars
SkyBars Java + BE
1719 онлайн
1.8 — 26.2 версия
🎮 ВЫЖИВАНИЕ ⚔️ АНАРХИЯ 🚗 ГТА РП 🎤 ГОЛОСОВОЙ ЧАТ 🎁 БЕСПЛАТНЫЙ ДОНАТ 🌟 СМП 💻 ПК+ТЕЛЕФОН
CLOUDWORLD
6 онлайн
1.16.5 — 1.21.11 версия
Пвп, Арены, Дуэли, Кейсы, донаты, /free, приваты, спавн,
MigosMc
MigosMc Java + BE
1816 онлайн
1.8 — 26.2 версия
🌿 MigosMc.net | Гриферский сервер с войс-чатом | Награды за онлайн ⭐ ВЫЖИВАНИЕ⭐ ОДИНБЛОК⭐ МИНИ-ИГРЫ
Battle Mine
Battle Mine Java + BE
2 онлайн
1.21.4 — 26.2 версия
ОТКРЫТИЕ! 20 + различных ивентов, 10+ различных боссов, много интересных механник
MineLauncher
Лаунчер Майнкрафт без лицензии — все версии
Бесплатный лаунчер для ПК и Андроид — все версии 26.2, 1.21.11, 26.1.2, 1.21.8. Fabric, NeoForge, Forge, шейдеры, моды и скины в один клик.
Без лицензии Fabric, NeoForge, Forge Моды, шейдеры, скины Все версии Майнкрафта ПК и Андроид Для слабых ПК Сервера в лаунчере
Скачать бесплатно
Windows и Андроид · Бесплатно · Без лицензии
Наш чат