From 39fd352f1da21c0d488518e29a27378a5e52bbf9 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Tue, 22 Apr 2025 15:58:31 +0100 Subject: [PATCH] changed lush caves' clay patches to a weighted random selected, made kaolin patches a bit rarer --- .../nether/terrain/lush_caves_clay.json | 27 ++++++++++++++----- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/lush_caves_clay.json b/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/lush_caves_clay.json index 37e9ec8d5..0daf9f8dd 100644 --- a/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/lush_caves_clay.json +++ b/kubejs/data/tfg/worldgen/configured_feature/nether/terrain/lush_caves_clay.json @@ -1,18 +1,31 @@ { - "type": "minecraft:simple_random_selector", + "type": "minecraft:random_selector", "config": { + "default": { + "feature": "tfg:nether/terrain/clay_patch", + "placement": [] + }, "features": [ { - "feature": "tfg:nether/terrain/clay_pool", - "placement": [] + "chance": 0.3, + "feature": { + "feature": "tfg:nether/terrain/clay_pool", + "placement": [] + } }, { - "feature": "tfg:nether/terrain/clay_patch", - "placement": [] + "feature": { + "feature": "tfg:nether/terrain/clay_patch", + "placement": [] + }, + "chance": 0.5 }, { - "feature": "tfg:nether/terrain/clay_patch_kaolin", - "placement": [] + "feature": { + "feature": "tfg:nether/terrain/clay_patch_kaolin", + "placement": [] + }, + "chance": 0.2 } ] }