上传第一版自动更新包
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
######################################
|
||||
# armorstands.json #
|
||||
######################################
|
||||
This file contains ItemRandomizers describing the probability distribution of armor on armor stands.
|
||||
Armor stands spawn in armory rooms and wardrobe rooms.
|
||||
For information on ItemRandomizers, see the bottom of this README.
|
||||
######################################
|
||||
# itemframes.json #
|
||||
######################################
|
||||
This file contains ItemRandomizers describing the probability distribution of items in item frames.
|
||||
Item frames only spawn in food storage rooms and armoury rooms.
|
||||
For information on ItemRandomizers, see the bottom of this README.
|
||||
######################################
|
||||
# ItemRandomizers #
|
||||
######################################
|
||||
Describes a set of items and the probability of each item being chosen.
|
||||
- entries: An object where each entry's key is a item, and each value is that item's probability of being chosen.
|
||||
The total sum of all probabilities SHOULD NOT exceed 1.0!
|
||||
- defaultItem: The item 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 defaultItem being selected.
|
||||
Here's an example ItemRandomizer:
|
||||
"entries": {
|
||||
"minecraft:stone_axe": 0.25,
|
||||
"minecraft:shield": 0.2,
|
||||
"minecraft:air": 0.1
|
||||
},
|
||||
"defaultItem": "minecraft:iron_axe"
|
||||
For each item, this randomizer has a 25% chance of returning a stone axe, 20% chance of choosing a shield,
|
||||
10% chance of choosing air (nothing), and a 100 - (25 + 20 + 10) = 45% chance of choosing an iron axe (since it's the default item).
|
||||
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"armoryHelmets": {
|
||||
"entries": {
|
||||
"minecraft:golden_helmet": 0.2,
|
||||
"minecraft:chainmail_helmet": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"wardrobeHelmets": {
|
||||
"entries": {
|
||||
"minecraft:leather_helmet": 0.4,
|
||||
"minecraft:chainmail_helmet": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"armoryChestplates": {
|
||||
"entries": {
|
||||
"minecraft:golden_chestplate": 0.2,
|
||||
"minecraft:chainmail_chestplate": 0.3
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"wardrobeChestplates": {
|
||||
"entries": {
|
||||
"minecraft:leather_chestplate": 0.4,
|
||||
"minecraft:chainmail_chestplate": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"armoryLeggings": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_leggings": 0.3,
|
||||
"minecraft:golden_leggings": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"wardrobeLeggings": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_leggings": 0.2,
|
||||
"minecraft:leather_leggings": 0.4
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"armoryBoots": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_boots": 0.3,
|
||||
"minecraft:golden_boots": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"wardrobeBoots": {
|
||||
"entries": {
|
||||
"minecraft:chainmail_boots": 0.2,
|
||||
"minecraft:leather_boots": 0.4
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"armouryItems": {
|
||||
"entries": {
|
||||
"minecraft:golden_sword": 0.1,
|
||||
"minecraft:stone_sword": 0.05,
|
||||
"minecraft:bow": 0.1,
|
||||
"minecraft:shield": 0.1,
|
||||
"minecraft:stone_axe": 0.05,
|
||||
"minecraft:golden_axe": 0.1,
|
||||
"minecraft:name_tag": 0.05,
|
||||
"minecraft:arrow": 0.05
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
},
|
||||
"storageItems": {
|
||||
"entries": {
|
||||
"minecraft:cake": 0.1,
|
||||
"minecraft:beetroot_seeds": 0.025,
|
||||
"minecraft:pumpkin_seeds": 0.025,
|
||||
"minecraft:melon_seeds": 0.025,
|
||||
"minecraft:bread": 0.2,
|
||||
"minecraft:slime_ball": 0.05,
|
||||
"minecraft:wheat_seeds": 0.025,
|
||||
"minecraft:honey_bottle": 0.1,
|
||||
"minecraft:cookie": 0.1,
|
||||
"minecraft:rabbit_foot": 0.01,
|
||||
"minecraft:potato": 0.2
|
||||
},
|
||||
"defaultItem": "minecraft:air"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user