push the first version of package.
This commit is contained in:
8
overrides/config/betterstrongholds/README.txt
Normal file
8
overrides/config/betterstrongholds/README.txt
Normal file
@@ -0,0 +1,8 @@
|
||||
This directory is for a few additional options for YUNG's Better Strongholds.
|
||||
Options provided may vary by version.
|
||||
This directory contains subdirectories for supported versions. The first time you run Better Strongholds, a version subdirectory will be created if that version supports advanced options.
|
||||
For example, the first time you use Better Strongholds for MC 1.21 on NeoForge, the 'neoforge-1_21' 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 NeoForge 1.21 the file is 'betterstrongholds-neoforge-1_21.toml'.
|
||||
62
overrides/config/betterstrongholds/neoforge-1_21/README.txt
Normal file
62
overrides/config/betterstrongholds/neoforge-1_21/README.txt
Normal file
@@ -0,0 +1,62 @@
|
||||
######################################
|
||||
# ores.json #
|
||||
######################################
|
||||
|
||||
This file contains a BlockSetSelector (see below) describing the probability of a given ore being chosen.
|
||||
These probabilities are used in treasure rooms in the stronghold, in which
|
||||
piles of ore have a chance of spawning.
|
||||
For information on BlockSetSelectors, see the bottom of this README.
|
||||
|
||||
######################################
|
||||
# rareblocks.json #
|
||||
######################################
|
||||
|
||||
This file contains a BlockSetSelector describing the probability of a given block being chosen.
|
||||
These probabilities are used in grand libraries, in which
|
||||
two rare blocks will spawn.
|
||||
For information on BlockSetSelectors, see the bottom of this README.
|
||||
|
||||
######################################
|
||||
# armorstands.json #
|
||||
######################################
|
||||
|
||||
This file contains ItemSetSelectors describing the probability distribution of armor on armor stands.
|
||||
Common armor stands spawn in Armoury rooms, while Rare ones are only available in the rare Commander rooms.
|
||||
For information on ItemSetSelectors, see the bottom of this README.
|
||||
|
||||
######################################
|
||||
# itemframes.json #
|
||||
######################################
|
||||
|
||||
This file contains ItemSetSelectors describing the probability distribution of items in item frames.
|
||||
Item frames only spawn in storage rooms and armoury rooms.
|
||||
For information on ItemSetSelectors, see the bottom of this README.
|
||||
|
||||
######################################
|
||||
# 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).
|
||||
|
||||
######################################
|
||||
# ItemSetSelectors #
|
||||
######################################
|
||||
|
||||
Describes a set of items and the probability of each item being chosen.
|
||||
Works the same as BlockSetSelectors, but with items instead of blockstates.
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"commonHelmets": {
|
||||
"entries": {
|
||||
"minecraft:leather_helmet": 0.1,
|
||||
"minecraft:iron_helmet": 0.3,
|
||||
"minecraft:chainmail_helmet": 0.3,
|
||||
"minecraft:carved_pumpkin": 0.01
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"rareHelmets": {
|
||||
"entries": {
|
||||
"minecraft:diamond_helmet": 0.3,
|
||||
"minecraft:carved_pumpkin": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"commonChestplates": {
|
||||
"entries": {
|
||||
"minecraft:iron_chestplate": 0.3,
|
||||
"minecraft:leather_chestplate": 0.1,
|
||||
"minecraft:chainmail_chestplate": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"rareChestplates": {
|
||||
"entries": {
|
||||
"minecraft:diamond_chestplate": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"commonLeggings": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_leggings": 0.3,
|
||||
"minecraft:leather_leggings": 0.1,
|
||||
"minecraft:iron_leggings": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"rareLeggings": {
|
||||
"entries": {
|
||||
"minecraft:diamond_leggings": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"commonBoots": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_boots": 0.3,
|
||||
"minecraft:iron_boots": 0.3,
|
||||
"minecraft:leather_boots": 0.1
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"rareBoots": {
|
||||
"entries": {
|
||||
"minecraft:diamond_boots": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
{
|
||||
"armouryItems": {
|
||||
"entries": {
|
||||
"minecraft:golden_sword": 0.05,
|
||||
"minecraft:stone_sword": 0.05,
|
||||
"minecraft:iron_sword": 0.1,
|
||||
"minecraft:bow": 0.1,
|
||||
"minecraft:shield": 0.1,
|
||||
"minecraft:stone_axe": 0.05,
|
||||
"minecraft:iron_axe": 0.1,
|
||||
"minecraft:golden_axe": 0.05,
|
||||
"minecraft:name_tag": 0.05,
|
||||
"minecraft:arrow": 0.05
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"storageItems": {
|
||||
"entries": {
|
||||
"minecraft:cake": 0.05,
|
||||
"minecraft:beetroot_seeds": 0.025,
|
||||
"minecraft:pumpkin_seeds": 0.025,
|
||||
"minecraft:melon_seeds": 0.025,
|
||||
"minecraft:paper": 0.25,
|
||||
"minecraft:lead": 0.05,
|
||||
"minecraft:map": 0.25,
|
||||
"minecraft:slime_ball": 0.05,
|
||||
"minecraft:wheat_seeds": 0.025,
|
||||
"minecraft:compass": 0.05,
|
||||
"minecraft:rabbit_foot": 0.01,
|
||||
"minecraft:flint": 0.05
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
}
|
||||
}
|
||||
14
overrides/config/betterstrongholds/neoforge-1_21/ores.json
Normal file
14
overrides/config/betterstrongholds/neoforge-1_21/ores.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"oreChances": {
|
||||
"entries": {
|
||||
"minecraft:diamond_ore": 0.05,
|
||||
"minecraft:iron_ore": 0.2,
|
||||
"minecraft:coal_ore": 0.2,
|
||||
"minecraft:lapis_ore": 0.15,
|
||||
"minecraft:emerald_ore": 0.05,
|
||||
"minecraft:redstone_ore[lit=false]": 0.15,
|
||||
"minecraft:gold_ore": 0.2
|
||||
},
|
||||
"defaultBlock": "minecraft:coal_ore"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"blockChances": {
|
||||
"entries": {
|
||||
"minecraft:iron_block": 0.3,
|
||||
"minecraft:quartz_block": 0.3,
|
||||
"minecraft:gold_block": 0.3,
|
||||
"minecraft:diamond_block": 0.1
|
||||
},
|
||||
"defaultBlock": "minecraft:iron_block"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user