Resources Trees

Quick rating

Resources Trees

No reviews yet

Resources Trees provide you a new way to generate resources such as iron, gold, and diamond.

Farming & Agriculture
QoL & Tweaks
Economy & Trade Systems
Mod Loaders
Forge
NeoForge
Fabric
Minecraft
26.2

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
MIT License
Latest Version
resourcestrees-26.2.0.1+26.2-neoforge
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

About

Description

🌳 ResourcesTrees

Grow your resources — no mining required.

ResourcesTrees adds resource-producing trees to Minecraft. Plant specialized saplings, tend your farm, and harvest valuable materials — from iron and diamonds to mob drops, essences, and more. Every combination of a resource type and a tree shape generates its own unique sapling, leaves, and leaf fragments.


⚡ Features

  • 🌱 47+ Resource Types — Iron, diamond, netherite, coal, gold, sculk, mob essences, dyes, and many more.
  • 🌲 8 Tree Shapes — Oak, Spruce, Birch, Jungle, Acacia, Dark Oak, Cherry, and Pale Oak. Each resource type grows as every tree shape.
  • 🛠 Fully Config-Driven — Add your own custom resource types and tree types by dropping JSON files into the config folder. No datapacks or coding required.
  • 🪓 Tree Simulator — Automate resource production without planting trees in the world. Insert a sapling and an axe, and let it run.
  • 🧩 Plugin API — Mod developers can register custom resource types and tree types in code via the IResourcesTreesPlugin interface.
  • 🌍 Seamless Integration — Works in vanilla survival, modpacks, and skyblock-style worlds.

📖 How It Works

  1. Craft a resource sapling — surround a vanilla sapling with the resource material in a + pattern at a crafting table.
  2. Plant it on grass or dirt, just like a normal sapling.
  3. Let it grow — it uses the vanilla tree structure for its tree type.
  4. Break the leaves to collect Leaf Fragments and occasionally a new sapling.
  5. Craft leaf fragments back into raw resources using shaped recipes.
  6. (Optional) Use the Tree Simulator to automate the whole process with no trees needed.

🪓 Tree Simulator

The Tree Simulator block automates resource production. Place a resource sapling in the input slot and an axe in the axe slot — it will produce resources on a timer. The axe type determines the speed multiplier:

Axe Speed Multiplier
Wooden
Stone
Iron
Diamond
Netherite
Golden

Axe speed values are fully configurable in config/resourcestrees/axe.json.


🧩 For Modpack Makers — Custom Types

Drop JSON files into your config folder to register new resource types or tree types — no code required.

config/resourcestrees/resources_type/ruby.json

{
  "name": "ruby",
  "material": "minecraft:redstone",
  "color": -3342336,
  "saplingDropChance": 0.1,
  "leafDropChance": 0.2,
  "treeSimulatorTicks": 1400
}

config/resourcestrees/tree_type/oak.json

{
  "name": "oak",
  "treeGrowerName": "oak",
  "saplingTexture": "minecraft:block/oak_sapling",
  "leavesTexture": "minecraft:block/oak_leaves",
  "originalSapling": "minecraft:oak_sapling",
  "originalLeaves": "minecraft:oak_leaves",
  "log": "minecraft:oak_log"
}

🔧 For Mod Developers — Plugin API

Implement IResourcesTreesPlugin and register it via ServiceLoader to add resource types and tree types in code.

public class MyPlugin implements IResourcesTreesPlugin {
    @Override
    public void registerResourcesType(IResourcesTypeRegistry registry) {
        registry.register(new ResourcesType.Builder("ruby", Items.REDSTONE, 0xFFCC0000)
                .saplingDropChance(0.1f)
                .leafDropChance(0.2f)
                .treeSimulatorTicks(1400));
    }
}

⚠️ The Plugin API is experimental. Use config files for stability.


🔗 Links

🌳 ResourcesTrees

Grow your resources — no mining required.

ResourcesTrees adds resource-producing trees to Minecraft. Plant specialized saplings, tend your farm, and harvest valuable materials — from iron and diamonds to mob drops, essences, and more. Every combination of a resource type and a tree shape generates its own unique sapling, leaves, and leaf fragments.

⚡ Features

  • 🌱 47+ Resource Types — Iron, diamond, netherite, coal, gold, sculk, mob essences, dyes, and many more.
  • 🌲 8 Tree Shapes — Oak, Spruce, Birch, Jungle, Acacia, Dark Oak, Cherry, and Pale Oak. Each resource type grows as every tree shape.
  • 🛠 Fully Config-Driven — Add your own custom resource types and tree types by dropping JSON files into the config folder. No datapacks or coding required.
  • 🪓 Tree Simulator — Automate resource production without planting trees in the world. Insert a sapling and an axe, and let it run.
  • 🧩 Plugin API — Mod developers can register custom resource types and tree types in code via the IResourcesTreesPlugin interface.
  • 🌍 Seamless Integration — Works in vanilla survival, modpacks, and skyblock-style worlds.

📖 How It Works

  1. Craft a resource sapling — surround a vanilla sapling with the resource material in a + pattern at a crafting table.
  2. Plant it on grass or dirt, just like a normal sapling.
  3. Let it grow — it uses the vanilla tree structure for its tree type.
  4. Break the leaves to collect Leaf Fragments and occasionally a new sapling.
  5. Craft leaf fragments back into raw resources using shaped recipes.
  6. (Optional) Use the Tree Simulator to automate the whole process with no trees needed.

🪓 Tree Simulator

The Tree Simulator block automates resource production. Place a resource sapling in the input slot and an axe in the axe slot — it will produce resources on a timer. The axe type determines the speed multiplier:

Axe Speed Multiplier
Wooden
Stone
Iron
Diamond
Netherite
Golden

Axe speed values are fully configurable in config/resourcestrees/axe.json.

🧩 For Modpack Makers — Custom Types

Drop JSON files into your config folder to register new resource types or tree types — no code required.

config/resourcestrees/resources_type/ruby.json

{
  "name": "ruby",
  "material": "minecraft:redstone",
  "color": -3342336,
  "saplingDropChance": 0.1,
  "leafDropChance": 0.2,
  "treeSimulatorTicks": 1400
}

config/resourcestrees/tree_type/oak.json

{
  "name": "oak",
  "treeGrowerName": "oak",
  "saplingTexture": "minecraft:block/oak_sapling",
  "leavesTexture": "minecraft:block/oak_leaves",
  "originalSapling": "minecraft:oak_sapling",
  "originalLeaves": "minecraft:oak_leaves",
  "log": "minecraft:oak_log"
}

🔧 For Mod Developers — Plugin API

Implement IResourcesTreesPlugin and register it via ServiceLoader to add resource types and tree types in code.

public class MyPlugin implements IResourcesTreesPlugin {
    @Override
    public void registerResourcesType(IResourcesTypeRegistry registry) {
        registry.register(new ResourcesType.Builder("ruby", Items.REDSTONE, 0xFFCC0000)
                .saplingDropChance(0.1f)
                .leafDropChance(0.2f)
                .treeSimulatorTicks(1400));
    }
}

⚠️ The Plugin API is experimental. Use config files for stability.

🔗 Links

Screenshots

Gallery

  • Screenshot 2025-09-27 230314.png
    Screenshot 2025-09-27 230314.png Screenshot 2025-09-27 230314.png
  • Screenshot 2025-09-27 230423.png
    Screenshot 2025-09-27 230423.png Screenshot 2025-09-27 230423.png
  • Screenshot 2025-09-27 230523.png
    Screenshot 2025-09-27 230523.png Screenshot 2025-09-27 230523.png
  • Crafting with Fragment
    Crafting with Fragment LEaf fragment an be crafted to various resources
  • Tree simulator
    Tree simulator A block entity that let player to grow tree with it
  • Sapling crafting
    Sapling crafting Craft saplings

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

~56,000
Total Downloads
CurseForge
~37,000
Modrinth
~19,000
Last Updated
CurseForge
Modrinth
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