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/underwater_ruin_small.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

91 lines
2.6 KiB
JSON

{
"pools": [
{
"rolls": {
"min": 2,
"max": 8
},
"entries": [
{
"type": "item",
"name": "minecraft:coal",
"weight": 10,
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 1,
"max": 4
}
}
]
},
{
"type": "item",
"name": "minecraft:stone_axe",
"weight": 2
},
{
"type": "item",
"name": "minecraft:rotten_flesh",
"weight": 5
},
{
"type": "item",
"name": "minecraft:emerald",
"weight": 1
},
{
"type": "item",
"name": "minecraft:wheat",
"weight": 10,
"functions": [
{
"function": "minecraft:set_count",
"count": {
"min": 2,
"max": 3
}
}
]
}
]
},
{
"rolls": 1,
"entries": [
{
"type": "item",
"name": "minecraft:leather_chestplate",
"weight": 1
},
{
"type": "item",
"name": "minecraft:golden_helmet",
"weight": 1
},
{
"type": "item",
"name": "minecraft:fishing_rod",
"weight": 5,
"functions": [
{
"function": "enchant_randomly"
}
]
},
{
"type": "item",
"name": "minecraft:map",
"weight": 5,
"functions": [
{
"function": "exploration_map",
"destination": "buriedtreasure"
}
]
}
]
}
]
}