Port loot tables

This commit is contained in:
Sergeant Acoustic 2026-01-24 02:50:56 +00:00
parent 8381362396
commit c7e5508fda
30 changed files with 3832 additions and 0 deletions

View file

@ -0,0 +1,69 @@
{
"type": "minecraft:archaeology",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:arms_up_pottery_sherd",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:brewer_pottery_sherd",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:brick"
},
{
"type": "minecraft:item",
"name": "minecraft:emerald"
},
{
"type": "minecraft:item",
"name": "minecraft:stick"
},
{
"type": "minecraft:item",
"functions": [
{
"effects": [
{
"type": "minecraft:night_vision",
"duration": {
"type": "minecraft:uniform",
"max": 10.0,
"min": 7.0
}
},
{
"type": "minecraft:jump_boost",
"duration": {
"type": "minecraft:uniform",
"max": 10.0,
"min": 7.0
}
},
{
"type": "minecraft:saturation",
"duration": {
"type": "minecraft:uniform",
"max": 10.0,
"min": 7.0
}
}
],
"function": "minecraft:set_stew_effect"
}
],
"name": "minecraft:suspicious_stew"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:archaeology/desert_well"
}

View file

@ -0,0 +1,75 @@
{
"type": "minecraft:archaeology",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:blade_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:explorer_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:mourner_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:plenty_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:iron_axe"
},
{
"type": "minecraft:item",
"name": "minecraft:stone_axe",
"functions":[{
"function": "enchant_with_levels",
"treasure": true,
"levels": 15
}]
},
{
"type": "minecraft:item",
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:bowl",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:iron_pickaxe",
"weight": 1
},
{
"type": "minecraft:item",
"name": "minecraft:stone_pickaxe",
"functions":[{
"function": "enchant_with_levels",
"treasure": true,
"levels": 15
}]
},
{
"type": "minecraft:item",
"name": "minecraft:coal",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:iron_ingot",
"weight": 2
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:archaeology/ocean_ruin_cold"
}

View file

@ -0,0 +1,74 @@
{
"type": "minecraft:archaeology",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:angler_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:shelter_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:snort_pottery_sherd"
},
{
"type": "minecraft:item",
"name": "minecraft:sniffer_egg"
},
{
"type": "minecraft:item",
"name": "minecraft:stone_sword",
"functions":[{
"function": "minecraft:enchant_with_levels",
"levels": 15,
"treasure": true
}]
},
{
"type": "minecraft:item",
"name": "minecraft:iron_sword"
},
{
"type": "minecraft:item",
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:wheat",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:stone_shovel",
"functions":[{
"function": "minecraft:enchant_with_levels",
"levels": 15,
"treasure": true
}]
},
{
"type": "minecraft:item",
"name": "minecraft:iron_shovel"
},
{
"type": "minecraft:item",
"name": "minecraft:coal",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:iron_ingot",
"weight": 2
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:archaeology/ocean_ruin_warm"
}

View file

@ -0,0 +1,48 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {"min": 1}
}
]
}
}
}
],
"name": "minecraft:ancient_debris"
},
{
"type": "minecraft:item",
"functions": [
{
"enchantment": "minecraft:fortune",
"formula": "minecraft:ore_drops",
"function": "minecraft:apply_bonus"
},
{"function": "minecraft:explosion_decay"}
],
"name": "minecraft:netherite_scrap"
}
]
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:blocks/ancient_debris"
}

View file

@ -0,0 +1,37 @@
{
"type": "minecraft:block",
"pools": [{
"rolls": 1,
"entries": [{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"name": "minecraft:gravel",
"conditions": [{
"condition": "minecraft:match_tool",
"predicate": {"predicates": {
"enchantments": [{"enchantments": "minecraft:silk_touch", "levels": {"min": 1}}]
}}
}]
},
{
"type": "minecraft:item",
"name": "minecraft:gravel",
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{"condition": "minecraft:match_tool", "predicate": {"items": "#minecraft:shovels"}}
]
},
{"condition": "minecraft:random_chance", "chance": 0.5}
]
},
{"type": "minecraft:item", "name": "minecraft:flint"}
],
"conditions": [{"condition": "minecraft:survives_explosion"}]
}]
}],
"random_sequence": "minecraft:blocks/gravel"
}

View file

@ -0,0 +1,136 @@
{
"type": "minecraft:block",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:alternatives",
"children": [
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:match_tool",
"predicate": {
"items": "minecraft:shears"
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
]
}
],
"name": "minecraft:jungle_leaves"
},
{
"type": "minecraft:item",
"conditions": [
{
"condition": "minecraft:survives_explosion"
},
{
"chances": [
0.05,
0.0625,
0.083333336,
0.1
],
"condition": "minecraft:table_bonus",
"enchantment": "minecraft:fortune"
}
],
"name": "minecraft:jungle_sapling"
}
]
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:inverted",
"term": {
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:match_tool",
"predicate": {
"items": "minecraft:shears"
}
},
{
"condition": "minecraft:match_tool",
"predicate": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "minecraft:silk_touch",
"levels": {
"min": 1
}
}
]
}
}
}
]
}
}
],
"entries": [
{
"type": "minecraft:item",
"conditions": [
{
"chances": [
0.02,
0.022222223,
0.025,
0.033333335,
0.1
],
"condition": "minecraft:table_bonus",
"enchantment": "minecraft:fortune"
}
],
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
},
{
"function": "minecraft:explosion_decay"
}
],
"name": "minecraft:stick"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:blocks/jungle_leaves"
}

View file

@ -0,0 +1,238 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:apple",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:name_tag",
"weight": 30
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:enchant_randomly",
"options": "#minecraft:on_random_loot"
}
],
"name": "minecraft:book",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:iron_pickaxe",
"weight": 5
},
{
"type": "minecraft:empty",
"weight": 5
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:iron_ingot",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 9.0,
"min": 4.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:amethyst_shard",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 9.0,
"min": 4.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:lapis_lazuli",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gold_ingot",
"weight": 3
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 13.0,
"min": 7.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:coal",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 2.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:cooked_porkchop",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 2.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:firework_rocket",
"weight": 4
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:golden_apple",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:beetroot_soup",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 2.0
}
},
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 4.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:iron_ingot",
"weight": 20
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 4.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gold_nugget",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_chirp",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_mellohi",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_13",
"weight": 7
}
],
"rolls": 3.0
}
],
"random_sequence": "minecraft:chests/abandoned_mineshaft"
}

View file

@ -0,0 +1,123 @@
{
"pools":[{
"rolls": {"min":12,"max":17},
"entries":[
{
"type":"item",
"name":"minecraft:enchanted_golden_apple",
"weight":1
},
{
"type":"item",
"name":"minecraft:recovery_compass",
"weight":1
},
{
"type":"item",
"name":"minecraft:diamond_sword",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_boots",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_horse_armor",
"weight":2
},
{
"type":"item",
"name":"minecraft:music_disc_13",
"weight":1
},
{
"type":"item",
"name":"minecraft:music_disc_cat",
"weight":1
},
{
"type":"item",
"name":"minecraft:music_disc_otherside",
"weight":1
},
{
"type":"item",
"name":"minecraft:echo_shard",
"weight":4
},
{
"type":"item",
"name":"minecraft:disc_fragment_5",
"weight":5
},
{
"type":"item",
"name":"minecraft:experience_bottle",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":17,"max":22}
}],
"weight":4
},
{
"type":"item",
"name":"minecraft:sculk",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":10,"max":18}
}],
"weight":8
},
{
"type":"item",
"name":"minecraft:sculk_sensor",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":1,"max":3}
}],
"weight":4
},
{
"type":"item",
"name":"minecraft:black_wool",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":8,"max":15}
}],
"weight":6
},
{
"type":"item",
"name":"minecraft:deepslate_bricks",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":8,"max":15}
}],
"weight":7
},
{
"type":"item",
"name":"minecraft:lingering_potion",
"functions":[{
"function":"minecraft:set_potion",
"id":"minecraft:long_swiftness"
}],
"weight":4
}
]
}]
}

View file

@ -0,0 +1,73 @@
{
"pools":[{
"rolls": {"min":4,"max":10},
"entries":[
{
"type":"item",
"name":"minecraft:enchanted_golden_apple",
"weight":1
},
{
"type":"item",
"name":"minecraft:golden_apple",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":2,"max":5}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:golden_carrot",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":7,"max":10}
}],
"weight":3
},
{
"type":"item",
"name":"minecraft:echo_shard",
"weight":4
},
{
"type":"item",
"name":"minecraft:experience_bottle",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":17,"max":22}
}],
"weight":4
},
{
"type":"item",
"name":"minecraft:snowball",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":10,"max":18}
}],
"weight":7
},
{
"type":"item",
"name":"minecraft:sculk_sensor",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":1,"max":3}
}],
"weight":4
},
{
"type":"item",
"name":"minecraft:lingering_potion",
"functions":[{
"function":"minecraft:set_potion",
"id":"minecraft:healing"
}],
"weight":3
}
]
}]
}

View file

@ -0,0 +1,206 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:heart_of_the_sea"
}
],
"rolls": 1
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:iron_ingot",
"weight": 20
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 9,
"min": 5
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gold_nugget",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 3
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:tnt",
"weight": 5
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8,
"min": 5
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 4
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:diamond_horse_armor",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:prismarine_crystals",
"weight": 5
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:leather_chestplate"
},
{
"type": "minecraft:item",
"name": "minecraft:iron_sword"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 1,
"min": 0
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:cooked_cod"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:cooked_salmon"
}
],
"rolls": 2
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:potion"
}
],
"functions": [
{
"function": "minecraft:set_potion",
"id": "minecraft:water_breathing"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 2,
"min": 0
}
}
],
"random_sequence": "minecraft:chests/buried_treasure"
}

View file

@ -0,0 +1,211 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:stone_axe",
"weight": 3
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 17,
"min": 12
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:coal",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 3,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:emerald",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 6,"min": 4},
"function": "minecraft:set_count"
}],
"name": "minecraft:bone",
"weight": 25
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 3,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:spider_eye",
"weight": 25
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 7,"min": 3},
"function": "minecraft:set_count"
}],
"name": "minecraft:rotten_flesh",
"weight": 25
},
{
"type": "minecraft:item",
"name": "minecraft:saddle",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:leather_horse_armor",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_strad",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_mall",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{
"function": "minecraft:enchant_randomly",
"options": "#minecraft:on_random_loot"
}],
"name": "minecraft:book",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:apple",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:golden_carrot",
"weight": 2
},
{
"type": "minecraft:empty",
"weight": 15
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 8,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:bone",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 8,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:gunpowder",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 8,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:rotten_flesh",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 8,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:string",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": {"type": "minecraft:uniform","max": 8,"min": 1},
"function": "minecraft:set_count"
}],
"name": "minecraft:sand",
"weight": 10
}
],
"rolls": 4
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:empty",
"weight": 6
},
{
"type": "minecraft:item",
"functions": [{
"add": false,
"count": 2,
"function": "minecraft:set_count"
}],
"name": "minecraft:dune_armor_trim_smithing_template"
}
],
"rolls": 1
}
],
"random_sequence": "minecraft:chests/desert_pyramid"
}

View file

@ -0,0 +1,132 @@
{
"pools":[{
"rolls": {"min":10,"max":16},
"entries":[
{
"type":"item",
"name":"minecraft:beetroot_seeds",
"weight":1
},
{
"type":"item",
"name":"minecraft:diamond",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":2,"max":7}
}],
"weight":4
},
{
"type":"item",
"name":"minecraft:netherite_scrap",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":1,"max":2}
}],
"weight":1
},
{
"type":"item",
"name":"minecraft:diamond_sword",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_boots",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_chestplate",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_helmet",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_leggings",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_pickaxe",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":25,"max":40}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:diamond_horse_armor",
"weight":2
},
{
"type":"item",
"name":"minecraft:purpur_block",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":10,"max":18}
}],
"weight":12
},
{
"type":"item",
"name":"minecraft:book",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":10,"max":30}
}],
"weight":6
},
{
"type":"item",
"name":"minecraft:phantom_membrane",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":3,"max":9}
}],
"weight":7
},
{
"type":"item",
"name":"minecraft:splash_potion",
"functions":[{
"function":"minecraft:set_potion",
"id":"minecraft:strong_leaping"
}],
"weight":4
}
]
}]
}

View file

@ -0,0 +1,149 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {"type": "minecraft:uniform",
"max": 3,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:golden_hoe",
"weight": 3
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bamboo",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 6,
"min": 4
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bone",
"weight": 20
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7,
"min": 3
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:leather",
"weight": 16
},
{
"type": "minecraft:item",
"name": "minecraft:saddle",
"weight": 1
},
{
"type": "minecraft:item",
"name": "minecraft:leather_horse_armor"
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_cat"
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_wait"
},
{
"type": "minecraft:item",
"functions": [
{
"function": "minecraft:enchant_with_levels",
"levels": 30,
"options": "#minecraft:on_random_loot"
}
],
"name": "minecraft:book"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 6,
"min": 2
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:empty",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": 2,
"function": "minecraft:set_count"
}
],
"name": "minecraft:wild_armor_trim_smithing_template"
}
],
"rolls": 1
}
],
"random_sequence": "minecraft:chests/jungle_temple"
}

View file

@ -0,0 +1,83 @@
{
"pools":[{
"rolls": {"min":19,"max":25},
"entries":[
{
"type":"item",
"name":"minecraft:diamond_sword",
"weight":1
},
{
"type":"item",
"name":"minecraft:obsidian",
"count": {"min":3,"max":5},
"weight":14
},
{
"type":"item",
"name":"minecraft:diamond",
"count": {"min":2,"max":5},
"weight":9
},
{
"type":"item",
"name":"minecraft:golden_horse_armor",
"weight":1
},
{
"type":"item",
"name":"minecraft:rib_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:nether_wart",
"count": {"min":3,"max":14},
"weight":14
},
{
"type":"item",
"name":"minecraft:diamond_chestplate",
"weight":1
},
{
"type":"item",
"name":"minecraft:golden_chestplate",
"functions": [{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":10,"max":30}
}],
"weight":1
},
{
"type":"item",
"name":"minecraft:golden_boots",
"functions":[{
"function":"enchant_with_levels",
"options": "#minecraft:on_random_loot",
"levels": {"min":20,"max":30}
}],
"weight":1
},
{
"type":"item",
"name":"minecraft:fire_charge",
"count": {"min":2,"max":3},
"weight":5
},
{
"type":"item",
"name":"minecraft:blaze_powder",
"count": {"min":2,"max":3},
"weight":3
},
{
"type":"item",
"name":"minecraft:nether_bricks",
"count": {"min":8,"max":19},
"weight":20
}
]
}]
}

View file

@ -0,0 +1,213 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:flint",
"weight": 40
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:basalt",
"weight": 40
},
{
"type": "minecraft:item",
"name": "minecraft:fire_charge",
"weight": 40
},
{
"type": "minecraft:item",
"name": "minecraft:apple",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{"function": "minecraft:enchant_randomly", "options": "#minecraft:on_random_loot"},
{
"function": "minecraft:set_components",
"components": {
"tool": {
"rules": [
{"blocks": "#minecraft:incorrect_for_wooden_tool", "correct_for_drops": false},
{"blocks": "#mineable/pickaxe", "speed": 2.0, "correct_for_drops": true},
{"blocks": "#mineable/axe", "speed": 2.0, "correct_for_drops": true},
{"blocks": "#mineable/shovel", "speed": 2.0, "correct_for_drops": true},
{"blocks": "#mineable/hoe", "speed": 2.0, "correct_for_drops": true}
]
},
"custom_name": "{'text':'Wooden Paxel','italic':false}",
"custom_model_data": 74831
}
}
],
"name": "minecraft:wooden_shovel",
"weight": 35
},
{
"type": "minecraft:item",
"name": "minecraft:stone_axe",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:stone_hoe",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:stone_shovel",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [{"function": "minecraft:enchant_randomly"}],
"options": "#minecraft:on_random_loot",
"name": "minecraft:leather_boots",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{"function": "minecraft:enchant_randomly"}],
"options": "#minecraft:on_random_loot",
"name": "minecraft:leather_chestplate",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{"function": "minecraft:enchant_randomly"}],
"options": "#minecraft:on_random_loot",
"name": "minecraft:leather_helmet",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{"function": "minecraft:enchant_randomly"}],
"options": "#minecraft:on_random_loot",
"name": "minecraft:leather_leggings",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:glistering_melon_slice",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:leather_horse_armor",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:golden_carrot",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:bell"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 11,
"min": 4
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:nether_bricks"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8,
"min": 4
}
}
],
"random_sequence": "minecraft:chests/ruined_portal"
}

View file

@ -0,0 +1,269 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:saddle",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:golden_apple",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:poppy",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_otherside",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_13",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_cat",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:name_tag",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:iron_ingot",
"functions":[{
"function":"minecraft:set_count",
"count":{"type":"minecraft:uniform","min":1,"max":4},
"add":true
}],
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:iron_horse_armor",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:gold_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{"function": "minecraft:enchant_randomly"}],
"options": "#minecraft:on_random_loot",
"name": "minecraft:book",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:iron_ingot",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gold_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:bread",
"weight": 20
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 9,
"min": 3
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:wheat",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:bucket",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:coal",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:melon_slice",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:pumpkin_pie",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:beetroot_soup",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bone",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gunpowder",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:rotten_flesh",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:string",
"weight": 10
}
],
"rolls": 3
}
],
"random_sequence": "minecraft:chests/simple_dungeon"
}

View file

@ -0,0 +1,105 @@
{
"pools":[{
"rolls": 3,
"entries":[
{
"type":"item",
"name":"minecraft:sentry_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:vex_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:wild_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:coast_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:dune_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:wayfinder_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:raiser_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:shaper_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:host_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:ward_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:silence_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:tide_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:snout_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:rib_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:eye_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:spire_armor_trim_smithing_template",
"weight":1
},
{
"type":"item",
"name":"minecraft:phantom_membrane",
"functions":[{
"function":"minecraft:set_count",
"count": {"type":"minecraft:uniform","min":1,"max":3}
}],
"weight":2
},
{
"type":"item",
"name":"minecraft:potion",
"functions":[{
"function":"minecraft:set_potion",
"id":"minecraft:strength"
}],
"weight":1
}
]
}]
}

View file

@ -0,0 +1,56 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 4
},
{
"type": "minecraft:item",
"name": "minecraft:chainmail_helmet"
},
{
"type": "minecraft:item",
"name": "minecraft:emerald"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
}
}
],
"random_sequence": "minecraft:chests/village/village_armorer"
}

View file

@ -0,0 +1,85 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:ink_sac",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:paper",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:redstone",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:stick",
"weight": 5
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
}
}
],
"random_sequence": "minecraft:chests/village/village_cartographer"
}

View file

@ -0,0 +1,128 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:raw_copper"
},
{
"type": "minecraft:item",
"name": "minecraft:dandelion",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:poppy"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:potato",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:apple",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:book"
},
{
"type": "minecraft:item",
"name": "minecraft:feather"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:oak_sapling",
"weight": 5
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_plains_house"
}

View file

@ -0,0 +1,128 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:raw_copper"
},
{
"type": "minecraft:item",
"name": "minecraft:short_grass",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:tall_grass",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:wheat_seeds",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:acacia_sapling",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:saddle"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:torch"
},
{
"type": "minecraft:item",
"name": "minecraft:bucket"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_savanna_house"
}

View file

@ -0,0 +1,161 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:raw_copper"
},
{
"type": "minecraft:item",
"name": "minecraft:fern",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:large_fern",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:potato",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:sweet_berries",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:pumpkin_seeds",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:pumpkin_pie"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:spruce_sapling",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:spruce_sign"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:spruce_log",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_taiga_house"
}

View file

@ -0,0 +1,109 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:redstone",
"weight": 2
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 7
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:rotten_flesh",
"weight": 7
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:blue_orchid"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:emerald"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_temple"
}

View file

@ -0,0 +1,112 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:amethyst_shard"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{
"function": "minecraft:enchant_randomly",
"options": "#minecraft:on_random_loot"
}],
"name": "minecraft:stone_axe"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:stone_pickaxe",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:coal"
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:stick",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:stone_shovel",
"weight": 5
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_toolsmith"
}

View file

@ -0,0 +1,175 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:amethyst_shard",
"weight": 3
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 5.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:copper_ingot",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:golden_carrot",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bread",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 3.0,
"min": 1.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:apple",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:stone_pickaxe",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:stone_sword",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:leather_chestplate",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:leather_helmet",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:leather_leggings",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:leather_boots",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 3.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:basalt",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 7.0,
"min": 3.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:oak_sapling",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:saddle",
"weight": 3
},
{
"type": "minecraft:item",
"name": "minecraft:leather"
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_11"
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_13"
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 8.0,
"min": 3.0
}
}
],
"random_sequence": "minecraft:chests/village/village_weaponsmith"
}

View file

@ -0,0 +1,301 @@
{
"type": "minecraft:chest",
"pools": [
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:lead",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:golden_apple",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:iron_axe",
"weight": 2
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_13",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:music_disc_cat",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:name_tag",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:chainmail_chestplate",
"weight": 10
},
{
"type": "minecraft:item",
"name": "minecraft:golden_hoe",
"weight": 15
},
{
"type": "minecraft:item",
"name": "minecraft:golden_chestplate",
"weight": 5
},
{
"type": "minecraft:item",
"functions": [{
"function": "minecraft:enchant_randomly",
"options": "#minecraft:on_random_loot"
}],
"name": "minecraft:book",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 3,
"min": 1
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:iron_ingot",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gold_ingot",
"weight": 5
},
{
"type": "minecraft:item",
"name": "minecraft:bread",
"weight": 20
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:cookie",
"weight": 20
},
{
"type": "minecraft:item",
"name": "minecraft:bucket",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:redstone",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:coal",
"weight": 15
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:melon_seeds",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:pumpkin_seeds",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 4,
"min": 2
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:beetroot_seeds",
"weight": 10
}
],
"rolls": {
"type": "minecraft:uniform",
"max": 4,
"min": 1
}
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:bone",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:gunpowder",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:golden_carrot",
"weight": 10
},
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 8,
"min": 1
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:string",
"weight": 10
}
],
"rolls": 3
},
{
"bonus_rolls": 0,
"entries": [
{
"type": "minecraft:empty"
},
{
"type": "minecraft:item",
"name": "minecraft:vex_armor_trim_smithing_template"
}
],
"rolls": 1
}
],
"random_sequence": "minecraft:chests/woodland_mansion"
}

View file

@ -0,0 +1,103 @@
{
"type": "minecraft:entity",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 0.0
},
"function": "minecraft:set_count"
},
{
"count": {
"type": "minecraft:uniform",
"max": 1.0,
"min": 0.0
},
"enchantment": "minecraft:looting",
"function": "minecraft:enchanted_count_increase"
}
],
"name": "minecraft:rotten_flesh"
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:killed_by_player"
},
{
"condition": "minecraft:random_chance_with_enchanted_bonus",
"enchanted_chance": {
"type": "minecraft:linear",
"base": 0.035,
"per_level_above_first": 0.01
},
"enchantment": "minecraft:looting",
"unenchanted_chance": 0.025
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:carrot"
},
{
"type": "minecraft:item",
"functions": [
{
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"flags": {
"is_on_fire": true
}
}
},
{
"condition": "minecraft:entity_properties",
"entity": "direct_attacker",
"predicate": {
"equipment": {
"mainhand": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "#minecraft:smelts_loot"
}
]
}
}
}
}
}
]
}
],
"function": "minecraft:furnace_smelt"
}
],
"name": "minecraft:potato"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:entities/husk"
}

View file

@ -0,0 +1,27 @@
{
"type": "minecraft:entity",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 0.0
},
"function": "minecraft:set_count"
}
],
"name": "minecraft:poppy"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:entities/iron_golem"
}

View file

@ -0,0 +1,103 @@
{
"type": "minecraft:entity",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 0.0
},
"function": "minecraft:set_count"
},
{
"count": {
"type": "minecraft:uniform",
"max": 1.0,
"min": 0.0
},
"enchantment": "minecraft:looting",
"function": "minecraft:enchanted_count_increase"
}
],
"name": "minecraft:rotten_flesh"
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:killed_by_player"
},
{
"condition": "minecraft:random_chance_with_enchanted_bonus",
"enchanted_chance": {
"type": "minecraft:linear",
"base": 0.035,
"per_level_above_first": 0.01
},
"enchantment": "minecraft:looting",
"unenchanted_chance": 0.025
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:carrot"
},
{
"type": "minecraft:item",
"functions": [
{
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"flags": {
"is_on_fire": true
}
}
},
{
"condition": "minecraft:entity_properties",
"entity": "direct_attacker",
"predicate": {
"equipment": {
"mainhand": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "#minecraft:smelts_loot"
}
]
}
}
}
}
}
]
}
],
"function": "minecraft:furnace_smelt"
}
],
"name": "minecraft:potato"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:entities/zombie"
}

View file

@ -0,0 +1,103 @@
{
"type": "minecraft:entity",
"pools": [
{
"bonus_rolls": 0.0,
"entries": [
{
"type": "minecraft:item",
"functions": [
{
"add": false,
"count": {
"type": "minecraft:uniform",
"max": 2.0,
"min": 0.0
},
"function": "minecraft:set_count"
},
{
"count": {
"type": "minecraft:uniform",
"max": 1.0,
"min": 0.0
},
"enchantment": "minecraft:looting",
"function": "minecraft:enchanted_count_increase"
}
],
"name": "minecraft:rotten_flesh"
}
],
"rolls": 1.0
},
{
"bonus_rolls": 0.0,
"conditions": [
{
"condition": "minecraft:killed_by_player"
},
{
"condition": "minecraft:random_chance_with_enchanted_bonus",
"enchanted_chance": {
"type": "minecraft:linear",
"base": 0.035,
"per_level_above_first": 0.01
},
"enchantment": "minecraft:looting",
"unenchanted_chance": 0.025
}
],
"entries": [
{
"type": "minecraft:item",
"name": "minecraft:carrot"
},
{
"type": "minecraft:item",
"functions": [
{
"conditions": [
{
"condition": "minecraft:any_of",
"terms": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"flags": {
"is_on_fire": true
}
}
},
{
"condition": "minecraft:entity_properties",
"entity": "direct_attacker",
"predicate": {
"equipment": {
"mainhand": {
"predicates": {
"minecraft:enchantments": [
{
"enchantments": "#minecraft:smelts_loot"
}
]
}
}
}
}
}
]
}
],
"function": "minecraft:furnace_smelt"
}
],
"name": "minecraft:potato"
}
],
"rolls": 1.0
}
],
"random_sequence": "minecraft:entities/zombie_villager"
}