Compare commits
5 Commits
ed3194b19c
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 11eb2d4a28 | |||
| 1558f34c12 | |||
| bf13051c0a | |||
| 9985a72494 | |||
| 94c2dc4402 |
4
.gitignore
vendored
4
.gitignore
vendored
@@ -14,5 +14,5 @@
|
|||||||
# Dependency directories (remove the comment below to include it)
|
# Dependency directories (remove the comment below to include it)
|
||||||
# vendor/
|
# vendor/
|
||||||
|
|
||||||
Eternal.zip
|
Chronolock.zip
|
||||||
Eternal-*.mrpack
|
Chronolock-*.mrpack
|
||||||
|
|||||||
@@ -7,6 +7,6 @@ CNAME
|
|||||||
CHANGELOG.md
|
CHANGELOG.md
|
||||||
CHECKLIST.md
|
CHECKLIST.md
|
||||||
roadmap.md
|
roadmap.md
|
||||||
Eternal.zip
|
Chronolock.zip
|
||||||
Eternal-*.mrpack
|
Chronolock-*.mrpack
|
||||||
PACK_CONTENT.md
|
PACK_CONTENT.md
|
||||||
|
|||||||
10
CHANGELOG.md
10
CHANGELOG.md
@@ -1,5 +1,15 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 8.0.1 - 20 Oct 2025
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Tree Harvester
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- FallingTree
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## 8.0.0 - 15 Oct 2025
|
## 8.0.0 - 15 Oct 2025
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
@@ -649,6 +649,11 @@ description = ""
|
|||||||
- [ ] [Trade Cycling](https://www.curseforge.com/minecraft/mc-mods/trade-cycling)
|
- [ ] [Trade Cycling](https://www.curseforge.com/minecraft/mc-mods/trade-cycling)
|
||||||
- *Licence*: All Rights Reserved
|
- *Licence*: All Rights Reserved
|
||||||
- *Both*
|
- *Both*
|
||||||
|
- [ ] [Tree Harvester](https://www.curseforge.com/minecraft/mc-mods/tree-harvester)
|
||||||
|
- *License*: All Rights Reserved
|
||||||
|
- *Both*
|
||||||
|
- *Dependencies*:
|
||||||
|
- Collective
|
||||||
|
|
||||||
## U
|
## U
|
||||||
- [ ] [Ultimate Car Mod](https://www.curseforge.com/minecraft/mc-mods/ultimate-car-mod)
|
- [ ] [Ultimate Car Mod](https://www.curseforge.com/minecraft/mc-mods/ultimate-car-mod)
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ At times it might be needed for you to manually update the NeoForge version when
|
|||||||
3. Select "Version"
|
3. Select "Version"
|
||||||
4. Select "NeoForge" in the list
|
4. Select "NeoForge" in the list
|
||||||
5. Click "Change version" on the right side
|
5. Click "Change version" on the right side
|
||||||
6. Select "21.1.200"
|
6. Select "21.1.211"
|
||||||
7. Click "OK" then "Close"
|
7. Click "OK" then "Close"
|
||||||
8. Done
|
8. Done
|
||||||
|
|
||||||
|
|||||||
38
config/treeharvester.json5
Normal file
38
config/treeharvester.json5
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
{
|
||||||
|
// If enabled, tree harvesting only works when a player is holding an axe in the main hand.
|
||||||
|
"mustHoldAxeForTreeHarvest": true,
|
||||||
|
// If enabled, tree harvesting works when not holding the sneak button. If disabled it's reversed, and only works when sneaking.
|
||||||
|
"treeHarvestWithoutSneak": true,
|
||||||
|
// Whether the mod should attempt to find the actual bottom log of the tree and start there. This means you can break a tree in the middle and it will still completely be felled.
|
||||||
|
"automaticallyFindBottomBlock": true,
|
||||||
|
// If enabled, the leaves around a broken tree will quickly disappear. Only works with 'instantBreakLeavesAround' disabled.
|
||||||
|
"enableFastLeafDecay": true,
|
||||||
|
// If enabled, the warped stem/crimson trees in the nether will also be chopped down quickly.
|
||||||
|
"enableNetherTrees": true,
|
||||||
|
// If enabled, giant/huge mushrooms will also be chopped down quickly.
|
||||||
|
"enableHugeMushrooms": true,
|
||||||
|
// If enabled, trees with leaves placed by players won't be destroyed.
|
||||||
|
"ignorePlayerMadeTrees": true,
|
||||||
|
// If enabled, automatically replaces the sapling from the drops when a tree is harvested.
|
||||||
|
"replaceSaplingOnTreeHarvest": false,
|
||||||
|
// If enabled, automatically replaces the sapling from the drops when a huge mushroom is harvested and 'enableHugeMushrooms' is enabled.
|
||||||
|
"replaceMushroomOnMushroomHarvest": false,
|
||||||
|
// If enabled, for every log harvested, the axe held loses durability.
|
||||||
|
"loseDurabilityPerHarvestedLog": true,
|
||||||
|
// Here you can set how much durability chopping down a tree should take from the axe. For example if set to 0.1, this means that every 10 logs take 1 durability.
|
||||||
|
// min: 0.001, max: 1.0
|
||||||
|
"loseDurabilityModifier": 1.0,
|
||||||
|
// If enabled, players' exhaustion level increases 0.005 per harvested log (Minecraft's default per broken block) * increaseExhaustionModifier.
|
||||||
|
"increaseExhaustionPerHarvestedLog": true,
|
||||||
|
// This determines how much exhaustion should be added to the player per harvested log. By default 0.005 * 1.0.
|
||||||
|
// min: 0.001, max: 1.0
|
||||||
|
"increaseExhaustionModifier": 1.0,
|
||||||
|
// If enabled, harvesting time will increase per existing log in the tree. The amount is determined by 'increasedHarvestingTimePerLogModifier'.
|
||||||
|
"increaseHarvestingTimePerLog": true,
|
||||||
|
// How much longer it takes to harvest a tree with 'increaseHarvestingTimePerLog' enabled. The actual speed is: newSpeed = originalSpeed / (1 + (logCount * increasedHarvestingTimePerLogModifier)).
|
||||||
|
// min: 0.01, max: 10.0
|
||||||
|
"increasedHarvestingTimePerLogModifier": 0.2,
|
||||||
|
// How many leaves should be broken per tick after a tree has been harvested. Increasing this will speed up the fast leaf decay, but costs more processing power per tick.
|
||||||
|
// min: 1, max: 16
|
||||||
|
"amountOfLeavesBrokenPerTick": 5
|
||||||
|
}
|
||||||
@@ -74,6 +74,6 @@
|
|||||||
#If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed
|
#If enabled, JourneyMap waypoints will only be created if the mod 'JourneyMap Integration' is not installed
|
||||||
preferJourneyMapIntegrationMod = true
|
preferJourneyMapIntegrationMod = true
|
||||||
#If enabled, Waystones will add markers for waystones and sharestones to BlueMap.
|
#If enabled, Waystones will add markers for waystones and sharestones to BlueMap.
|
||||||
blueMap = true
|
blueMap = false
|
||||||
#If enabled, Waystones will add markers for waystones and sharestones to Dynmap.
|
#If enabled, Waystones will add markers for waystones and sharestones to Dynmap.
|
||||||
dynmap = true
|
dynmap = false
|
||||||
|
|||||||
16
index.toml
16
index.toml
@@ -80,13 +80,17 @@ hash = "fdb4627cf39e0bab0e84567909662a6db2ecf2850535270372acb6aba53066ed"
|
|||||||
file = "config/torchmaster.toml"
|
file = "config/torchmaster.toml"
|
||||||
hash = "daa926a3590b1b913d3feaa8eba7754f370eb1437f3d2ae2396ca7808827ce46"
|
hash = "daa926a3590b1b913d3feaa8eba7754f370eb1437f3d2ae2396ca7808827ce46"
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "config/treeharvester.json5"
|
||||||
|
hash = "8c6265d8987a7c81e57c576e5ce30c072b1ce73c8a3aed8a2d620a3d578759df"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "config/watut-common.toml"
|
file = "config/watut-common.toml"
|
||||||
hash = "4dbfe6f9ff1e7d8031283a75f9c953c476bdc4b1b8840afd66cd82818eeef1ca"
|
hash = "4dbfe6f9ff1e7d8031283a75f9c953c476bdc4b1b8840afd66cd82818eeef1ca"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "config/waystones-common.toml"
|
file = "config/waystones-common.toml"
|
||||||
hash = "de002b4d2e0ba244213a14b2dfbeb92b2c49443a93a43ecc95a1191804dfa59a"
|
hash = "4921765ebe5432a59f0b674687ad71473065419d7316e87b634e79f5fb43b2b2"
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/3dskinlayers.pw.toml"
|
file = "mods/3dskinlayers.pw.toml"
|
||||||
@@ -377,11 +381,6 @@ file = "mods/extra-disks.pw.toml"
|
|||||||
hash = "5551e291d2ea656b12d43d354eac2736f7d92242bd548aa4bbf5ae2c475cefef"
|
hash = "5551e291d2ea656b12d43d354eac2736f7d92242bd548aa4bbf5ae2c475cefef"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
|
||||||
file = "mods/falling-tree.pw.toml"
|
|
||||||
hash = "5fe387bcad2d72c9bdd7047c19fed3959dcc65e2615e188ae743c517c08209df"
|
|
||||||
metafile = true
|
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/farming-for-blockheads.pw.toml"
|
file = "mods/farming-for-blockheads.pw.toml"
|
||||||
hash = "712a34d3c2f30597150be9f72507a761616db3356038072918569f883fa88092"
|
hash = "712a34d3c2f30597150be9f72507a761616db3356038072918569f883fa88092"
|
||||||
@@ -822,6 +821,11 @@ file = "mods/trade-cycling.pw.toml"
|
|||||||
hash = "4c00caba57fa2aa18ebf941fbe897ab444252f6baf816f5d1fea9430ac5b3779"
|
hash = "4c00caba57fa2aa18ebf941fbe897ab444252f6baf816f5d1fea9430ac5b3779"
|
||||||
metafile = true
|
metafile = true
|
||||||
|
|
||||||
|
[[files]]
|
||||||
|
file = "mods/tree-harvester.pw.toml"
|
||||||
|
hash = "acaf6d5f5cc298e92fd1a9598330661aefdb6721447e23300b2adc54433be57e"
|
||||||
|
metafile = true
|
||||||
|
|
||||||
[[files]]
|
[[files]]
|
||||||
file = "mods/ultimate-car-mod.pw.toml"
|
file = "mods/ultimate-car-mod.pw.toml"
|
||||||
hash = "2ccf7d9ce5def67c99c347a6adb73bf30c680772f3b36eb995956ae991b17714"
|
hash = "2ccf7d9ce5def67c99c347a6adb73bf30c680772f3b36eb995956ae991b17714"
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
name = "FallingTree"
|
|
||||||
filename = "FallingTree-1.21.1-1.21.1.11.jar"
|
|
||||||
side = "both"
|
|
||||||
|
|
||||||
[download]
|
|
||||||
hash-format = "sha1"
|
|
||||||
hash = "626e7ec3a979dcc15d8e65c53207572c41c1b255"
|
|
||||||
mode = "metadata:curseforge"
|
|
||||||
|
|
||||||
[update]
|
|
||||||
[update.curseforge]
|
|
||||||
file-id = 6835168
|
|
||||||
project-id = 349559
|
|
||||||
13
mods/tree-harvester.pw.toml
Normal file
13
mods/tree-harvester.pw.toml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
name = "Tree Harvester"
|
||||||
|
filename = "treeharvester-1.21.1-9.1.jar"
|
||||||
|
side = "both"
|
||||||
|
|
||||||
|
[download]
|
||||||
|
hash-format = "sha1"
|
||||||
|
hash = "08abaeb2bca62538c2f33fbc42f9eead478aecee"
|
||||||
|
mode = "metadata:curseforge"
|
||||||
|
|
||||||
|
[update]
|
||||||
|
[update.curseforge]
|
||||||
|
file-id = 6184916
|
||||||
|
project-id = 367178
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
name = "Chronolock"
|
name = "Chronolock"
|
||||||
author = "Pupyrinth"
|
author = "Pupyrinth"
|
||||||
version = "8.0.0"
|
version = "8.0.1"
|
||||||
pack-format = "packwiz:1.1.0"
|
pack-format = "packwiz:1.1.0"
|
||||||
|
|
||||||
[index]
|
[index]
|
||||||
file = "index.toml"
|
file = "index.toml"
|
||||||
hash-format = "sha256"
|
hash-format = "sha256"
|
||||||
hash = "b0c0b0e837d879243dc19a3f7913eef395b360db9869fae8b3febc8fd8126298"
|
hash = "3ea18d0e31b3731b9c41648a6cd79d3d36340a54f49d91464527e945ee629d15"
|
||||||
|
|
||||||
[versions]
|
[versions]
|
||||||
minecraft = "1.21.1"
|
minecraft = "1.21.1"
|
||||||
|
|||||||
Reference in New Issue
Block a user