From 65a3cfbc5de4287819846c2612ffaf3dc5b27842 Mon Sep 17 00:00:00 2001 From: Supernoob <79205494+SuperNoobYT@users.noreply.github.com> Date: Mon, 26 Jun 2023 00:34:01 +0200 Subject: [PATCH] Updated ressources pack to 1.20 Updated mcmeta Added Relic disc to round discs --- .../resourcepacks/coloredwaterbucket/pack.mcmeta | 2 +- .../resourcepacks/fancyfurnace/pack.mcmeta | 2 +- .../resourcepacks/nobrewingbottles/pack.mcmeta | 2 +- .../minecraft/models/item/music_disc_relic.json | 15 +++++++++++++++ .../models/item/music_disc_relic_round.json | 6 ++++++ .../resourcepacks/rounddiscs/pack.mcmeta | 2 +- 6 files changed, 25 insertions(+), 4 deletions(-) create mode 100644 common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic.json create mode 100644 common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic_round.json diff --git a/common/src/main/resources/resourcepacks/coloredwaterbucket/pack.mcmeta b/common/src/main/resources/resourcepacks/coloredwaterbucket/pack.mcmeta index b7e3573..fa956fa 100755 --- a/common/src/main/resources/resourcepacks/coloredwaterbucket/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/coloredwaterbucket/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "pack_format": 9, + "pack_format": 15, "description": "§2Makes the water bucket respect biome colors" } } diff --git a/common/src/main/resources/resourcepacks/fancyfurnace/pack.mcmeta b/common/src/main/resources/resourcepacks/fancyfurnace/pack.mcmeta index 366e60b..9bd4156 100755 --- a/common/src/main/resources/resourcepacks/fancyfurnace/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/fancyfurnace/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "pack_format": 9, + "pack_format": 15, "description": "§2Changes the model of the furnace to be 3D" } } diff --git a/common/src/main/resources/resourcepacks/nobrewingbottles/pack.mcmeta b/common/src/main/resources/resourcepacks/nobrewingbottles/pack.mcmeta index f8c5c6e..4f2a41a 100755 --- a/common/src/main/resources/resourcepacks/nobrewingbottles/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/nobrewingbottles/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "pack_format": 9, + "pack_format": 15, "description": "§2Removes the bottles from the brewing stand" } } diff --git a/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic.json b/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic.json new file mode 100644 index 0000000..323afdc --- /dev/null +++ b/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic.json @@ -0,0 +1,15 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "minecraft:item/music_disc_relic" + }, + + "overrides": [ + { + "predicate": { + "round": 1 + }, + "model": "minecraft:item/music_disc_relic_round" + } + ] +} diff --git a/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic_round.json b/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic_round.json new file mode 100644 index 0000000..7ffd2da --- /dev/null +++ b/common/src/main/resources/resourcepacks/rounddiscs/assets/minecraft/models/item/music_disc_relic_round.json @@ -0,0 +1,6 @@ +{ + "parent": "visualoverhaul:item/round_disc", + "textures": { + "0": "minecraft:item/music_disc_relic" + } +} diff --git a/common/src/main/resources/resourcepacks/rounddiscs/pack.mcmeta b/common/src/main/resources/resourcepacks/rounddiscs/pack.mcmeta index c149222..2681ce0 100755 --- a/common/src/main/resources/resourcepacks/rounddiscs/pack.mcmeta +++ b/common/src/main/resources/resourcepacks/rounddiscs/pack.mcmeta @@ -1,6 +1,6 @@ { "pack": { - "pack_format": 9, + "pack_format": 15, "description": "§2Makes the spinning discs on Jukeboxes round" } }