Saturn's Components

Quick rating

Saturn's Components

No reviews yet

A small fabric mod which implements item components to allow for more flexibility when creating custom items with Datapacks.

Mod Loaders
Fabric
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

Where It Runs
Client and Server

Must be installed on both the client and the server.

About

Project Details

Type
Mod
License
Apache License 2.0
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

Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Saturn's Components

Adds some extra functionality to item components to allow for users to have more flexibility with their custom items.

The end goal for the mod is to allow for any item within the vanilla game to be recreated within any other item using only item components.

23w12a

Mod became kinda redundant ATM because Mojang already added what this does. Maybe I'll add more componentns soon

Max Count

minecraft:max_count
Sets the maximum stack size an item can have, accepting a non-negative integer value.

Max Damage

minecraft:max_damage
Sets the total durability of an item, which affects non-tool items too! Accepts a non-negative integer value.

Rarity

minecraft:rarity
Sets the rarity of an item, determining the base color of it's display name. Accepts a valid string entry from the following list: ["common", "uncommon", "rare", "epic"]

Fireproof

minecraft:fireproof
Sets whether the item will be destroyed when coming into contact with a fire source. Accepts a boolean value.

Food Properties

minecraft:food_properties
This component completely removes any hard coding to how food items are introduced, meaning any item can now be edible with a quick command! This component is a large one and requires at minimum a hunger value to be specified. An example component can be seen as followed:

{
  "food_properties": {
    // A non-negative integer. Decides how much hunger to restore when consumed.
    "hunger": 0,
    // A positive float. Decides how much saturation to restore when consumed.
    "saturation_modifier": 1.0,
    // A positive integer. Decides how long it takes to consume the item.
    "time_to_eat": 32,
    // Decides the behavior of the food.
    "food_behavior": {
      // Whether wolves interact with the item.
      "is_meat": false,
      // Whether the item can be eaten regardless of a player's hunger value.
      "always_edible": false,
      // Whether the item is eaten in half the time.
      "is_snack": false,
      // Whether the item shows particles while being consumed.
      "is_drink": false,
      // Whether the item clears all the player's status effects after being consumed.
      "clear_effects": false
    },
    // The resulting item a food object should give the player after being consumed.
    "result_item": {
      "id": "minecraft:air",
      "count": 1
    },
    // A list of status effect objects that are applied to the player once they have consumed the item.
    "status_effects": [
      {
        "id": "minecraft:swiftness",
        "duration": 160,
        "amplifier": 0,
        "ambient": false,
        "show_particles": true,
        "chance": 1.0
      }
    ]
  }
}

Screenshots

Gallery

  • Max Damage
    Max Damage Shows sticks with durabilities showcasing the `max_damage` component.
  • Max Count and Food Properties
    Max Count and Food Properties Shows the player holding a paper item with the `is_meat` food property, as well as `max_count` for shovels & honey bottles

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