From d3bb7689b5a98607887e819287eeb979a8351736 Mon Sep 17 00:00:00 2001 From: Jonas_Jones <91549607+J-onasJones@users.noreply.github.com> Date: Wed, 5 Apr 2023 03:18:21 +0200 Subject: [PATCH] fixed missing loot tables --- .../nec/loot_tables/blocks/blaze_block.json | 20 +++++++++++++++++++ .../blocks/deepslate_diamond_ore_ore.json | 20 +++++++++++++++++++ .../loot_tables/blocks/diamond_ore_ore.json | 20 +++++++++++++++++++ .../nec/loot_tables/blocks/gun_block.json | 20 +++++++++++++++++++ .../nec/loot_tables/blocks/java_block.json | 20 +++++++++++++++++++ .../nec/loot_tables/blocks/pocket_block.json | 20 +++++++++++++++++++ 6 files changed, 120 insertions(+) create mode 100644 src/main/resources/data/nec/loot_tables/blocks/blaze_block.json create mode 100644 src/main/resources/data/nec/loot_tables/blocks/deepslate_diamond_ore_ore.json create mode 100644 src/main/resources/data/nec/loot_tables/blocks/diamond_ore_ore.json create mode 100644 src/main/resources/data/nec/loot_tables/blocks/gun_block.json create mode 100644 src/main/resources/data/nec/loot_tables/blocks/java_block.json create mode 100644 src/main/resources/data/nec/loot_tables/blocks/pocket_block.json diff --git a/src/main/resources/data/nec/loot_tables/blocks/blaze_block.json b/src/main/resources/data/nec/loot_tables/blocks/blaze_block.json new file mode 100644 index 0000000..9776c16 --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/blaze_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "nec:blaze_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + diff --git a/src/main/resources/data/nec/loot_tables/blocks/deepslate_diamond_ore_ore.json b/src/main/resources/data/nec/loot_tables/blocks/deepslate_diamond_ore_ore.json new file mode 100644 index 0000000..a2923f3 --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/deepslate_diamond_ore_ore.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_diamond_ore" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + diff --git a/src/main/resources/data/nec/loot_tables/blocks/diamond_ore_ore.json b/src/main/resources/data/nec/loot_tables/blocks/diamond_ore_ore.json new file mode 100644 index 0000000..444fd8e --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/diamond_ore_ore.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diamond_ore" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + diff --git a/src/main/resources/data/nec/loot_tables/blocks/gun_block.json b/src/main/resources/data/nec/loot_tables/blocks/gun_block.json new file mode 100644 index 0000000..de764f2 --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/gun_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "nec:gun_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + diff --git a/src/main/resources/data/nec/loot_tables/blocks/java_block.json b/src/main/resources/data/nec/loot_tables/blocks/java_block.json new file mode 100644 index 0000000..56b6267 --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/java_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "nec:java_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + diff --git a/src/main/resources/data/nec/loot_tables/blocks/pocket_block.json b/src/main/resources/data/nec/loot_tables/blocks/pocket_block.json new file mode 100644 index 0000000..5da19a2 --- /dev/null +++ b/src/main/resources/data/nec/loot_tables/blocks/pocket_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "nec:pocket_block" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } +