Перейти к содержимому
Mineforgian

Enhanced SkyRecipes

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.

39K загрузок1 подписчиковGPL-3.0-onlyfabric

Обновлён 4 июля 2026 г. · опубликован 7 июня 2026 г.

  • Crafting Recipe
  • Crafting Recipe preview 2
  • Forge Recipe preview
  • Mob Drops Recipe preview
  • NPC Shop Recipe preview
  • Kat Upgrade Recipe preview

Download on Modrinth Join Discord Requires Fabric API

Requires RRV Modrinth Downloads Join Fluxer

SkyRecipes

The complete SkyBlock recipe viewer — 8,000+ items, 11 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 11 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.

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.

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 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%)

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

Installation

  1. Install Minecraft with the Fabric Loader for 1.21.1.
  2. Download the latest .jar from Modrinth.
  3. Place Fabric API in your mods folder. MidnightLib is bundled inside the SkyRecipes jar, so no separate download is needed.
  4. Install Reliable Recipe Viewer (RRV) to see the recipes in-game.
  5. Launch the game. On first launch, SkyRecipes will download and compile the NEU repository in the background.
  6. 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

Third-Party Attribution

This project includes derivative code from:

NotEnoughUpdates (NEU)

  • Project: https://github.com/NotEnoughUpdates/NotEnoughUpdates
  • License: GNU Lesser General Public License v3.0 or later (LGPL-3.0-or-later)
  • 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 development of this project.

Версии

ВерсияКаналИграЗагрузчикиДатаСкачать
v0.3.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric4 июля 2026 г..jar (759 КБ)
v0.2.5-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric30 июня 2026 г..jar (741 КБ)
v0.2.4-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric28 июня 2026 г..jar (740 КБ)
v0.2.3-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric26 июня 2026 г..jar (737 КБ)
v0.2.2-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric23 июня 2026 г..jar (735 КБ)
v0.2.1-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric20 июня 2026 г..jar (732 КБ)
v0.2.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric15 июня 2026 г..jar (731 КБ)
v0.1.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2fabric13 июня 2026 г..jar (727 КБ)

Ченджлог

v0.3.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 4 июля 2026 г.

0.3.0

  • The RRV item list now moves out of the way of Skyblocker Museum donation widget.
  • You can now look up recipes straight from Skyblocker's Museum overlay: hover a donation and press R (recipe) or U (uses), or left-click (recipe) / right-click (uses) it. Skyblocker's own search, wiki, and price lookups keep working exactly as before.
  • Fixed a crash that happened when opening your inventory with the latest Skyblocker (6.6.0) installed. The Garden plots widget had changed on Skyblocker's side, which broke SkyRecipes' compatibility patch.
  • If the recipe data can't be downloaded (offline, or GitHub blocked by a firewall/VPN), the item panel now explains what went wrong instead of just sitting empty, and points you at the fix.
  • New /skyrecipes import command as a last-resort backup: download the SkyBlock data ZIP (NEU-REPO) yourself in a browser (or get a friend to do it), then drop it into the skyrecipes/import/ folder, and run the command to use it. Automatic updates take over again once the mod can reach the internet/NEU-REPO.
  • Fixed an issue (mainly on Windows) where a corrupted data file could block every future data update until the game was restarted.
  • /skyrecipes status now reports honestly if recipe loading crashed partway through, instead of claiming everything loaded fine.
  • Fixed search suggestions disappearing for any word containing an "x" (like "axe", "pickaxe", or "onyx"). Typing "5x3" still works as a calculator.
  • Smoother frame rate while recipe views are open: mob-head previews and the coin/essence amounts on NPC Shop, Essence Upgrade, and Kat Upgrade cards no longer redo heavy work every frame.
  • Faster, stutter-free data loading: the search suggestion list is now built once in the background instead of twice while the game is rendering.
  • Fixed a surprise "Refresh complete" chat message appearing hours after a failed /skyrecipes refresh.
  • Clearer wording and coloring for a few error messages.
  • /skyrecipes refresh repoData is now a true clean rebuild: it always re-downloads and rebuilds everything from scratch (no shortcuts), but your current items and recipes keep working the whole time — if the refresh fails, nothing is lost and the old data stays.
  • Data refreshes are noticeably faster: the new data file is now read once instead of twice, and item building during a refresh reuses work instead of re-parsing the same items tens of thousands of times.
  • Searching with a typo (fuzzy matching) is faster and no longer creates thousands of tiny memory allocations per keystroke.
  • A typo in a stat filter (like helth>50) no longer silently empties the item list — the word is now just searched as plain text.
  • Closing a recipe view now shows the shop/menu behind it with its current contents. Before, anything that changed while the recipe view was open (rotating shop stock, timers, auction updates) looked frozen until your next click — risky in shops and the Auction House.
  • "NPC Info" buttons no longer briefly stop working while the mod refreshes its data in the background.
  • Mob skin previews now update after a data refresh instead of keeping the old texture.
  • Inventory highlighting now refreshes correctly after a background data update, even if your search text didn't change.
  • If a whole recipe category (essence upgrades, reforges, or garden mutations) fails to load, /skyrecipes status now says so instead of reporting everything as fine.
  • Storage chests no longer show up when filtering for chestplate armor.
  • Inventory search (double-click the RRV search bar) is much smarter: searching an enchant name (like "ultimate wise" or "sharpness") now highlights both enchanted books with that enchant and items that have it applied. It also matches against each item's actual name and lore — including reforges — so you can find anything in your inventory the same way you search the item list.
  • /skyrecipes status is now much easier to read and act on: each state explains what it means in plain words, problems come with a clickable "Fix:" suggestion, unimportant numbers are hidden unless something went wrong, and it shows when the next data check will happen.
v0.2.5-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 30 июня 2026 г.

0.2.5

  • Clearer messages when the recipe data can't be downloaded.
v0.2.4-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 28 июня 2026 г.

0.2.4

  • Recipe data now downloads and is stored in a single tidy folder instead of being spread across several locations, and the large temporary download file is removed automatically once it has been processed.
  • Smoother, more reliable startup: the mod no longer borrows Minecraft's shared background work queue. On slower (low-core) computers that sharing could contribute to the game hanging on the loading screen.
  • The first time you launch this version your existing data is moved to the new folder automatically — nothing is re-downloaded.
v0.2.3-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 26 июня 2026 г.

0.2.3

  • You can now search pets by their skill. Type mining pet to list every Mining pet — the same works for Combat, Farming, Fishing, Foraging, Alchemy, Enchanting, and Taming pets. The pet:mining form works too, and both show exactly the pets the game groups under that skill.
  • Fixed searching pet or accessory in the item list, which previously showed no results.
v0.2.2-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 23 июня 2026 г.

0.2.2

  • Added command to open the config menu.
v0.2.1-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 20 июня 2026 г.

0.2.1

  • Fixed a game crash that could happen while the recipe viewer's craftables panel updated in the background
v0.2.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 15 июня 2026 г.

0.2.0

  • You can now search for a mob and click it to see everything it drops
  • Added regex support to advanced search
  • Added missing lang entries
v0.1.0-mc26.1.2Бета26.1, 26.1.1, 26.1.2 · 13 июня 2026 г.

Initial Release

Полная история изменений — на Modrinth.

Комментарии

Загружаем…