From d527ba0eb68a5a2f83cfe55c5371b2cc03779aae Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Sun, 14 May 2017 22:13:00 +0200 Subject: [PATCH] Continuing adding chests as json and no dependencies. --- resources/loot_tables/igloo_chest.json | 93 ++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 resources/loot_tables/igloo_chest.json diff --git a/resources/loot_tables/igloo_chest.json b/resources/loot_tables/igloo_chest.json new file mode 100644 index 0000000..056d21b --- /dev/null +++ b/resources/loot_tables/igloo_chest.json @@ -0,0 +1,93 @@ +{ + "pools": [ + { + "rolls": { + "min": 2, + "max": 8 + }, + "entries": [ + { + "type": "item", + "name": "minecraft:apple", + "weight": 15, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:coal", + "weight": 15, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 4 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:gold_nugget", + "weight": 10, + "functions": [ + { + "function": "minecraft:set_count", + "count": { + "min": 1, + "max": 3 + } + } + ] + }, + { + "type": "item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "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:golden_apple", + "weight": 1 + } + ] + } + ] +}