Initial commit

This commit is contained in:
2024-11-28 17:00:03 +00:00
commit c0bd808561
11697 changed files with 631986 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
This directory is for a few additional options for YUNG's Extras.
Options provided may vary by version.
This directory contains subdirectories for supported versions. The first time you run YUNG's Extras, a version subdirectory will be created if that version supports advanced options.
For example, the first time you use YUNG's Extras for MC 1.16 on Forge, the 'forge-1_16' subdirectory will be created in this folder.
If no subdirectory for your version is created, then that version probably does not support the additional options.
NOTE -- MOST OPTIONS CAN BE FOUND IN A CONFIG FILE OUTSIDE THIS FOLDER!
For example, on Forge 1.16 the file is 'YungsExtras-forge-1_16.toml'.

View File

@@ -0,0 +1,29 @@
######################################
# wishing_wells.json #
######################################
This file contains a BlockSetSelector (see below) describing the probability of a given block being chosen.
These probabilities are used for Wishing Wells, which have
loot deposits at the bottom of them.
######################################
# BlockSetSelectors #
######################################
Describes a set of blockstates and the probability of each blockstate being chosen.
- entries: An object where each entry's key is a blockstate, and each value is that blockstate's probability of being chosen.
The total sum of all probabilities SHOULD NOT exceed 1.0!
- defaultBlock: The blockstate used for any leftover probability ranges.
For example, if the total sum of all the probabilities of the entries is 0.6, then
there is a 0.4 chance of the defaultBlock being selected.
Here's an example block selector:
"entries": {
"minecraft:cobblestone": 0.25,
"minecraft:air": 0.2,
"minecraft:stone_bricks": 0.1
},
"defaultBlock": "minecraft:oak_planks"
For each block, this selector has a 25% chance of returning cobblestone, 20% chance of choosing air,
10% chance of choosing stone bricks, and a 100 - (25 + 20 + 10) = 45% chance of choosing oak planks (since it's the default block).

View File

@@ -0,0 +1,10 @@
{
"lootBlockChances": {
"entries": {
"minecraft:emerald_ore": 0.05,
"minecraft:gold_block": 0.01,
"minecraft:gold_ore": 0.5
},
"defaultBlock": "minecraft:sandstone"
}
}