Advancement Cradle

Quick rating

Advancement Cradle

No reviews yet

A data-driven NeoForge framework that lets creators map advancements to permanent attribute modifiers, custom item grants, and conditional drop tables via simple data pack JSON schemas.

QoL & Tweaks
Mod Loaders
NeoForge
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
Advancement Cradle Framework
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

🐣 Advancement Cradle

The Ultra-Lightweight, Data-Driven Progression Engine for 1.21.1

Advancement Cradle is a robust, modular framework that transforms Minecraft's native advancement tracks into a powerful, data-driven RPG progression system. Built with performance and flexibility in mind, it allows modpack developers, server administrators, and content creators to map custom reward payloads directly to vanilla or modded advancements using simple data pack JSON files. Zero Java knowledge required.

Whether you want to build an MMORPG-style leveling system, reward players for conquering difficult milestones, or create highly specific harvest tables, Advancement Cradle provides the stable core infrastructure to make it happen.

🛠️ Core Capabilities

  • ⚡ Dynamic Attribute Modifiers: Permanent injections into Minecraft's native Core Attribute registry (e.g., Movement Speed, Mining Efficiency, Max Health). Supports multiple mathematical operations (ADD_VALUE, ADD_MULTIPLIED_BASE, ADD_MULTIPLIED_TOTAL) with built-in duplicate prevention.

  • 💎 Advanced Conditional Drop Tables: Trigger drop chances dynamically based on block mining or entity combat. Includes full tool/weapon validation matching against explicit item IDs or native registry tags (e.g., #minecraft:pickaxes).

  • 🎒 Direct Item Grants: Instantly inject items into the player's hotbar or inventory upon achievement completion. Features an automated inventory fail-safe that safely drops the payload at the player's feet if their bags are full.

  • 💾 Cross-Session Permanence: Light on memory and completely uncorruptible. The engine utilizes Minecraft's native advancement logs as its absolute source of truth, automatically reconstructing player attribute sheets and active drop rules during the login sequence.

  • ⚙️ Native In-Game GUI Configuration: Includes local client preference synchronization. Players can customize their experience, like globally disabling reward audio feedback, directly through the native NeoForge "Mods" list configuration menu.

📝 Quick Start & Syntax Schema

Registering a progression profile is as simple as placing a lowercase JSON file inside your custom data pack namespace directory: data/[your_namespace]/cradle_rewards/any_filename.json

Multi-Reward Example Blueprint:

JSON

{
[
  {
    "advancement_id": "minecraft:story/mine_stone",
    "enabled": true,
    "rewards": [
      {
        "type": "attribute_modifier",
        "attribute_id": "minecraft:generic.movement_speed",
        "modifier_id": "advancement_cradle:speed_boost",
        "value": 0.15,
        "operation": "ADD_MULTIPLIED_BASE"
      }
    ]
  },
  {
    "advancement_id": "minecraft:story/mine_diamond",
    "enabled": false,
    "rewards": [
      {
        "type": "item_grant",
        "grant_item": "minecraft:netherite_scrap",
        "grant_amount": 1
      }
    ]
  },
  {
    "advancement_id": "minecraft:story/enchant_item",
    "rewards": [
      {
        "type": "conditional_drop",
        "target_block": "minecraft:obsidian",
        "drop_item": "minecraft:lapis_lazuli",
        "drop_amount": 3,
        "chance": 0.40,
        "drop_sound": "minecraft:entity.experience_orb.pickup",
        "required_tools": [
          "minecraft:netherite_pickaxe",
          "#minecraft:cluster_max_harvestables"
        ]
      }
    ]
  }
]

🛑 Strict Developer Validation Logs

Say goodbye to hidden syntax issues. Advancement Cradle includes a strict, automated schema validator that protects server stability. If a creator introduces a typo, an out-of-bounds percentage, or a missing field, the engine discards the broken entry safely and prints a clean, line-by-line diagnostic warning directly to the server console stream to accelerate your development workflow.

🤝 Permissions & Modpacks

  • Can I use this in my modpack?Absolutely! You have full permission to include Advancement Cradle in any free or commercial modpack distributed on CurseForge or elsewhere.

  • Bug Reports & Feedback: Please utilize the official repository issue tracker to report bugs, registry conflicts, or feature requests.

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 this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works