Mod

Black Horizont - Forbidden Nightfall

Quick rating

Black Horizont - Forbidden Nightfall

No reviews yet

Black Horizont - Forbidden Nightfall is a technology-based progression addon that introduces custom processors, dimensional keys, lore-driven laboratory access, and a personalized currency system replacing vanilla emeralds.

Tech
MCreator
Mod Loaders
Forge
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

About

Project Details

Type
Mod
Latest Version
blackhorizont_forbiddennightfall-1.1.2-forge-1.20.1.jar
Authors

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Overview

Black Horizont - Forbidden Nightfall is a technology-based progression addon designed to control and enhance gameplay progression through custom systems, lore integration, and modular design.

This mod introduces processors, dimensional keys, and specialized components required to unlock access to critical areas such as the Nether, The End, and restricted laboratory doors tied to the mod's lore.

Additionally, it provides a custom economy system that replaces vanilla emeralds with personalized currency, enabling deeper control over trading mechanics.

Important Notice

This mod is not pre-configured by default.

  • It is designed primarily as a supporting addon for the modpack:

    Black Horizont - Forbidden Nightfall

  • All items included are functional components, meaning:
    • They do not have fully standalone gameplay progression
    • They require custom configuration by the user or modpack developer

However, you are free to:

  • Use this mod in your own modpack
  • Customize recipes, progression, and systems according to your needs

Core Features

  • 🔧 Custom Processors & Components
    • Used for advanced crafting and progression systems
  • 🔑 Dimensional Access Keys
    • Control access to:
      • The Nether
      • The End
  • 🧪 Lore-Based Laboratory System
    • Unlock restricted areas through progression
  • 💰 Custom Economy System
    • Replaces vanilla emeralds with custom coins
    • Fully configurable via scripting
  • Economy System (KubeJS + MoreJS)

    To enable the custom economy system, you must configure it manually using KubeJS.

    📁 Setup

    1. Go to your server directory: kubejs/server_scripts/
    2. Create a new file, for example: economy.js
    3. Paste the following script:

MoreJSEvents.updateVillagerOffers(event => {
  let offers = event.getOffers();
  for (let i = offers.length - 1; i >= 0; i--) {
    let o = offers[i];
    if (o.getOutput().getId() === 'minecraft:emerald') {
      offers.splice(i, 1);
    } else {
      const a = o.getFirstInput();
      const b = o.getSecondInput();
      if (a && a.getId() === 'minecraft:emerald') {
        o.setFirstInput(Item.of('syngearaddons:coinbronze', a.getCount()));
      }
      if (b && b.getId() === 'minecraft:emerald') {
        o.setSecondInput(Item.of('syngearaddons:coinbronze', b.getCount()));
      }
    }
  }
});

MoreJSEvents.updateWandererOffers(event => {
  let offers = event.getOffers();
  for (let i = offers.length - 1; i >= 0; i--) {
    let o = offers[i];
    if (o.getOutput().getId() === 'minecraft:emerald') {
      offers.splice(i, 1);
    } else {
      const a = o.getFirstInput();
      const b = o.getSecondInput();
      if (a && a.getId() === 'minecraft:emerald') {
        o.setFirstInput(Item.of('syngearaddons:coinbronze', a.getCount()));
      }
      if (b && b.getId() === 'minecraft:emerald') {
        o.setSecondInput(Item.of('syngearaddons:coinbronze', b.getCount()));
      }
    }
  }
});

MoreJSEvents.updateAbstractVillagerOffers(event => {
  let offers = event.getOffers();
  for (let i = offers.length - 1; i >= 0; i--) {
    let o = offers[i];
    if (o.getOutput().getId() === 'minecraft:emerald') {
      offers.splice(i, 1);
    } else {
      const a = o.getFirstInput();
      const b = o.getSecondInput();
      if (a && a.getId() === 'minecraft:emerald') {
        o.setFirstInput(Item.of('syngearaddons:coinbronze', a.getCount()));
      }
      if (b && b.getId() === 'minecraft:emerald') {
        o.setSecondInput(Item.of('syngearaddons:coinbronze', b.getCount()));
      }
    }
  }
});

📌 What this does

  • Removes all trades that output emeralds
  • Replaces emerald inputs with: syngearaddons:coinbronze

Applies to:

  • Villagers
  • Wandering Trader
  • Custom/abstract trades

Crafting System (CraftTweaker)

Recipes are handled via CraftTweaker using standard shaped crafting.

⚠️ Important:

  • Recipes depend on items from other mods (such as Create and others)
  • You must adapt them to your own modpack

📦 Example Recipe

craftingTable.addShaped("blackhorizont_logicprocessor", <item:blackhorizont_forbiddennightfall:logicprocessor>, [
[<item:blackhorizont_forbiddennightfall:memorycardpins>, <item:blackhorizont_forbiddennightfall:memorycardpins>, <item:blackhorizont_forbiddennightfall:memorycardpins>],
[<item:blackhorizont_forbiddennightfall:memorycardpins>, <item:minecraft:gold_ingot>, <item:blackhorizont_forbiddennightfall:memorycardpins>],
[<item:blackhorizont_forbiddennightfall:memorycardpins>, <item:blackhorizont_forbiddennightfall:memorycardpins>, <item:blackhorizont_forbiddennightfall:memorycardpins>]
]);
 

🔧 Modpack Integration

This mod is ideal for:

  • Custom progression systems
  • Tech-based modpacks
  • Lore-driven gameplay experiences

It is highly recommended to:

  • Customize recipes
  • Adjust progression requirements
  • Integrate with other tech mods (e.g., Create)

📌 Final Notes

  • This mod is a framework-style addon
  • It provides tools, not a complete experience by itself
  • Full functionality depends on your configuration

Screenshots

Gallery

This project has no gallery images yet.

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

<1,000
Downloads
Last Updated
Created
Last synced
When ModDex last fetched and imported data for this project from CurseForge or Modrinth. High-traffic and active projects are checked more often.
Next pipeline sync