MoFlowers

Quick rating

MoFlowers

No reviews yet

MoFlowers is a Minecraft mod that adds new flowers, shrubs and decorative blocks, with associated mechanics, biome generation, flower management API.

Cozy
Adventure/Exploration
Vanilla+
World Gen Improvements
Biomes
Foliage Improvements
Furniture & Decor
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

Dev Environment
Client Required
Server Required

About

Project Details

Type
Mod
License
All Rights Reserved
Latest Version
MoFlowers 0.1-BETA
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

🌸 MoFlowers - Bring New Life to Your Minecraft World! 🌸


MoFlowers is a Minecraft mod that breathes new life into your adventures by adding a wide variety of unique flowers, berry bushes, and decorative blocks. Every plant is carefully designed to blend naturally into the world, offering new mechanics, vibrant biomes, and creative possibilities for builders and explorers alike.

HeaderTop

✨ Main Features


  • New Flowers & Bushes: Discover species like wildflowers with open/closed states, lavenders, calendulas, foxgloves, hebeas, and aquatic lilies…
  • Berry Bushes: Harvest sweet blue and glowing berries for food and attracting animals.
  • Flowers Chest: A chest that only accepts mod items for organizing your floral collection.
  • Decorative Blocks: Petals, pots, and tall variants for customization.
  • Biome Integration: New plants naturally generate in specific biomes.
  • Public API: Allows other mods or datapacks to register compatible flowers and blocks.
  • Custom Rendering & Loot: Unique drop system and visual effects.
  • Multilanguage Support: Available in English and Spanish.

📥 Installation


  1. Install Fabric Loader.
  2. Download the latest release from GitHub.
  3. Place the .jar file into your mods folder.

c10b7d18-1719-4010-a8a8-88cc6d0b11d3 3fbbf92f-214d-4a43-9e47-4fc0ee259881 7db2e2f5-40a2-4ffb-8d1d-2ee1d1f3099c 11c5e3ec-da31-41e7-abf9-4afc2e723387

FooterTop

🧩 MoFlowers API Documentation


MoFlowers provides a simple and extensible API for modders and datapack creators to register, query, and interact with custom flowers and related blocks.

HeaderBottom

Accessing the API

Use the static access point to get the API instance

import net.bichal.moflowers.api.MoFlowersAPI;
import net.bichal.moflowers.api.IMoFlowersAPI;

IMoFlowersAPI api = MoFlowersAPI.getInstance();

Registering Flowers

You can register new flowers, blocks, or detailed flower data

// Register a flower item
api.registerFlower(myFlowerItem);

// Register a flower block
api.registerFlowerBlock(myFlowerBlock);

// Register a custom flower with extra data
api.registerCustomFlower(new FlowerData.Builder(myItem, myBlock)
.defaultColor(0xFF00FF)
.tallVariant(true)
.biomeRestriction(myBiomeId)
.build());

Querying Flowers

Check if an item or block is a MoFlower

boolean isFlower = api.isMoFlower(item);
boolean isFlowerBlock = api.isMoFlowerBlock(block);

Flowers Chest

Access the special Flowers Chest block and item

Item flowersChestItem = api.getFlowersChestItem();
Block flowersChestBlock = api.getFlowersChestBlock();

Flower Registration Events

Subscribe to flower registration events for integration

api.registerFlowerRegistrationCallback(flowerData ->{
    // Your code here (e.g., log, add custom behavior)
});

Extending MoFlowers

  • Add new flowers: Register your own flowers or blocks for full compatibility.
  • Custom recipes/tags: Use the provided tags for recipes, advancements, and more.
  • Localization: Add translations for your custom flowers using standard Minecraft lang files.

For more details, see the JavaDocs in the api package or explore the example usages in the mod source.

FooterBottom

This mod is licensed is All Rights Reserved.

MoFlowers - Bring New Life to Your Minecraft World!

MoFlowers is a Minecraft mod that breathes new life into your adventures by adding a wide variety of unique flowers, berry bushes, and decorative blocks. Every plant is carefully designed to blend naturally into the world, offering new mechanics, vibrant biomes, and creative possibilities for builders and explorers alike.

HeaderTop

✨ Main Features

  • New Flowers & Bushes: Discover species like wildflowers with open/closed states, lavenders, calendulas, foxgloves, hebeas, and aquatic lilies...
  • Berry Bushes: Harvest sweet blue and glowing berries for food and attracting animals.
  • Flowers Chest: A chest that only accepts mod items for organizing your floral collection.
  • Decorative Blocks: Petals, pots, and tall variants for customization.
  • Biome Integration: New plants naturally generate in specific biomes.
  • Public API: Allows other mods or datapacks to register compatible flowers and blocks.
  • Custom Rendering & Loot: Unique drop system and visual effects.
  • Multilanguage Support: Available in English and Spanish.

📥 Installation

  1. Install Fabric Loader.
  2. Download the latest release from GitHub.
  3. Place the .jar file into your mods folder.
c10b7d18-1719-4010-a8a8-88cc6d0b11d3 3fbbf92f-214d-4a43-9e47-4fc0ee259881 7db2e2f5-40a2-4ffb-8d1d-2ee1d1f3099c 11c5e3ec-da31-41e7-abf9-4afc2e723387

FooterTop

🧩 MoFlowers API Documentation

MoFlowers provides a simple and extensible API for modders and datapack creators to register, query, and interact with custom flowers and related blocks.

HeaderBottom

Accessing the API

Use the static access point to get the API instance

import net.bichal.moflowers.api.MoFlowersAPI;
import net.bichal.moflowers.api.IMoFlowersAPI;

IMoFlowersAPI api = MoFlowersAPI.getInstance();

Registering Flowers

You can register new flowers, blocks, or detailed flower data:

// Register a flower item
api.registerFlower(myFlowerItem);

// Register a flower block
api.registerFlowerBlock(myFlowerBlock);

// Register a custom flower with extra data
api.registerCustomFlower(new FlowerData.Builder(myItem, myBlock)
.defaultColor(0xFF00FF)
.tallVariant(true)
.biomeRestriction(myBiomeId)
.build());

Querying Flowers

Check if an item or block is a MoFlower

boolean isFlower = api.isMoFlower(item);
boolean isFlowerBlock = api.isMoFlowerBlock(block);

Flowers Chest

Access the special Flowers Chest block and item

Item flowersChestItem = api.getFlowersChestItem();
Block flowersChestBlock = api.getFlowersChestBlock();

Flower Registration Events

Subscribe to flower registration events for integration

api.registerFlowerRegistrationCallback(flowerData ->{
// Your code here (e.g., log, add custom behavior)
});

Extending MoFlowers

  • Add new flowers: Register your own flowers or blocks for full compatibility.
  • Custom recipes/tags: Use the provided tags for recipes, advancements, and more.
  • Localization: Add translations for your custom flowers using standard Minecraft lang files.
For more details, see the JavaDocs in the api package or explore the example usages in the mod source.

FooterBottom

This mod is licensed is All Rights Reserved.

Screenshots

Gallery

  • Open Pale Wildflowers
    Open Pale Wildflowers
  • Closed Pale Wildflowers
    Closed Pale Wildflowers
  • Sweet Glow Berry Bush
    Sweet Glow Berry Bush
  • Sweet Blue Berry Bush
    Sweet Blue Berry Bush
  • Lily Pad Flower
    Lily Pad Flower
  • Moon Cactus Flower
    Moon Cactus Flower
  • Lavanda
    Lavanda
  • Magenta Petals
    Magenta Petals
  • Open Pale Wildflowers
    Open Pale Wildflowers
  • Closed Pale Wildflowers
    Closed Pale Wildflowers
  • Magenta Petals
    Magenta Petals
  • Lily Pad Flower
    Lily Pad Flower
  • Moon Cactus Flower
    Moon Cactus Flower
  • Sweet Blue Berry Bush
    Sweet Blue Berry Bush
  • Lavanda
    Lavanda
  • Sweet Glow Berry Bush
    Sweet Glow Berry Bush

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

~2,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