How can I make Pink Petals (or Wildflowers) like flowers (New types of Wildflowers)

Started by capybarabeef_stuidos on

Topic category: Help with Minecraft modding (Java Edition)

Joined May 2025
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
How can I make Pink Petals (or Wildflowers) like flowers (New types of Wildflowers)

So, I want to create 3 new types of Wildflowers, Magic Wildflowers, Red Wildflowers, and Blue Wildflowers, but no matter how hard I try, it just doesn't work. I've tried different block bases, copying vanilla properties, and jsons of the wildflower, crop model, nothing worked. I found no tutorials, no forum posts. I saw an MCreator mod that adds wildflower like plants: Herios' Floral Expansion. 

 

Does someone know how to make a flower like a wildflower (or Pink Petals)

Joined Dec 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I'm also trying to find…
Sat, 06/07/2025 - 15:19

I'm also trying to find something like the pink petals on mcreator and how to make it and I ended up finding this post on google that it helps because it has the keyword "Petals"

Joined Jan 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
I have been summoned (I'm…
Thu, 06/26/2025 - 02:46

I have been summoned (I'm kinda late tho).

To make a pink petals-like block you'll need 4 different blocks (not plants), one for each state (1, 2, 3, 4 flowers). Now, your block will be able to rotate on the Y axis and will be unable to get waterlogged, it will have a placement condition that checks if the block below is tagged as "minecraft:dirt". You'll also need to set the creative item pick and the item drop to your initial petals block and the amount will depend on the number of flowers in your block. Lastly, you'll need to check the "can be bonemealed" and add a procedure in the "on bonemeal success" that checks if the block is your petals block and will replace it with the next petals block (petals 1 to 2, 2 to 3, and 3 to 4).

I'll leave the main procedures here