-
Notifications
You must be signed in to change notification settings - Fork 72
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/
.
-
(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!
{
"input_block": "minecraft:azalea_leaves",
"output_state": "minecraft:azalea_leaves[persistent=true]",
"unlock_identifier": "spectrum:revive_dead_bush"
}
General
For Players
- Getting Started
- Mixing Colors
- Stuck on how to progress?
- Main Progression Steps (MAJOR SPOILERS)
For Server Admins / Modpack Creators
- Integrating into Modpacks
- Adjusting Progression
- Advancement Criteria
- 1.7.x: Patchouli Pages
- 1.7.x: Patchouli Recipe Pages
- 1.8.x: Modonomicon Pages
- 1.8.x: Modonomicon Recipe Pages
- Commands
- Type Specific Predicates
- JsonNBT
For Map Makers
Recipe Types
- Custom Pigment Pedestal Recipes
- Custom Anvil Crushing Recipes
- Custom Fusion Shrine Recipes
- Custom Enchanter Recipes
- Custom Enchantment Upgrade Recipes
- Custom Potion Workshop Brewing Recipes
- Custom Potion Workshop Crafting Recipes
- Custom Potion Workshop Reagents
- Custom Spirit Instiller Recipes
- Custom Liquid Dipping Recipes
- Custom Ink Converting Recipes
- Custom Crystallarieum Recipes
- Custom Cinderhearth Recipes
- Custom Titration Barrel Recipes
- Fluid Ingredients
Loot Tables
More Customisation
- Adding Nature's Staff Conversions
- Adding Entity Fishing Entries
- Adding Resonance Drops
- Adding Crystal Apothecary Harvestables
- Adding Particle Spawner Particles
For Contributors