Star Rating

Quick rating

Star Rating

No reviews yet

A Stardew Valley inspired star rating system that gives every item a chance to become legendary.

Adventure/Exploration
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

Compatibility

Supported Environments

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
star_rating-1.4.0.jar
Authors
CurseForge
Modrinth

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
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Have you ever tended your crops in Stardew Valley, hoping for that iridium-quality harvest?

Now, that excitement comes to Minecraft!

Star Rating adds random quality tiers to your food, weapons, tools, and armor — from ordinary Iron Star to legendary Netherite Star, and even the hidden Iridium Star.

Every item receives its own independent chance to gain a star when picked up, with rarer stars being harder to obtain. Different stars grant powerful bonuses such as attack damage, mining speed, armor, health regeneration, and more, with unique effects tailored to weapons, tools, armor, and food.

All star values, weights, and effects are fully configurable, and you can even create your own custom star tiers to shape your adventure exactly the way you like.

With a built-in coin economy and anvil upgrade system, you can use star coins to try to upgrade an item’s star — enjoy the thrill of a mystery box combined with strategic planning.

Ready to make every sword and every loaf of bread shine? Let the stars guide you!


🌟 Highlights:

  • Inspired by Stardew Valley — core mechanics pay tribute to the beloved quality rating system.
  • Per‑Item Rolling — each item in a stack is rolled independently; you might get multiple stars from one pickup.
  • Type‑Specific Bonuses — weapons, tools, armor, and food each have unique bonuses, viewable by holding Shift.
  • Iridium Easter Egg — Netherite star items have a 1% chance to become an Iridium Star with a special texture and increased value.
  • Fully Configurable — add, remove, or tweak star tiers via JSON files; no restart required.
  • Coin Economycraft, upgrade, and recycle star coins for a complete progression loop.

⚙️ Configuration Guide:

Main Config File:

.minecraft/config/star_rating/star_rating-common.toml – Controls global parameters and feature toggles.

toml

[general]
    star_chance = 0.5               # Probability of an item getting a star (0.0 ~ 1.0)
    enable_food_stars = true        # Enable star effects for food
    enable_weapon_stars = true      # Enable star effects for weapons
    enable_tool_stars = true        # Enable star effects for tools (mining speed & fortune)
    enable_armor_stars = true       # Enable star effects for armor

Changes take effect after /reload or rejoining the world.

Star Effect Files:

Inside config/star_rating/effects/, each star has its own .json file named after the star ID (e.g., iron_star_rating.json).

You can add, delete, or modify these files to define star weights and specific bonuses.

Full field list (all numeric fields are optional, defaulting to 0 or 1.0):

json5

{
  "star": "iron_star_rating",        // Star ID (required)
  "weight": 25,                      // Random weight (required, higher = more common)
  "extraDamage": 1.0,                // Extra attack damage
  "attackSpeed": 0.5,                // Extra attack speed
  "reach": 0.5,                      // Extra reach distance
  "damageMultiplier": 0.1,           // Multiplicative damage bonus (0.1 = +10%)
  "armor": 1,                        // Extra armor points
  "toughness": 0.5,                  // Extra armor toughness
  "damageReduction": 0.02,           // Damage reduction percentage (0.02 = 2%)
  "breakSpeedMultiplier": 1.05,      // Mining speed multiplier (1.05 = +5%)
  "looting": 1,                      // Extra looting level
  "fortune": 1,                      // Extra fortune level
  "extraHunger": 4,                  // Extra hunger/saturation from food
  "regenDuration": 5,                // Regeneration duration (seconds)
  "regenAmplifier": 0,               // Regeneration level (0 = I)
  "resistanceDuration": 5,           // Resistance duration (seconds)
  "resistanceAmplifier": 0,          // Resistance level (0 = I)
  "absorption": 6,                   // Absorption health (temporary HP)
  "sell": [                          // Selling table (for potential extension, unused in current version)
    {"item": "star_rating:gold_coin", "count": 1, "weight": 10}
  ]
}

Tip: You only need to include the fields you want to set; omitted fields will use their default values. To add a completely new star, simply create a new JSON file in this directory – the mod will load it automatically.

Custom Textures:

Star icons are stored under assets/star_rating/textures/gui/stars/ and must match the star ID exactly (e.g., diamond_star_rating.png). When adding a new star, remember to provide the corresponding texture.

You can easily supply these textures using a Resource Pack or KubeJS, without needing to modify the mod itself.

 
 

May the stars guide your adventure!

May the stars guide your adventure!

Have you ever tended your crops in Stardew Valley, hoping for that iridium-quality harvest?

Now, that excitement comes to Minecraft!

Star Rating adds random quality tiers to your food, weapons, tools, and armor — from ordinary Iron Star to legendary Netherite Star, and even the hidden Iridium Star.

Every item receives its own independent chance to gain a star when picked up, with rarer stars being harder to obtain. Different stars grant powerful bonuses such as attack damage, mining speed, armor, health regeneration, and more, with unique effects tailored to weapons, tools, armor, and food.

All star values, weights, and effects are fully configurable, and you can even create your own custom star tiers to shape your adventure exactly the way you like.

With a built-in coin economy and anvil upgrade system, you can use star coins to try to upgrade an item’s star — enjoy the thrill of a mystery box combined with strategic planning.

Ready to make every sword and every loaf of bread shine?

🌟 Highlights:

  • Inspired by Stardew Valley — core mechanics pay tribute to the beloved quality rating system.
  • Per‑Item Rolling — each item in a stack is rolled independently; you might get multiple stars from one pickup.
  • Type‑Specific Bonuses — weapons, tools, armor, and food each have unique bonuses, viewable by holding Shift.
  • Iridium Easter Egg — Netherite star items have a 1% chance to become an Iridium Star with a special texture and increased value.
  • Fully Configurable — add, remove, or tweak star tiers via JSON files; no restart required.
  • Coin Economy — craft, upgrade, and recycle star coins for a complete progression loop.

⚙️ Configuration Guide:

Main Config File:

.minecraft/config/star_rating/star_rating-common.toml – Controls global parameters and feature toggles.

[general]
    star_chance = 0.5               # Probability of an item getting a star (0.0 ~ 1.0)
    enable_food_stars = true        # Enable star effects for food
    enable_weapon_stars = true      # Enable star effects for weapons
    enable_tool_stars = true        # Enable star effects for tools (mining speed & fortune)
    enable_armor_stars = true       # Enable star effects for armor

Changes take effect after /reload or rejoining the world.

Star Effect Files:

Inside config/star_rating/effects/, each star has its own .json file named after the star ID (e.g., iron_star_rating.json).

You can add, delete, or modify these files to define star weights and specific bonuses.

Full field list (all numeric fields are optional, defaulting to 0 or 1.0):

{
  "star": "iron_star_rating",        // Star ID (required)
  "weight": 25,                      // Random weight (required, higher = more common)
  "extraDamage": 1.0,                // Extra attack damage
  "attackSpeed": 0.5,                // Extra attack speed
  "reach": 0.5,                      // Extra reach distance
  "damageMultiplier": 0.1,           // Multiplicative damage bonus (0.1 = +10%)
  "armor": 1,                        // Extra armor points
  "toughness": 0.5,                  // Extra armor toughness
  "damageReduction": 0.02,           // Damage reduction percentage (0.02 = 2%)
  "breakSpeedMultiplier": 1.05,      // Mining speed multiplier (1.05 = +5%)
  "looting": 1,                      // Extra looting level
  "fortune": 1,                      // Extra fortune level
  "extraHunger": 4,                  // Extra hunger/saturation from food
  "regenDuration": 5,                // Regeneration duration (seconds)
  "regenAmplifier": 0,               // Regeneration level (0 = I)
  "resistanceDuration": 5,           // Resistance duration (seconds)
  "resistanceAmplifier": 0,          // Resistance level (0 = I)
  "absorption": 6,                   // Absorption health (temporary HP)
  "sell": [                          // Selling table (for potential extension, unused in current version)
    {"item": "star_rating:gold_coin", "count": 1, "weight": 10}
  ]
}

Tip: You only need to include the fields you want to set; omitted fields will use their default values. To add a completely new star, simply create a new JSON file in this directory – the mod will load it automatically.

Custom Textures:

Star icons are stored under assets/star_rating/textures/gui/stars/ and must match the star ID exactly (e.g., diamond_star_rating.png). When adding a new star, remember to provide the corresponding texture.

You can easily supply these textures using a Resource Pack or KubeJS, without needing to modify the mod itself.

Screenshots

Gallery

  • Convert any number of any starred items into Star Coins.
    Convert any number of any starred items into Star Coins. 屏幕截图 2026-06-10 221944.png
  • Effect
    Effect 屏幕截图 2026-06-11 002759.png
  • Introduction
    Introduction 111.png

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
Total Downloads
CurseForge
<1,000
Modrinth
<1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
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