diff --git a/.gitignore b/.gitignore index 7f4033e4..3a98cbb7 100644 --- a/.gitignore +++ b/.gitignore @@ -8,4 +8,4 @@ run/* .gitignore gradle/* mcmodsrepo/* -.eclipse/* \ No newline at end of file +.eclipse/* diff --git a/CHANGES.md b/CHANGES.md index 66f934df..45e5a1ea 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,4 @@ # What's changed -+ Fix bug [#125](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/125)'s incidental findings -+ Fix bug [#133](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/133) -+ Fix bug [#136](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/136) -+ Fix bug [#137](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/137) -+ Fix bug [#138](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/138) \ No newline at end of file ++ Increase village size across the board. ++ Guarantee spawn for waystone and bounty board but it can be anywhere in the village. diff --git a/build.gradle b/build.gradle index dd6d01e1..a3debd32 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ plugins { id "architectury-plugin" version "3.4-SNAPSHOT" - id "dev.architectury.loom" version "1.4-SNAPSHOT" apply false + id "dev.architectury.loom" version "1.6-SNAPSHOT" apply false } diff --git a/checklist.md b/checklist.md new file mode 100644 index 00000000..8574bf74 --- /dev/null +++ b/checklist.md @@ -0,0 +1,17 @@ +# Checklist of what to do for CTOV 3.4.5 + +1. Guarantee spawn for waystone and bounty board but it can be anywhere in the village. + - [x] Remove jigsaw+pool for village center. + - [x] Add pool addition + - [x] Rework processors for bounty board +2. Rat compatibility + - [] Create village building set + - [] Modify village pet shop set + - [] Add this through pool mod +3. Ice and Fire compatibility + - [] Create village building set + - [] Add this through pool mod +4. RPG Series + - [] Building jewelry workshop set + - [] Building Archery range set + - [] Add this through pool mod diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/beach.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/beach.json new file mode 100644 index 00000000..fdcb1bf8 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/beach.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/beach/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/beach", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/christmas.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/christmas.json new file mode 100644 index 00000000..fb6bfe27 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/christmas.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/christmas/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/snowy", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/dark_forest.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/dark_forest.json new file mode 100644 index 00000000..bc01850f --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/dark_forest.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/halloween/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/dark_forest", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert.json new file mode 100644 index 00000000..7d5818b1 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/desert/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/desert", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert_oasis.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert_oasis.json new file mode 100644 index 00000000..7832e939 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/desert_oasis.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/desert_oasis/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/desert", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle.json new file mode 100644 index 00000000..495e5fab --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/jungle/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/jungle", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle_tree.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle_tree.json new file mode 100644 index 00000000..8c029583 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/jungle_tree.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/jungle_tree/terminator", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/jungle", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa.json new file mode 100644 index 00000000..a6c3b2c1 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/mesa/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/badlands", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa_fortified.json new file mode 100644 index 00000000..923ee5e9 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mesa_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/mesa_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/badlands", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain.json new file mode 100644 index 00000000..c1e7e158 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/mountain/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/mountain", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain_alpine.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain_alpine.json new file mode 100644 index 00000000..80338054 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mountain_alpine.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/mountain_alpine/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/mountain", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mushroom.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mushroom.json new file mode 100644 index 00000000..feac34c3 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/mushroom.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/mushroom/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/mushroom", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains.json new file mode 100644 index 00000000..89a5444a --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/plains/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/plains", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains_fortified.json new file mode 100644 index 00000000..c7ce58d1 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/plains_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/plains_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/plains", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna.json new file mode 100644 index 00000000..50edb8ac --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/savanna/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/savanna", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna_na.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna_na.json new file mode 100644 index 00000000..67d79c60 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/savanna_na.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/savanna_na/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/savanna", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/snowy.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/snowy.json new file mode 100644 index 00000000..bf64a39c --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/snowy.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/snowy_igloo/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/snowy", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp.json new file mode 100644 index 00000000..fe0a1b00 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/swamp/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/swamp", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp_fortified.json new file mode 100644 index 00000000..284e6aa2 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/swamp_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/swamp_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/swamp", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga.json new file mode 100644 index 00000000..2e40c287 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/taiga/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/taiga", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga_fortified.json new file mode 100644 index 00000000..ab5544c6 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/bountiful/taiga_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "bountiful" + } + ] + }, + "template_pool": "ctov:village/taiga_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:bountiful/taiga", + "location": "bountiful:village/common/bounty_gazebo" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/beach.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/beach.json new file mode 100644 index 00000000..422a7bf2 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/beach.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/beach/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/desert/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/christmas.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/christmas.json new file mode 100644 index 00000000..4fc29f86 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/christmas.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/christmas/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/dark_forest.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/dark_forest.json new file mode 100644 index 00000000..d6b6f866 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/dark_forest.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/halloween/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert.json new file mode 100644 index 00000000..798c737f --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/desert/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/desert/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert_oasis.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert_oasis.json new file mode 100644 index 00000000..637e77d7 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/desert_oasis.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/desert_oasis/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/desert/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle.json new file mode 100644 index 00000000..310a744f --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/jungle/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/mossy/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle_tree.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle_tree.json new file mode 100644 index 00000000..4ae2c8d2 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/jungle_tree.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/jungle_tree/terminator", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/mossy/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa.json new file mode 100644 index 00000000..5e8fe24e --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/mesa/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/desert/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa_fortified.json new file mode 100644 index 00000000..33cde0df --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mesa_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/mesa_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/desert/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain.json new file mode 100644 index 00000000..735f9fbf --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/mountain/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain_alpine.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain_alpine.json new file mode 100644 index 00000000..3dda30a3 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mountain_alpine.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/mountain_alpine/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mushroom.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mushroom.json new file mode 100644 index 00000000..0b764464 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/mushroom.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/mushroom/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains.json new file mode 100644 index 00000000..d148a739 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/plains/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains_fortified.json new file mode 100644 index 00000000..6fd88c88 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/plains_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/plains_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna.json new file mode 100644 index 00000000..a5125599 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/savanna/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna_na.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna_na.json new file mode 100644 index 00000000..bd356186 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/savanna_na.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/savanna_na/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/snowy.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/snowy.json new file mode 100644 index 00000000..c0e7d400 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/snowy.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/snowy_igloo/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp.json new file mode 100644 index 00000000..c9223c3e --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/swamp/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/mossy/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp_fortified.json new file mode 100644 index 00000000..1697c460 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/swamp_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/swamp_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/mossy/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga.json new file mode 100644 index 00000000..52ac4ffc --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/taiga/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga_fortified.json new file mode 100644 index 00000000..96a61b3a --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/waystone/taiga_fortified.json @@ -0,0 +1,29 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "waystones" + } + ] + }, + "template_pool": "ctov:village/taiga_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "lithostitched:guaranteed", + "delegate": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location": "waystones:village/common/waystone" + }, + "count": 1, + "min_depth": 3 + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/structures/village/beach/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/beach/town_center.nbt index c708f38f..172022c5 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/town_center.nbt index cc4219c8..94e4e8b6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/town_center.nbt index c2abd492..69a01e5a 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/town_center.nbt index 102e006d..b4cd2575 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/town_center.nbt index 04a9e9ba..037c5981 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/town_center.nbt index 584971c2..6f9033f5 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/mesa/town_center.nbt index 7c4498e5..e57d9fc1 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/town_center.nbt index d240618e..b3e45046 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/mountain/town_center.nbt index a25fe559..9b80c56c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/town_center.nbt index bb106ed6..31b415b4 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/town_center.nbt index 3bbaf2dc..6c2046f6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/plains/town_center.nbt index 7e63f20d..0a98f6bf 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/town_center.nbt index 5cfc9789..a12741e5 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/town_center.nbt index fcc2c9f4..b2fb21ba 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/town_center.nbt index db13bfd8..c6e9af2f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/town_center.nbt index 9a389e6e..6a358396 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/town_center.nbt index 518c59cb..eea4934f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/town_center.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/town_center.nbt index c32e8eb2..2d032cf8 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/town_center.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/town_center.nbt differ diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/badlands.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/badlands.json index bb535978..6c75e806 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/badlands.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/badlands.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:cut_red_sandstone" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:cut_red_sandstone_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:red_sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:cut_red_sandstone", + "minecraft:oak_slab": "minecraft:cut_red_sandstone_slab", + "minecraft:spruce_fence": "minecraft:red_sandstone_wall" + } } ] } diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/beach.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/beach.json index 1259fb89..4aa1f037 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/beach.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/beach.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:jungle_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:jungle_planks", + "minecraft:oak_slab": "minecraft:jungle_slab", + "minecraft:spruce_fence":"minecraft:jungle_fence" + } } ] } \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/dark_forest.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/dark_forest.json index 25e1a713..ba0232bf 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/dark_forest.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/dark_forest.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:dark_oak_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:dark_oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:dark_oak_planks", + "minecraft:oak_slab": "minecraft:dark_oak_slab", + "minecraft:spruce_fence":"minecraft:dark_oak_fence" + } } ] } \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/desert.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/desert.json index cc5ee18d..4b3f06fa 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/desert.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/desert.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:cut_sandstone" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:cut_sandstone_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:sandstone_wall", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:cut_sandstone", + "minecraft:oak_slab": "minecraft:cut_sandstone_slab", + "minecraft:spruce_fence":"minecraft:sandstone_wall" + } } ] } diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/jungle.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/jungle.json index 480ed571..4aa1f037 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/jungle.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/jungle.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:jungle_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:jungle_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:jungle_planks", + "minecraft:oak_slab": "minecraft:jungle_slab", + "minecraft:spruce_fence":"minecraft:jungle_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mountain.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mountain.json index 58edc347..ba102a35 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mountain.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mountain.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:spruce_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:dark_oak_planks", + "minecraft:oak_slab": "minecraft:dark_oak_slab", + "minecraft:spruce_fence":"minecraft:spruce_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mushroom.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mushroom.json index 58edc347..ee01ec57 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mushroom.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/mushroom.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:spruce_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:brown_mushroom_block", + "minecraft:oak_slab": "minecraft:brown_mushroom_block", + "minecraft:spruce_fence":"minecraft:mushroom_stem" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/plains.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/plains.json index 40a2333b..718df7c2 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/plains.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/plains.json @@ -1,239 +1,4 @@ { "processors": [ - { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:oak_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:oak_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] - } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/savanna.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/savanna.json index 2d5e5645..6f334458 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/savanna.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/savanna.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:acacia_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:acacia_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:acacia_planks", + "minecraft:oak_slab": "minecraft:acacia_slab", + "minecraft:spruce_fence":"minecraft:acacia_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/snowy.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/snowy.json index 58edc347..0b03c69c 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/snowy.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/snowy.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:spruce_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:spruce_planks", + "minecraft:oak_slab": "minecraft:spruce_slab", + "minecraft:spruce_fence":"minecraft:spruce_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/swamp.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/swamp.json index 134b341b..4892818d 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/swamp.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/swamp.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:mangrove_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:mangrove_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:mangrove_planks", + "minecraft:oak_slab": "minecraft:mangrove_slab", + "minecraft:spruce_fence":"minecraft:mangrove_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/taiga.json b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/taiga.json index 58edc347..0b03c69c 100644 --- a/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/taiga.json +++ b/common/src/main/resources/data/ctov/worldgen/processor_list/bountiful/taiga.json @@ -1,239 +1,12 @@ { "processors": [ { - "processor_type": "minecraft:rule", - "rules": [ - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:block_match", - "block": "minecraft:oak_planks" - }, - "output_state": { - "Name": "minecraft:spruce_planks" - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:oak_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_slab", - "Properties": { - "type": "bottom", - "waterlogged": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "true", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "true", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "true", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "north": "false", - "south": "true", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "true", - "south": "true", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "false" - } - } - }, - { - "location_predicate": { - "predicate_type": "minecraft:always_true" - }, - "input_predicate": { - "predicate_type": "minecraft:blockstate_match", - "block_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "north": "false", - "south": "false", - "waterlogged": "false", - "west": "true" - } - } - }, - "output_state": { - "Name": "minecraft:spruce_fence", - "Properties": { - "east": "false", - "south": "false", - "north": "false", - "waterlogged": "false", - "west": "true" - } - } - } - ] + "processor_type": "lithostitched:block_swap", + "blocks": { + "minecraft:oak_planks": "minecraft:spruce_planks", + "minecraft:oak_slab": "minecraft:spruce_slab", + "minecraft:spruce_fence":"minecraft:spruce_fence" + } } ] -} +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_beach.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_beach.json index 1ed4f5fa..cebc2c02 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_beach.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_beach.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/beach/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_christmas.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_christmas.json index 185689a9..83631eaf 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_christmas.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_christmas.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/christmas/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_dark_forest.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_dark_forest.json index 1f73e319..d219639b 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_dark_forest.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_dark_forest.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/halloween/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert.json index fe72652e..29248330 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert_oasis.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert_oasis.json index 7b50710c..ddb07924 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert_oasis.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_desert_oasis.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert_oasis/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle.json index be334292..4345f6aa 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle_tree.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle_tree.json index 779e22ef..a416e402 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle_tree.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_jungle_tree.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle_tree/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa.json index 817c4cd2..066c4e53 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa_fortified.json index 1e374ffa..aa52d538 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mesa_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa_fortified/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain.json index 2a8394d3..d9391d37 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain_alpine.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain_alpine.json index 024b8070..ad7babd9 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain_alpine.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mountain_alpine.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain_alpine/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mushroom.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mushroom.json index e615e0df..b48b68a3 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_mushroom.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_mushroom.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mushroom/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains.json index 12aff949..e2b0ca43 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains_fortified.json index 84a63ef9..d3e9564f 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_plains_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains_fortified/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna.json index 58a372db..91a8990d 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna_na.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna_na.json index a4410732..0ee15c41 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna_na.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_savanna_na.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna_na/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_snowy_igloo.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_snowy_igloo.json index 31a0cd3d..345f1c74 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_snowy_igloo.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_snowy_igloo.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/snowy_igloo/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp.json index ae2960a6..47fb5df4 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp_fortified.json index a5813ac2..139d9df1 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_swamp_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp_fortified/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga.json index e17a900f..43ec5cc6 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga_fortified.json index 7daa1bb9..80ab160f 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/large/village_taiga_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga_fortified/town_centers", - "size": 5, + "size": 6, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_beach.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_beach.json index 7bb39312..1ed4f5fa 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_beach.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_beach.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/beach/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_christmas.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_christmas.json index d5830fce..185689a9 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_christmas.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_christmas.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/christmas/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_dark_forest.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_dark_forest.json index f884add4..1f73e319 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_dark_forest.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_dark_forest.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/halloween/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert.json index 185558f2..fe72652e 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert_oasis.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert_oasis.json index d0c5154c..7b50710c 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert_oasis.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_desert_oasis.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert_oasis/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle.json index 0b688566..be334292 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle_tree.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle_tree.json index 3a8d6b60..779e22ef 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle_tree.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_jungle_tree.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle_tree/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa.json index c519c645..817c4cd2 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa_fortified.json index 18e5062f..1e374ffa 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mesa_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa_fortified/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain.json index 19178f98..2a8394d3 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain_alpine.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain_alpine.json index eeb00512..024b8070 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain_alpine.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mountain_alpine.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain_alpine/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mushroom.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mushroom.json index c83bf388..e615e0df 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mushroom.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_mushroom.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mushroom/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains.json index fc465bb5..12aff949 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains_fortified.json index bfe5f373..84a63ef9 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_plains_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains_fortified/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna.json index 8fe912f1..58a372db 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna_na.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna_na.json index 02413af2..a4410732 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna_na.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_savanna_na.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna_na/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_snowy_igloo.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_snowy_igloo.json index e5ef2603..31a0cd3d 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_snowy_igloo.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_snowy_igloo.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/snowy_igloo/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp.json index c57df0f7..ae2960a6 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp_fortified.json index c1c083c0..a5813ac2 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_swamp_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp_fortified/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga.json index dce3fd38..e17a900f 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga_fortified.json index 3606e27c..7daa1bb9 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_taiga_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga_fortified/town_centers", - "size": 4, + "size": 5, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_underground.json b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_underground.json index 7375cf0e..63728469 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/medium/village_underground.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/medium/village_underground.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/underground/start", - "size": 4, + "size": 5, "start_height": { "absolute": -14 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_beach.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_beach.json index c77cc91e..7bb39312 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_beach.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_beach.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/beach/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_christmas.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_christmas.json index e52d606e..d5830fce 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_christmas.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_christmas.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/christmas/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_dark_forest.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_dark_forest.json index f72c0df9..f884add4 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_dark_forest.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_dark_forest.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/halloween/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert.json index fee4450e..185558f2 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert_oasis.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert_oasis.json index c3af5b1e..d0c5154c 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert_oasis.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_desert_oasis.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/desert_oasis/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle.json index 3cea1ddd..0b688566 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle_tree.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle_tree.json index 2f9718ad..3a8d6b60 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle_tree.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_jungle_tree.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/jungle_tree/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa.json index b737eeec..c519c645 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa_fortified.json index 73508e2b..18e5062f 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mesa_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mesa_fortified/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain.json index a8742a69..19178f98 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain_alpine.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain_alpine.json index e405f7ce..eeb00512 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain_alpine.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mountain_alpine.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mountain_alpine/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mushroom.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mushroom.json index a2ddf880..c83bf388 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_mushroom.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_mushroom.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/mushroom/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains.json index 4df3f6cd..fc465bb5 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains_fortified.json index ea9cc2ff..bfe5f373 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_plains_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/plains_fortified/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna.json index 4ac32a98..8fe912f1 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna_na.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna_na.json index 90bef0af..02413af2 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna_na.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_savanna_na.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/savanna_na/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_snowy_igloo.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_snowy_igloo.json index eaddd7d6..e5ef2603 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_snowy_igloo.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_snowy_igloo.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/snowy_igloo/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp.json index dc03b708..c57df0f7 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp_fortified.json index 7d4d005a..c1c083c0 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_swamp_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/swamp_fortified/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga.json index 2f4e8f0c..dce3fd38 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga_fortified.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga_fortified.json index dc53d25b..3606e27c 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga_fortified.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_taiga_fortified.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/taiga_fortified/town_centers", - "size": 3, + "size": 4, "start_height": { "absolute": 0 }, diff --git a/common/src/main/resources/data/ctov/worldgen/structure/small/village_underground.json b/common/src/main/resources/data/ctov/worldgen/structure/small/village_underground.json index 7375cf0e..63728469 100644 --- a/common/src/main/resources/data/ctov/worldgen/structure/small/village_underground.json +++ b/common/src/main/resources/data/ctov/worldgen/structure/small/village_underground.json @@ -5,7 +5,7 @@ "spawn_overrides": {}, "terrain_adaptation": "beard_thin", "start_pool": "ctov:village/underground/start", - "size": 4, + "size": 5, "start_height": { "absolute": -14 }, diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/badlands.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/badlands.json deleted file mode 100644 index 8b74fe2a..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/badlands.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/beach", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/beach" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/beach.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/beach.json deleted file mode 100644 index 795b9d7b..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/beach.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/badlands", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/badlands" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/dark_forest.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/dark_forest.json deleted file mode 100644 index bb99244c..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/dark_forest.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/dark_forest", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/dark_forest" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/desert.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/desert.json deleted file mode 100644 index 0d0c5caa..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/desert.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/desert", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/desert" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/jungle.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/jungle.json deleted file mode 100644 index 1c379957..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/jungle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/jungle", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/jungle" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mountain.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mountain.json deleted file mode 100644 index a6e272ab..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mountain.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/mountain", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/mountain" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mushroom.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mushroom.json deleted file mode 100644 index 8f8b78bf..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/mushroom.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/mushroom", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/mushroom" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/plains.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/plains.json deleted file mode 100644 index a2cf3252..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/plains.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/plains", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/plains" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/savanna.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/savanna.json deleted file mode 100644 index 201b2e80..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/savanna.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/savanna", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/savanna" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/snowy.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/snowy.json deleted file mode 100644 index 2553c05a..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/snowy.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/snowy", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/snowy" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/swamp.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/swamp.json deleted file mode 100644 index bbcff67c..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/swamp.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/swamp", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/swamp" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/taiga.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/taiga.json deleted file mode 100644 index d1322edb..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/bounty/taiga.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/bounty/taiga", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "bountiful:village/common/bounty_gazebo", - "processors": "ctov:bountiful/taiga" - } - } - ] -} diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/vampirism/totem.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/vampirism/totem.json deleted file mode 100644 index 90543242..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/vampirism/totem.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "vampirism:village/totem", - "processors": "minecraft:empty" - } - } - ] - } - \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/mossy.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/mossy.json deleted file mode 100644 index 7319de76..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/mossy.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/waystone/mossy", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "waystones:village/common/waystone", - "processors": "ctov:waystones/mossy" - } - } - ] -} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/normal.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/normal.json deleted file mode 100644 index aad365c5..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/normal.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/waystone/normal", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "waystones:village/common/waystone", - "processors": "minecraft:empty" - } - } - ] -} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/sand.json b/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/sand.json deleted file mode 100644 index cb23e5c4..00000000 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/village/waystone/sand.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "ctov:village/waystone/sand", - "fallback": "minecraft:empty", - "elements": [ - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "location": "waystones:village/desert/waystone", - "processors": "minecraft:empty" - } - } - ] -} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index aaa00ad6..bfc0a0fd 100644 --- a/gradle.properties +++ b/gradle.properties @@ -11,29 +11,29 @@ source_url=https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village issue_url=https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues icon_path=assets/pack.png mapping_channel=official -mapping_version=1.20.1 +mapping_version=1.20.2 # Environment properties -minecraft_version=1.20.1 +minecraft_version=1.20.2 enabled_platforms=quilt,fabric,neoforge,forge -mod_version=3.4.4 +mod_version=3.4.5 # The Minecraft version minecraft_version_range=[1.20,1.21) architectury_version=10.0.17 # The Forge version -forge_version=47.2.20 +forge_version=48.1.20 # The NeoForge version -neo_version=47.1.97 +neo_version=20.2.88 neo_mc_version_range=[20,) neo_loader_version_range=[1,) # Fabric versions -fabric_loader_version=0.15.6 -fabric_api_version=0.91.0+1.20.1 +fabric_loader_version=0.15.11 +fabric_api_version=0.91.6+1.20.2 fabric_mc_version_range=>=1.20 # Quilt versions -quilt_loader_version=0.22.1-beta.4 -quilt_fabric_api_version=7.4.0+0.90.0-1.20.1 +quilt_loader_version=0.26.0 +quilt_fabric_api_version=8.0.0-alpha.6+0.91.6-1.20.2 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index c30b486a..509c4a29 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip networkTimeout=10000 zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/settings.gradle b/settings.gradle index 6b6d2a3a..d28b4de4 100644 --- a/settings.gradle +++ b/settings.gradle @@ -11,6 +11,6 @@ pluginManagement { include("common") include("fabric") include("fabric-base") -include("quilt") -include("forge") -// include("neoforge") \ No newline at end of file +// include("quilt") +// include("forge") +include("neoforge") \ No newline at end of file