1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-01-18 23:01:58 +00:00
bedrock-samples/behavior_pack/loot_tables/chests/stronghold_crossing.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

131 lines
2.7 KiB
JSON

{
"pools": [
{
"rolls": {
"min": 1,
"max": 4
},
"entries": [
{
"type": "item",
"name": "minecraft:iron_ingot",
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 5
}
}
],
"weight": 50
},
{
"type": "item",
"name": "minecraft:gold_ingot",
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 3
}
}
],
"weight": 25
},
{
"type": "item",
"name": "minecraft:redstone",
"functions": [
{
"function": "set_count",
"count": {
"min": 4,
"max": 9
}
}
],
"weight": 25
},
{
"type": "item",
"name": "minecraft:coal",
"functions": [
{
"function": "set_count",
"count": {
"min": 3,
"max": 8
}
}
],
"weight": 50
},
{
"type": "item",
"name": "minecraft:bread",
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 3
}
}
],
"weight": 75
},
{
"type": "item",
"name": "minecraft:apple",
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 3
}
}
],
"weight": 75
},
{
"type": "item",
"name": "minecraft:iron_pickaxe",
"weight": 5
},
{
"type": "item",
"name": "minecraft:book",
"weight": 6,
"functions": [
{
"function": "enchant_with_levels",
"levels": 30,
"treasure": true
}
]
},
{
"type": "item",
"name": "minecraft:dye",
"weight": 75,
"functions": [
{
"function": "set_count",
"count": {
"min": 1,
"max": 3
}
},
{
"function": "set_data",
"data": 0
}
]
}
]
}
]
}