-
Notifications
You must be signed in to change notification settings - Fork 1
Reversing Hoe
{
"type": "unstable:transmutation",
"input": {
"block": "minecraft:cobblestone"
},
"output": "minecraft:diamond_block"
}
Should be placed in this location: <datapack root>\data\unstable\reversing_hoe\transmutation\<file name>.json
-
type: This denotes the data this file will hold. For transmutations, this field should beunstable:transmutation. -
input: JSON Object containing the registry name of the block to be transmuted.a.
block: Registry name of the block to be transformed.* -
output: Registry name that the transformed block will turn into.
{
"type": "unstable:property_regression",
"block": "minecraft:beetroots",
"property": "age"
}
Should be placed in this location: <datapack root>\data\unstable\reversing_hoe\property_regression\<file name>.json
-
type: This denotes the data this file will hold. For property regression, this field should beunstable:property_regression. -
block: Registry name of the block to perform property regression on. *** -
property: Name of the property to alter. **
* Can be swappped for tag if using a block tag.
** This MUST be an IntegerProperty. For more info visit the minecraft wiki.
*** This MUST be the BLOCK registry name, NOT the item registry name. To see this, press F3 ingame, and look for the block name on the right.