Skip to content

Instantly share code, notes, and snippets.

@draklorx
Created February 6, 2022 03:17
Show Gist options
  • Select an option

  • Save draklorx/e011ecde4e24018f9796f22bcb6783b9 to your computer and use it in GitHub Desktop.

Select an option

Save draklorx/e011ecde4e24018f9796f22bcb6783b9 to your computer and use it in GitHub Desktop.
Minecraft Worldgen Processor List to make a gradient mossy wall
{
"processors": [
{
"rules": [
{
"position_predicate": {
"predicate_type": "minecraft:axis_aligned_linear_pos",
"axis": "y",
"min_dist": 2,
"max_dist": 5,
"min_chance": 1,
"max_chance": 0
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
},
"input_predicate": {
"predicate_type": "minecraft:block_match",
"block": "minecraft:cobblestone"
},
"output_state": {
"Name": "minecraft:moss_block"
}
},
{
"position_predicate": {
"predicate_type": "minecraft:axis_aligned_linear_pos",
"axis": "y",
"min_dist": 4,
"max_dist": 8,
"min_chance": 1,
"max_chance": 0
},
"location_predicate": {
"predicate_type": "minecraft:always_true"
},
"input_predicate": {
"predicate_type": "minecraft:block_match",
"block": "minecraft:cobblestone"
},
"output_state": {
"Name": "minecraft:mossy_cobblestone"
}
}
],
"processor_type": "minecraft:rule"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment