Skip to content

Commit

Permalink
[Refinement] Waystones rarely generate in Forge 1.20.1
Browse files Browse the repository at this point in the history
Fixes #132
  • Loading branch information
ChoiceTheorem committed Jun 14, 2024
1 parent 34ac8ab commit 40f9273
Show file tree
Hide file tree
Showing 160 changed files with 1,391 additions and 3,131 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ run/*
.gitignore
gradle/*
mcmodsrepo/*
.eclipse/*
.eclipse/*
7 changes: 2 additions & 5 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
+ Increase village size across the board.
+ Guarantee spawn for waystone and bounty board but it can be anywhere in the village.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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

}

Expand Down
17 changes: 17 additions & 0 deletions checklist.md
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
Loading

0 comments on commit 40f9273

Please sign in to comment.