Biome Makeover Wiki

Search

Search IconIcon to open search

🦦 Other

Last updated Apr 16, 2023 Edit Source

These data pack features are too small to have their own dedicated pages.

# Custom Compostable Items

Our base library allows you to add compostable items via data pack:

Your .json files should be inserted in the compostable folder. E.g. data/[your pack]/compostable/custom_compostables.json

# Format

You have two options when creating a compostable .json file, Single and Multiple.

# Single

1
2
3
4
{
	"item": "minecraft:gold_nugget",
	"chance": 0.3
}

This will allow gold nuggets to be inserted into a composter, with a 30% chance of adding a compost layer.

# Multiple

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
[
	{
		"item": "minecraft:gold_nugget",
		"chance": 0.3
	},
	{
		"item": "minecraft:iron_nugget",
		"chance": 0.4
	},
	{
		"item": "minecraft:raw_gold",
		"chance": 0.7
	},
	{
		"item": "minecraft:raw_iron",
		"chance": 0.4
	}
]

This adds gold nugget, iron nugget, raw gold and raw iron items as compostable entries with 30%, 40%, 70% and 40% changes of adding a compost layer.

# Brewing Fuel

Our library allows you to add custom brewing stand fuel, we use this in Biome Makeover for Soul Embers.

1
2
3
4
5
6
{  
  "item": {  
    "item": "biomemakeover:soul_embers"  
  },  
  "fuel": 20  
}

One item per .json file. You can use an empty json object {} to override a file.