Neroland Core is a library mod. On its own it adds only a handful of shared materials, but it provides the common backbone — materials, config, progression, economy, machines and energy — that lets the whole Neroland ecosystem (starting with Nerospace) work together as one coherent universe instead of a pile of unrelated add-ons.
ℹ️ You usually don't install this by itself. Add it because a mod you want — like Nerospace — requires it. With Core installed, every Neroland mod shares the same materials, energy, economy and progression.
For players
- Shared materials — Nero Alloy, Starsteel, Void Crystal and Plasma Glass (ingots, nuggets, dusts, plates, blocks, and Plasma Glass panes), all in one organised Neroland creative tab. Other Nero mods' ores smelt into these, so materials are consistent everywhere.
- One config + one command — every Neroland mod's settings live in the same place, reloadable in-game with
/neroland config reload. - A coherent ecosystem — shared progression milestones, a single economy/reputation layer and one energy standard mean Nero mods feel like one game.
For modders
A stable, multiloader API to build a Nero mod on:
- 🧩 Cross-loader registration + platform seams (no Architectury).
- ⚙️ A typed config service with defaults, validation and server→client sync.
- 🚩 A datapack-driven progression-gate system (per-player / team / server).
- 💰 Currency & reputation API contracts (NeroEconomy / NeroFactions implement the store).
- 🔧 A base machine block-entity with a Nero energy power type + an upgrade-module framework.
- 🔒 A shared per-player data-erasure hook (POPIA/GDPR) so one request purges a player across every Nero mod.
External interop (Create / AE2 / Mekanism / Ad Astra) is routed through common c: tags — no hard dependency on any third-party mod. Full developer docs are in the repository.
Compatibility
- Minecraft: 26.1.2 and 26.2
- Loaders: NeoForge, Forge, and Fabric
- Requires: Fabric API on Fabric
- Modpacks are allowed — see the LICENSE.
Links
Telemetry notice: Neroland Core sends anonymous error reports (stack trace + mod/game versions only — never IPs, usernames, UUIDs, or world data) to the developers via Sentry (EU servers) so crashes can be fixed. Opt out any time by setting
telemetryEnabled = falseinconfig/nerolandcore.properties. Full details: PRIVACY.md.
Created by Neroland. The project logo was made with the help of AI image tools; in-game art is generated by the project's own tooling.
v1.14.0 24 Sept 2026
EMI compatibility. No gameplay, id, tag or config change.
Added
- EMI support. Every Neroland Core recipe uses a vanilla recipe type, which EMI shows on its own, so
nothing needed a plugin. The build now compiles against the community EMI Unofficial Port (Unstable),
the only EMI build for Minecraft 26.x, and dev clients load it with
-PwithEmi(default runs stay JEI-only). EMI stays optional.