This commit is contained in:
Moritz Ruth 2022-12-03 18:24:15 +01:00
parent ed6bdcd2fd
commit 400f788eea
11 changed files with 227 additions and 0 deletions

View file

@ -25,10 +25,17 @@ The [`Better Leaves` resource-pack by MidnightDust](https://github.com/TeamMidni
- `Adorn` — furniture - `Adorn` — furniture
- `Artisanat` — more block variations - `Artisanat` — more block variations
- `Cinderscapes` — more Nether biomes - `Cinderscapes` — more Nether biomes
- `Infinity Buttons` — more buttons
- `Lanterns Belong on Walls` — allows placing lanterns on walls
- `Promenade` — biomes, mobs and ducks - `Promenade` — biomes, mobs and ducks
- `Terrestria` — more Overworld biomes - `Terrestria` — more Overworld biomes
- `Towers of the Wild: Reworked` (data-pack) — BotW-like towers in the Overworld - `Towers of the Wild: Reworked` (data-pack) — BotW-like towers in the Overworld
- `Towers of the Wild: Additions` — BotW-like towers in the Nether and the End - `Towers of the Wild: Additions` — BotW-like towers in the Nether and the End
- `Wilder Wild` — many enhancements
- `YUNG's Better Desert Temples`
- `YUNG's Better Dungeons`
- `YUNG's Better Mineshafts`
- `YUNG's Better Ocean Monuments`
### GUI ### GUI
- `AppleSkin` — hunger/health-related HUD improvements - `AppleSkin` — hunger/health-related HUD improvements
@ -47,6 +54,7 @@ The [`Better Leaves` resource-pack by MidnightDust](https://github.com/TeamMidni
### Miscellaneous ### Miscellaneous
- `Auth Me` — in-game session re-validation - `Auth Me` — in-game session re-validation
- `Axes are Weapons` — allows sword enchantments for axes - `Axes are Weapons` — allows sword enchantments for axes
- `Campanion` — various camping-themed items
- `Charm` — miscellaneous vanilla enhancements - `Charm` — miscellaneous vanilla enhancements
- `Charmonium` — better ambient sounds - `Charmonium` — better ambient sounds
- `Culinaire` — more food items - `Culinaire` — more food items
@ -70,6 +78,7 @@ The [`Better Leaves` resource-pack by MidnightDust](https://github.com/TeamMidni
- `Fabric Language Kotlin` - `Fabric Language Kotlin`
- `oωo` - `oωo`
- `TerraBlender` — semi-hard dependency of `Promenade` - `TerraBlender` — semi-hard dependency of `Promenade`
- `YUNG's API`
## Not included ## Not included
### Experimental ### Experimental

View file

@ -0,0 +1,3 @@
[general]
disableVanillaPyramids = true
applyMiningFatigue = true

View file

@ -0,0 +1,58 @@
{
"armoryHelmets": {
"entries": {
"chainmail_helmet": 0.3,
"golden_helmet": 0.2
},
"defaultItem": "air"
},
"wardrobeHelmets": {
"entries": {
"chainmail_helmet": 0.2,
"leather_helmet": 0.4
},
"defaultItem": "air"
},
"armoryChestplates": {
"entries": {
"golden_chestplate": 0.2,
"chainmail_chestplate": 0.3
},
"defaultItem": "air"
},
"wardrobeChestplates": {
"entries": {
"leather_chestplate": 0.4,
"chainmail_chestplate": 0.2
},
"defaultItem": "air"
},
"armoryLeggings": {
"entries": {
"chainmail_leggings": 0.3,
"golden_leggings": 0.2
},
"defaultItem": "air"
},
"wardrobeLeggings": {
"entries": {
"chainmail_leggings": 0.2,
"leather_leggings": 0.4
},
"defaultItem": "air"
},
"armoryBoots": {
"entries": {
"golden_boots": 0.2,
"chainmail_boots": 0.3
},
"defaultItem": "air"
},
"wardrobeBoots": {
"entries": {
"chainmail_boots": 0.2,
"leather_boots": 0.4
},
"defaultItem": "air"
}
}

View file

@ -0,0 +1,31 @@
{
"armouryItems": {
"entries": {
"shield": 0.1,
"golden_axe": 0.1,
"bow": 0.1,
"arrow": 0.05,
"golden_sword": 0.1,
"stone_axe": 0.05,
"name_tag": 0.05,
"stone_sword": 0.05
},
"defaultItem": "air"
},
"storageItems": {
"entries": {
"bread": 0.2,
"honey_bottle": 0.1,
"rabbit_foot": 0.01,
"melon_seeds": 0.025,
"potato": 0.2,
"cookie": 0.1,
"pumpkin_seeds": 0.025,
"beetroot_seeds": 0.025,
"cake": 0.1,
"slime_ball": 0.05,
"wheat_seeds": 0.025
},
"defaultItem": "air"
}
}

View file

@ -0,0 +1,16 @@
[betterDungeons.general]
enableHeads = true
removeVanillaDungeons = true
enableNetherBlocks = true
[betterDungeons.zombieDungeon]
zombieDungeonMaxSurfaceStaircaseLength = 20
[betterDungeons.smallDungeon]
bannerMaxCount = 2
chestMinCount = 1
chestMaxCount = 2
enableOreProps = true
[betterDungeons.smallNetherDungeon]
enabled = true
witherSkeletonsDropWitherSkulls = true
blazesDropBlazeRods = true
bannerMaxCount = 2

View file

@ -0,0 +1,28 @@
minY = -55
maxY = 30
disableVanillaMineshafts = true
[spawnRates]
lanternSpawnRate = 0.0067
torchSpawnRate = 0.02
workstationSpawnRate = 0.025
workstationDungeonSpawnRate = 0.25
smallShaftSpawnRate = 0.07
cobwebSpawnRate = 0.15
smallShaftChestMinecartSpawnRate = 0.00125
mainShaftChestMinecartSpawnRate = 0.05
smallShaftTntMinecartSpawnRate = 0.0024999999441206455
mainShaftTntMinecartSpawnRate = 0.0024999999441206455
zombieVillagerRoomSpawnChance = 2
smallShaftPieceChainLength = 9
[ores]
enabled = true
cobble = 50
coal = 20
iron = 9
redstone = 7
gold = 7
lapis = 3
emerald = 3
diamond = 1

View file

@ -0,0 +1,2 @@
[general]
disableVanillaMonuments = false

View file

@ -0,0 +1,20 @@
{
"formatVersion": 1,
"enabled": true,
"version": {
"name": "1.19.2-Fabric-2.2.1",
"size": 1015300,
"fileName": "YungsBetterDesertTemples-1.19.2-Fabric-2.2.1.jar",
"downloadUrl": "https://cdn.modrinth.com/data/XNlO7sBv/versions/L4h3G4u8/YungsBetterDesertTemples-1.19.2-Fabric-2.2.1.jar",
"hashes": {
"sha1": "4eb0c721127ba14c79f25d029ba34169471da923",
"sha512": "8509d9b863ac580c3038fae8be2dd9378517f2ef5801542eb643245be820a8876e4e22225fd8a030e788702e4f0fbcfe3ca007392eea08d10a7ec7157e3ac587"
}
},
"source": {
"type": "modrinth",
"modId": "XNlO7sBv",
"versionId": "L4h3G4u8",
"ignoreUpdates": false
}
}

View file

@ -0,0 +1,20 @@
{
"formatVersion": 1,
"enabled": true,
"version": {
"name": "1.19.2-Fabric-3.2.1",
"size": 1162780,
"fileName": "YungsBetterDungeons-1.19.2-Fabric-3.2.1.jar",
"downloadUrl": "https://cdn.modrinth.com/data/o1C1Dkj5/versions/XOk0yK9M/YungsBetterDungeons-1.19.2-Fabric-3.2.1.jar",
"hashes": {
"sha1": "09ac081d1c002a984ecebf2d05bbfad741aa57e5",
"sha512": "b58ec8addc5d94fb551e90f461c428a65339617baba0691e23e740481cc40723599a37f59b7ef244b8859a786372ceacdd2ca2a0919e0eebb788a2e10a86553c"
}
},
"source": {
"type": "modrinth",
"modId": "o1C1Dkj5",
"versionId": "XOk0yK9M",
"ignoreUpdates": false
}
}

View file

@ -0,0 +1,20 @@
{
"formatVersion": 1,
"enabled": true,
"version": {
"name": "1.19.2-Fabric-3.2.0",
"size": 278685,
"fileName": "YungsBetterMineshafts-1.19.2-Fabric-3.2.0.jar",
"downloadUrl": "https://cdn.modrinth.com/data/HjmxVlSr/versions/g2waVAZy/YungsBetterMineshafts-1.19.2-Fabric-3.2.0.jar",
"hashes": {
"sha1": "ec5283f283237f090c6ffb1c032370f1c7344c96",
"sha512": "809307e55e4d5c6c9f85dda4c062584023d2b1cf4304a1dc22663e8c6ea966f724175b7b482dc3d8c7bfc861f6c2f2d927721dfd8ec93f1efab84a2e73d66fdd"
}
},
"source": {
"type": "modrinth",
"modId": "HjmxVlSr",
"versionId": "g2waVAZy",
"ignoreUpdates": false
}
}

View file

@ -0,0 +1,20 @@
{
"formatVersion": 1,
"enabled": true,
"version": {
"name": "1.19.2-Fabric-2.1.0",
"size": 1414502,
"fileName": "YungsBetterOceanMonuments-1.19.2-Fabric-2.1.0.jar",
"downloadUrl": "https://cdn.modrinth.com/data/3dT9sgt4/versions/sLd6wlQB/YungsBetterOceanMonuments-1.19.2-Fabric-2.1.0.jar",
"hashes": {
"sha1": "7fe58a1297c56fec6bfb43258e8b14b40de805f9",
"sha512": "b18e5adb2da09637d8982c6a455400550c83121db9564fa3e5a2bb256b3abf048b807d5beb424bdef4f3a0676f3baf3f4ec17a35e5dbcb9e61d88c75d9be008c"
}
},
"source": {
"type": "modrinth",
"modId": "3dT9sgt4",
"versionId": "sLd6wlQB",
"ignoreUpdates": false
}
}