diff --git a/gradle.properties b/gradle.properties index c035ba4..da14d13 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ loader_version=0.15.1 # Mod Properties - mod_version = 1.20.4.4 + mod_version = 1.20.4.5 maven_group = de.jottyfan.minecraft archives_base_name = quickiefabric diff --git a/src/main/resources/assets/quickiefabric/textures/block/orenethersulphor.png b/src/main/resources/assets/quickiefabric/textures/block/orenethersulphor.png index 6ed0690..a2ea4fc 100644 Binary files a/src/main/resources/assets/quickiefabric/textures/block/orenethersulphor.png and b/src/main/resources/assets/quickiefabric/textures/block/orenethersulphor.png differ diff --git a/src/main/resources/data/quickiefabric/loot_tables/blocks/chestaddition.json b/src/main/resources/data/quickiefabric/loot_tables/blocks/chestaddition.json deleted file mode 100644 index 27743ff..0000000 --- a/src/main/resources/data/quickiefabric/loot_tables/blocks/chestaddition.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "minecraft:chest", - "pools": [ - { - "rolls": 2, - "entries": [ - { - "type": "minecraft:item", - "name": "quickiefabric:quickiepowder" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:speedpowder" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:sulphor" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:salpeter" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:rotten_flesh_stripes" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:quickieingot" - }, - { - "type": "minecraft:item", - "name": "quickiefabric:speedingot" - } - ] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/data/quickiefabric/loot_tables/chests/chestaddition.json b/src/main/resources/data/quickiefabric/loot_tables/chests/chestaddition.json new file mode 100644 index 0000000..4c1c4a0 --- /dev/null +++ b/src/main/resources/data/quickiefabric/loot_tables/chests/chestaddition.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "rolls": { + "min": 1, + "max": 7 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "quickiefabric:quickiepowder", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.1 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:speedpowder", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.4 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:sulphor", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.6 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:salpeter", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.8 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:rotten_flesh_stripes", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.7 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:quickieingot", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + }, + { + "type": "minecraft:item", + "name": "quickiefabric:speedingot", + "conditions": [ + { + "condition": "minecraft:random_chance", + "chance": 0.5 + } + ] + } + ] + } + ] +} \ No newline at end of file