diff --git a/CHANGES.md b/CHANGES.md index f0a80a44..f2941c49 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,6 @@ # What's changed -+ Fix loot tables of the farmer delight's farm. -+ Fix rice paddies from farmer delight's. -+ Compatibility with [Rats](https://www.curseforge.com/minecraft/mc-mods/rats) -+ Compatibility with [Creates:Structures](https://www.curseforge.com/minecraft/mc-mods/create-structures) -+ Adding camels and Vampirism if applied to village centers ++ Fix Villager Plus ++ Fix Create:Structure Compat ++ Fix bug [#122](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/122) ++ Fix bug [#120](https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village/issues/120) diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/beach.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/beach.json new file mode 100644 index 00000000..04e84e4e --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/beach.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/beach/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/beach/house", + "location":"ctov:village/beach/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/christmas.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/christmas.json new file mode 100644 index 00000000..51089231 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/christmas.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/christmas/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/christmas/house", + "location":"ctov:village/christmas/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/dark_forest.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/dark_forest.json new file mode 100644 index 00000000..30f8a9cb --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/dark_forest.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/halloween/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/halloween/house", + "location":"ctov:village/halloween/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert.json new file mode 100644 index 00000000..7b7feb1c --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/desert/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/desert/house", + "location":"ctov:village/desert/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert_oasis.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert_oasis.json new file mode 100644 index 00000000..e0e26098 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/desert_oasis.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/desert_oasis/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/desert_oasis/house", + "location":"ctov:village/desert_oasis/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle.json new file mode 100644 index 00000000..78c60d6b --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/jungle/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/jungle/house", + "location":"ctov:village/jungle/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle_tree.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle_tree.json new file mode 100644 index 00000000..224f62a2 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/jungle_tree.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/jungle_tree/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/jungle_tree/house", + "location":"ctov:village/jungle_tree/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa.json new file mode 100644 index 00000000..4aad283c --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/mesa/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mesa/house", + "location":"ctov:village/mesa/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa_fortified.json new file mode 100644 index 00000000..2c4bd78f --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mesa_fortified.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/mesa_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mesa_fortified/house", + "location":"ctov:village/mesa_fortified/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain.json new file mode 100644 index 00000000..53f98ea9 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/mountain/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mountain/house", + "location":"ctov:village/mountain/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain_alpine.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain_alpine.json new file mode 100644 index 00000000..9632c7c3 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mountain_alpine.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/mountain_alpine/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mountain_alpine/house", + "location":"ctov:village/mountain_alpine/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mushroom.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mushroom.json new file mode 100644 index 00000000..1e13443c --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/mushroom.json @@ -0,0 +1,33 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/mushroom/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mushroom/house_brown", + "location":"ctov:village/mushroom/jobsite/windmill" + } + }, + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/mushroom/house_red", + "location":"ctov:village/mushroom/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains.json new file mode 100644 index 00000000..449fcf70 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/plains/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/plains/house", + "location":"ctov:village/plains/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains_fortified.json new file mode 100644 index 00000000..25ffdd58 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/plains_fortified.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/plains_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/plains_fortified/pink_house", + "location":"ctov:village/plains_fortified/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna.json new file mode 100644 index 00000000..a0920a32 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna.json @@ -0,0 +1,42 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/savanna/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/savanna/house_orange", + "location":"ctov:village/savanna/jobsite/windmill" + } + }, + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/savanna/house_red", + "location":"ctov:village/savanna/jobsite/windmill" + } + }, + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/savanna/house_yellow", + "location":"ctov:village/savanna/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna_na.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna_na.json new file mode 100644 index 00000000..5de91598 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/savanna_na.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/savanna_na/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "minecraft:empty", + "location":"ctov:village/savanna_na/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/snowy.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/snowy.json new file mode 100644 index 00000000..9ea263e0 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/snowy.json @@ -0,0 +1,33 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/snowy_igloo/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/snowy/house_ice", + "location":"ctov:village/snowy_igloo/jobsite/windmill" + } + }, + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/snowy/house_snow", + "location":"ctov:village/snowy_igloo/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp.json new file mode 100644 index 00000000..46b3e887 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/swamp/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/swamp/house", + "location":"ctov:village/swamp/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp_fortified.json new file mode 100644 index 00000000..2d1cedca --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/swamp_fortified.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/swamp_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/swamp_fortified/house", + "location":"ctov:village/swamp_fortified/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga.json new file mode 100644 index 00000000..37395e14 --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/taiga/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/taiga/house", + "location":"ctov:village/taiga/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga_fortified.json new file mode 100644 index 00000000..c267d65c --- /dev/null +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/create_structures/taiga_fortified.json @@ -0,0 +1,24 @@ +{ + "type": "lithostitched:add_template_pool_elements", + "predicate": { + "type": "lithostitched:all_of", + "predicates": [ + { + "type": "lithostitched:mod_loaded", + "mod_id": "create_structures" + } + ] + }, + "template_pool": "ctov:village/taiga_fortified/house", + "elements": [ + { + "weight": 5, + "element": { + "element_type": "minecraft:single_pool_element", + "projection": "rigid", + "processors": "ctov:village/taiga_fortified/house", + "location":"ctov:village/taiga_fortified/jobsite/windmill" + } + } + ] +} \ No newline at end of file diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/beach.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/beach.json index 87310975..e028dc91 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/beach.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/beach.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/christmas.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/christmas.json index c475d057..ef3b587d 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/christmas.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/christmas.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/dark_forest.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/dark_forest.json index 7059a1c3..540057d2 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/dark_forest.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/dark_forest.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert.json index 3d79d405..558663ed 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert_oasis.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert_oasis.json index 4e183bc2..0d4107cf 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert_oasis.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/desert_oasis.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle.json index ef8f3f35..9661b70e 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle_tree.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle_tree.json index 9b336c64..904893e4 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle_tree.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/jungle_tree.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa.json index 96ec8df1..0b997259 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa_fortified.json index 60e40246..13adaef9 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa_fortified.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mesa_fortified.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain.json index 20fd4047..0a760a49 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain_alpine.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain_alpine.json index 6aebd9a6..17b725c5 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain_alpine.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mountain_alpine.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mushroom.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mushroom.json index 595066b9..0a69b4f5 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mushroom.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/mushroom.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains.json index 3edea23a..bd214c0b 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains_fortified.json index 88426747..f2527078 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains_fortified.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/plains_fortified.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna.json index fe4b9e6e..a866c2ac 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna_na.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna_na.json index bdd7cc77..ef1852d7 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna_na.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/savanna_na.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/snowy.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/snowy.json index 713bc1a1..1f44f76a 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/snowy.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/snowy.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp.json index e7516781..d01e94be 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp_fortified.json index 582d4275..09de96d5 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp_fortified.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/swamp_fortified.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga.json index bb4feda7..dff8f479 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga_fortified.json b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga_fortified.json index 6d14bdcc..f37acf82 100644 --- a/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga_fortified.json +++ b/common/src/main/resources/data/ctov/lithostitched/worldgen_modifier/rats/taiga_fortified.json @@ -5,7 +5,7 @@ "predicates": [ { "type": "lithostitched:mod_loaded", - "mod_id": "etched" + "mod_id": "rats" } ] }, diff --git a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/engineer.nbt index 4928950d..511a9f05 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/garden.nbt index 785521bb..d9de53a6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/hunter.nbt index 39faa47a..4fa9fe49 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/oceanographer.nbt index edc33e9d..45ca10f1 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/woodworker.nbt index 2450ee08..1dc7432c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/beach/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/beach/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/engineer.nbt index 747543a3..638b7446 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/garden.nbt index 2d561701..8c47055c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/hunter.nbt index 15152b4c..26e73939 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/oceanographer.nbt index 810bbb76..f42990e4 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/woodworker.nbt index 8ba06102..e988378f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/christmas/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/engineer.nbt index 55ad0a5a..e32be081 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/hunter.nbt index 374e2e5b..9c4aca10 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/oceanographer.nbt index 2c06d188..91866979 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/woodworker.nbt index 7bacbea2..957fc522 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/desert/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/engineer.nbt index 01107dfb..3f7fd261 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_fortified/jobsite/forager.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/forager.nbt similarity index 100% rename from common/src/main/resources/data/ctov/structures/village/desert_fortified/jobsite/forager.nbt rename to common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/forager.nbt diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/garden.nbt index f9954d3a..2beb551e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/hunter.nbt index a587b5d8..255beabf 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/oceanographer.nbt index c845b6c3..2c144af4 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/woodworker.nbt index e944b1e0..7a670842 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/desert_oasis/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/engineer.nbt index fb54627a..9bb78755 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/garden.nbt index 6aacef2d..a9e02e48 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/hunter.nbt index 4b926b0b..08fa7f01 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/oceanographer.nbt index 20eb97a5..3bcf96ae 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/woodworker.nbt index 38631d43..9cbaff49 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/halloween/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/engineer.nbt index b608f596..d72e23e3 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/garden.nbt index f29612d4..f472e50f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/hunter.nbt index eb176734..afcbc9de 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/oceanographer.nbt index 19393550..d5c8b4d6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/woodworker.nbt index f0764ae1..4533499e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/engineer.nbt index b5941329..7ac7f4a6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/garden.nbt index ef66c593..56b295eb 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/hunter.nbt index d36ad9a1..15162bdd 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/oceanographer.nbt index 1f834a66..5400c986 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/woodworker.nbt index 180cfd98..409bd2c0 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/jungle_tree/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/engineer.nbt index e8a9fea9..299e473a 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/garden.nbt index 24597d3b..dd098ce7 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/oceanographer.nbt index 55ce655a..e6d7f6e6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/woodworker.nbt index 70d8a365..013d7013 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/engineer.nbt index 80b25bca..60cdf87e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/garden.nbt index be7e99bd..4d395a38 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/hunter.nbt index f44aadd4..e9e5e916 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/oceanographer.nbt index 713bb6e1..d75863b6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/woodworker.nbt index 40ae5224..c683bdff 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/mesa_fortified/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/engineer.nbt index 65082032..799a02c9 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/hunter.nbt index 9cad2350..694a01ae 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/oceanographer.nbt index 2500ef08..44948c71 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/woodworker.nbt index fb0ace1a..b4ceb645 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/engineer.nbt index eab621b5..293893d9 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/garden.nbt index 2bdacd65..6aa7c412 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/hunter.nbt index 1e518426..d43d594d 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/oceanographer.nbt index b21a6371..1458e42b 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/woodworker.nbt index fb705927..0bdc6ad1 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/mountain_alpine/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/engineer.nbt index 91db74be..1a27d5d6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/garden.nbt index 4124541a..f2bd71be 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/hunter.nbt index 0893c4ea..ad9343f2 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/oceanographer.nbt index f533ccb5..3e82814c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/woodworker.nbt index f70ee323..57d5d5d2 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/mushroom/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/engineer.nbt index 537f3fda..976fc5bf 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/garden.nbt index 5edebd5a..7b8f33a1 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/hunter.nbt index eea7047c..ac2b35d0 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/oceanographer.nbt index 66d82ac2..09365890 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/woodworker.nbt index 4f31b83e..6874767a 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/plains/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/engineer.nbt index 857f3f4f..80b8bf5c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/garden.nbt index 5013715d..363b3281 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/hunter.nbt index 25236107..adcd396b 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/oceanographer.nbt index 6af1d019..b7154a2d 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/woodworker.nbt index 42cea8da..be6634e6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/plains_fortified/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/engineer.nbt index 0927eada..af91fd51 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/garden.nbt index e9d57199..27fcc3df 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/hunter.nbt index 0dc6dbcd..c30224cf 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/oceanographer.nbt index 45a8f5ed..01ba5960 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/woodworker.nbt index 1d775f2c..16a2b8ff 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/engineer.nbt index 82d0097e..ca88ba42 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/garden.nbt index 6238f9f2..46374c0f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/hunter.nbt index d556c191..03450ee7 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/oceanographer.nbt index adc579e6..90820d17 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/woodworker.nbt index 097f11bb..f41d1ca0 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/savanna_na/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/engineer.nbt index a77175ed..0e0cb6a9 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/garden.nbt index 5864c12e..d24e24e2 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/hunter.nbt index 2ffbb4a3..65b76bb8 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/oceanographer.nbt index 3a6ecc14..f4891a99 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/woodworker.nbt index 0386ded0..3169d26e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/snowy_igloo/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/engineer.nbt index 99eb545c..1e5c2f3c 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/garden.nbt index 190543ea..9c799aac 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/hunter.nbt index e6a3a31a..4f1cbc29 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/oceanographer.nbt index abf1b578..eab7619e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/woodworker.nbt index 27273a25..d0e8d99b 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/engineer.nbt index 2b1eca1d..8e404f88 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/garden.nbt index 81d2c1ac..289314b7 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/hunter.nbt index f6060db0..ef502f7f 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/oceanographer.nbt index b64242b4..23370a20 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/woodworker.nbt index 32a1b3cb..fe417a18 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/swamp_fortified/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/archer.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/archer.nbt index 8829971a..7eb54929 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/archer.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/archer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/engineer.nbt index 942e77dd..764fc07e 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/garden.nbt index c314f164..42ac98c9 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/hunter.nbt index 9cf9a210..654e9ae8 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/oceanographer.nbt index e69f8428..33b12ae6 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/woodworker.nbt index 87c8654d..bed4b7ce 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/engineer.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/engineer.nbt index f56bb443..2b2fdacf 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/engineer.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/engineer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/garden.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/garden.nbt index 850069d6..c19be671 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/garden.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/garden.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/hunter.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/hunter.nbt index 4d3c764b..c7160404 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/hunter.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/hunter.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/oceanographer.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/oceanographer.nbt index 854242ef..e4a84417 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/oceanographer.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/oceanographer.nbt differ diff --git a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/woodworker.nbt b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/woodworker.nbt index 11cbe8b2..7ed9c351 100644 Binary files a/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/woodworker.nbt and b/common/src/main/resources/data/ctov/structures/village/taiga_fortified/jobsite/woodworker.nbt differ diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/badlands/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/badlands/features.json index d20966eb..a13564be 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/badlands/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/badlands/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/badlands/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/dark_forest/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/dark_forest/features.json index eccff29d..8de0b60d 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/dark_forest/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/dark_forest/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/dark_forest/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/desert/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/desert/features.json index 17d37293..cc3efc1f 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/desert/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/desert/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/desert/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/jungle/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/jungle/features.json index e37bda39..31ef5d76 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/jungle/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/jungle/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/jungle/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/mountain/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/mountain/features.json index cd08243f..3078e6e4 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/mountain/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/mountain/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/mountain/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/plains/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/plains/features.json index 9f7f8666..aa4e4dd6 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/plains/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/plains/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/plains/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/savanna/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/savanna/features.json index f0037a2f..6ad4be1a 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/savanna/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/savanna/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/savanna/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/snowy/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/snowy/features.json index cfd314f0..c961efcb 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/snowy/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/snowy/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/snowy/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/swamp/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/swamp/features.json index ffeab373..efcfb812 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/swamp/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/swamp/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/swamp/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/taiga/features.json b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/taiga/features.json index a6e4ec8a..f3f66236 100644 --- a/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/taiga/features.json +++ b/common/src/main/resources/data/ctov/worldgen/template_pool/pillager_outpost/taiga/features.json @@ -83,15 +83,6 @@ "element_type": "minecraft:single_pool_element" } }, - { - "weight": 1, - "element": { - "element_type": "minecraft:single_pool_element", - "projection": "rigid", - "processors": "minecraft:empty", - "location":"ctov:pillager_outpost/taiga/feature_kennel" - } - }, { "weight": 6, "element": { diff --git a/neoforge/src/main/resources/META-INF/mods.toml b/neoforge/src/main/resources/META-INF/mods.toml index f3e8df7c..667c105d 100644 --- a/neoforge/src/main/resources/META-INF/mods.toml +++ b/neoforge/src/main/resources/META-INF/mods.toml @@ -23,7 +23,7 @@ displayName="ChoiceTheorem's Overhauled Village" #mandatory # A URL to query for updates for this mod. See the JSON update specification updateJSONURL = "https://api.modrinth.com/updates/fgmhI8kH/forge_updates.json" #optional # A URL for the "homepage" for this mod, displayed in the mod UI -displayURL="https://github.com/ChoiceTheorem/ChoiceTheorem-s-overhauled-village" #optional +displayURL="https://modrinth.com/mod/ct-overhaul-village" #optional # A file name (in the root of the mod JAR) containing a logo for display logoFile="assets/pack.png" #optional # A text field displayed in the mod UI