Skip to content

Customizing Nature's Staff Conversions

Electro_593 edited this page Jul 22, 2023 · 1 revision

The Nature's Staff can not only be used to speed up plant growth, but is also able to turn some blocks into others, like cobblestone to mossy cobblestone.

You can specify additional conversions, or edit existing ones, by placing json files in the directory <data_pack_or_mod_name>/natures_staff_conversions/.

Properties:

  • (Identifier) input_block: The block that will be converted
  • (BlockState) output_state: The blockstate that the original block will be replaced with
  • (Identifier) unlock_identifier: The identifier of an advancement that has to be gotten before recipe viewer mods will display this conversion. It will still work, just not be displayed!

Example: Converting Azalea Leaves to Flowering Azalea Leaves

{
  "input_block": "minecraft:azalea_leaves",
  "output_state": "minecraft:azalea_leaves[persistent=true]",
  "unlock_identifier": "spectrum:revive_dead_bush"
}
Clone this wiki locally