Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 509 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 509 Bytes

Mushroom Log Additions

Framework for adding new tree type -> mushroom log output mappings.

Format

The content pack format for this framework is ultimately: Dictionary<string, List<Tuple<string, float>>>.

{
	"treeType#": [
		{ "outputQualifiedItemId": 0.1 }
	]
}

Example:

{
	// mushroom tree -> mushroom tree seed
	"7": [ { "(O)891": 1 } ],
	// birch -> 10% chance of purple mushroom, otherwise red mushroom
	"2": [
        { "(O)422": 0.1 },
        { "(O)420": 1 }
    ]
}