diff --git a/build.gradle b/build.gradle index 9379172..fd53183 100755 --- a/build.gradle +++ b/build.gradle @@ -48,8 +48,8 @@ jar { } remapJar { - archiveVersion = "v${project.version}" - archiveBaseName = "${project.archivesBaseName}-mc${project.minecraft_version}" + archiveVersion = "${project.version}-${project.minecraft_version}" + archiveBaseName = "${project.archivesBaseName}" } // configure the maven publication diff --git a/src/main/resources/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/assets/minecraft/models/block/black_bed_foot.json index d2d9ec8..fab9ac4 100755 --- a/src/main/resources/assets/minecraft/models/block/black_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/black_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/black" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/assets/minecraft/models/block/black_bed_head.json index 2d19d88..0192d51 100755 --- a/src/main/resources/assets/minecraft/models/block/black_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/black_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/black" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json index 4bf486b..ee54d2a 100755 --- a/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/blue_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/blue" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/assets/minecraft/models/block/blue_bed_head.json index a791608..7eb4fdd 100755 --- a/src/main/resources/assets/minecraft/models/block/blue_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/blue_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/blue" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json index 408138c..c25c1e8 100755 --- a/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/brown_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/brown" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/assets/minecraft/models/block/brown_bed_head.json index b36cf76..9e2c740 100755 --- a/src/main/resources/assets/minecraft/models/block/brown_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/brown_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/brown" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json index 64e6d8e..8bca7e6 100755 --- a/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/cyan_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/cyan" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json index d427f61..0834780 100755 --- a/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/cyan_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/cyan" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json index db36920..2d95534 100755 --- a/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/gray_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/gray" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/assets/minecraft/models/block/gray_bed_head.json index f957062..2c28d59 100755 --- a/src/main/resources/assets/minecraft/models/block/gray_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/gray_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/gray" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/assets/minecraft/models/block/green_bed_foot.json index a2b8181..2ef357c 100755 --- a/src/main/resources/assets/minecraft/models/block/green_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/green_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/green" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/assets/minecraft/models/block/green_bed_head.json index 50a92fb..d1eea85 100755 --- a/src/main/resources/assets/minecraft/models/block/green_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/green_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/green" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json index fe104bb..c1c3aff 100755 --- a/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/light_blue_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/light_blue" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json index 59c6c42..a506c9e 100755 --- a/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/light_blue_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/light_blue" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json index 40fbc0a..0bd2178 100755 --- a/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/light_gray_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/light_gray" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json index f0d3dd0..a6c2c0e 100755 --- a/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/light_gray_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/light_gray" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json index 33b5758..5f3e0e8 100755 --- a/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/lime_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/lime" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/assets/minecraft/models/block/lime_bed_head.json index eea49a7..5800df5 100755 --- a/src/main/resources/assets/minecraft/models/block/lime_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/lime_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/lime" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json index 2163ccd..a94e226 100755 --- a/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/magenta_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/magenta" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json index c3c5d6a..e93ff7f 100755 --- a/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/magenta_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/magenta" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json index 860e5cc..3b2e2a7 100755 --- a/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/orange_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/orange" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/assets/minecraft/models/block/orange_bed_head.json index a2ef21a..b11ca05 100755 --- a/src/main/resources/assets/minecraft/models/block/orange_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/orange_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/orange" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json index 4254bf8..40eb130 100755 --- a/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/pink_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/pink" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/assets/minecraft/models/block/pink_bed_head.json index dfb1d79..a5da2d3 100755 --- a/src/main/resources/assets/minecraft/models/block/pink_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/pink_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/pink" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json index 0b77479..7aa0131 100755 --- a/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/purple_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/purple" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/assets/minecraft/models/block/purple_bed_head.json index a288eb0..fec6ffe 100755 --- a/src/main/resources/assets/minecraft/models/block/purple_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/purple_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/purple" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/assets/minecraft/models/block/red_bed_foot.json index 61bc303..cf2f299 100755 --- a/src/main/resources/assets/minecraft/models/block/red_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/red_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/red" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/assets/minecraft/models/block/red_bed_head.json index 62c15be..b57ab3e 100755 --- a/src/main/resources/assets/minecraft/models/block/red_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/red_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/red" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/bed_foot.json b/src/main/resources/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/assets/minecraft/models/block/bed_head.json b/src/main/resources/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/assets/minecraft/models/block/bed_head.json rename to src/main/resources/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/assets/minecraft/models/block/white_bed_foot.json index 928a6aa..edf3a09 100755 --- a/src/main/resources/assets/minecraft/models/block/white_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/white_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/white" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/assets/minecraft/models/block/white_bed_head.json index af20879..3690b5a 100755 --- a/src/main/resources/assets/minecraft/models/block/white_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/white_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/white" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json index 49f4a45..f8c6839 100755 --- a/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json +++ b/src/main/resources/assets/minecraft/models/block/yellow_bed_foot.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_foot", + "parent": "minecraft:block/template_bed_foot", "textures": { "bed": "minecraft:entity/bed/yellow" } -} \ No newline at end of file +} diff --git a/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json index 2ba833d..32b2ae0 100755 --- a/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json +++ b/src/main/resources/assets/minecraft/models/block/yellow_bed_head.json @@ -1,6 +1,6 @@ { - "parent": "minecraft:block/bed_head", + "parent": "minecraft:block/template_bed_head", "textures": { "bed": "minecraft:entity/bed/yellow" } -} \ No newline at end of file +} diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json deleted file mode 100644 index ca72943..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/black_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/black_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json deleted file mode 100644 index c5dd1e4..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json deleted file mode 100644 index 2e65931..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/brown_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/brown_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json deleted file mode 100644 index 9613ebd..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/cyan_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/cyan_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json deleted file mode 100644 index d13bd90..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json deleted file mode 100644 index acf5967..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/green_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/green_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json deleted file mode 100644 index 8b3ccc5..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json deleted file mode 100644 index b5b85c8..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json deleted file mode 100644 index 3fcbf73..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/lime_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/lime_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json deleted file mode 100644 index efe6b0e..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/magenta_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/magenta_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json deleted file mode 100644 index f36c565..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/orange_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/orange_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json deleted file mode 100644 index acea3dd..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/pink_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/pink_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json deleted file mode 100644 index 1bf2b9e..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/purple_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/purple_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json deleted file mode 100644 index 03b3174..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/red_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/red_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json deleted file mode 100644 index ff4fbcb..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/white_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/white_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json deleted file mode 100644 index fee5373..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/yellow_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/yellow_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json deleted file mode 100644 index 35b692f..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json deleted file mode 100644 index 086477e..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json deleted file mode 100644 index 8a642f7..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json deleted file mode 100644 index f017a88..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json deleted file mode 100644 index bb0db84..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json deleted file mode 100644 index 74451f6..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json deleted file mode 100644 index 14dc9c8..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json deleted file mode 100644 index 5749a71..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json deleted file mode 100644 index 5f144d1..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json deleted file mode 100644 index cde7792..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json deleted file mode 100644 index 1cc14f0..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json deleted file mode 100644 index f8f2d7f..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json deleted file mode 100644 index b6f5721..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json deleted file mode 100644 index f2bd05b..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json deleted file mode 100644 index 0d26def..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json deleted file mode 100644 index c3a15bc..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json deleted file mode 100644 index 0cb10dc..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json deleted file mode 100644 index b6d7026..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json deleted file mode 100644 index 4d60ee6..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json deleted file mode 100644 index d4f377a..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json deleted file mode 100644 index 3c5364e..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json deleted file mode 100644 index f1f61de..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json deleted file mode 100644 index 4585799..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json deleted file mode 100644 index c9f5d1a..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json deleted file mode 100644 index b7ae1b8..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json deleted file mode 100644 index d083242..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json deleted file mode 100644 index ab3d156..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json deleted file mode 100644 index cd83383..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json deleted file mode 100644 index ebec614..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json deleted file mode 100644 index 14be526..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json deleted file mode 100644 index 1c85962..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json deleted file mode 100644 index 12720d3..0000000 --- a/src/main/resources/resourcepacks/betterbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/connectedbeds/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json deleted file mode 100644 index ca72943..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/black_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/black_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json deleted file mode 100644 index c5dd1e4..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json deleted file mode 100644 index 2e65931..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/brown_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/brown_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json deleted file mode 100644 index 9613ebd..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/cyan_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/cyan_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json deleted file mode 100644 index d13bd90..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json deleted file mode 100644 index acf5967..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/green_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/green_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json deleted file mode 100644 index 8b3ccc5..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json deleted file mode 100644 index b5b85c8..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json deleted file mode 100644 index 3fcbf73..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/lime_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/lime_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json deleted file mode 100644 index efe6b0e..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/magenta_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/magenta_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json deleted file mode 100644 index f36c565..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/orange_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/orange_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json deleted file mode 100644 index acea3dd..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/pink_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/pink_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json deleted file mode 100644 index 1bf2b9e..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/purple_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/purple_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json deleted file mode 100644 index 03b3174..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/red_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/red_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json deleted file mode 100644 index ff4fbcb..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/white_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/white_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json deleted file mode 100644 index fee5373..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/yellow_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/yellow_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json deleted file mode 100644 index 35b692f..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json deleted file mode 100644 index 086477e..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json deleted file mode 100644 index 8a642f7..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json deleted file mode 100644 index f017a88..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json deleted file mode 100644 index bb0db84..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json deleted file mode 100644 index 74451f6..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json deleted file mode 100644 index 14dc9c8..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json deleted file mode 100644 index 5749a71..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json deleted file mode 100644 index 5f144d1..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json deleted file mode 100644 index cde7792..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json deleted file mode 100644 index 1cc14f0..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json deleted file mode 100644 index f8f2d7f..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json deleted file mode 100644 index b6f5721..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json deleted file mode 100644 index f2bd05b..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json deleted file mode 100644 index 0d26def..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json deleted file mode 100644 index c3a15bc..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json deleted file mode 100644 index 0cb10dc..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json deleted file mode 100644 index b6d7026..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json deleted file mode 100644 index 4d60ee6..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json deleted file mode 100644 index d4f377a..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json deleted file mode 100644 index 3c5364e..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json deleted file mode 100644 index f1f61de..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json deleted file mode 100644 index 4585799..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json deleted file mode 100644 index c9f5d1a..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json deleted file mode 100644 index b7ae1b8..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json deleted file mode 100644 index d083242..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json deleted file mode 100644 index ab3d156..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json deleted file mode 100644 index cd83383..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json deleted file mode 100644 index ebec614..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json deleted file mode 100644 index 14be526..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json deleted file mode 100644 index 1c85962..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json deleted file mode 100644 index 12720d3..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json deleted file mode 100644 index c41de41..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "made by Motschen", - "texture_size": [64, 64], - "textures": { - "0": "entity/bed/lime", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, -8], - "to": [3, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0"} - } - }, - { - "from": [13, 0, -8], - "to": [16, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, - "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, - "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, - "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, - "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0"} - } - }, - { - "from": [0, 3, -8], - "to": [16, 9, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 0]}, - "faces": { - "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, - "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - }, - { - "from": [0, 0, 21], - "to": [3, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, - "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, - "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0"} - } - }, - { - "from": [13, 0, 21], - "to": [16, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, - "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, - "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, - "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0"} - } - }, - { - "from": [0, 3, 8], - "to": [16, 9, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, -2], - "scale": [0.23, 0.23, 0.23] - }, - "firstperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, 0], - "scale": [0.375, 0.375, 0.375] - }, - "ground": { - "translation": [0, 1, 2], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 160, 0], - "translation": [0.25, 1.5, 0], - "scale": [0.5325, 0.5325, 0.5325] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 10, -8] - }, - "fixed": { - "rotation": [270, 0, 0], - "translation": [0, 4, -2], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [0, 1, 2, - { - "name": "bed_head", - "origin": [8, 8, 8], - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json deleted file mode 100644 index 467ae43..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json deleted file mode 100644 index 4a92940..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json deleted file mode 100644 index 19c4064..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json deleted file mode 100644 index fa61dfa..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json deleted file mode 100644 index dd14d31..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json deleted file mode 100644 index b6827c0..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json deleted file mode 100644 index ec1259e..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json deleted file mode 100644 index bc4cd46..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json deleted file mode 100644 index aa55b5f..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json deleted file mode 100644 index 13c2098..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json deleted file mode 100644 index e5106de..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json deleted file mode 100644 index 0e1fcb9..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json deleted file mode 100644 index 7dbd513..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json deleted file mode 100644 index 6a7b1ae..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json deleted file mode 100644 index 1eb3819..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json b/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json deleted file mode 100644 index c5bf97d..0000000 --- a/src/main/resources/resourcepacks/connectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/template_bed_head.json similarity index 97% rename from src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/template_bed_head.json index 27237b6..5434cb7 100755 --- a/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/bed_head.json +++ b/src/main/resources/resourcepacks/fancybeds/assets/minecraft/models/block/template_bed_head.json @@ -63,7 +63,7 @@ "east": {"uv": [1.75, 1.75, 2, 3.25], "rotation": 90, "texture": "#bed"}, "south": {"uv": [1.75, 0.5, 5.25, 0.75], "texture": "#bed"}, "west": {"uv": [5, 1.75, 5.25, 3.25], "rotation": 90, "texture": "#bed"}, - "up": {"uv": [1.75, 1.75, 5.25, 3.25], "texture": "#bed"} + "up": {"uv": [1.75, 1.75, 5.25, 3.25], "rotation": 180, "texture": "#bed"} } } ] diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json deleted file mode 100644 index ca72943..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/black_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/black_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json deleted file mode 100644 index c5dd1e4..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json deleted file mode 100644 index 2e65931..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/brown_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/brown_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json deleted file mode 100644 index 9613ebd..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/cyan_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/cyan_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json deleted file mode 100644 index d13bd90..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json deleted file mode 100644 index acf5967..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/green_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/green_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json deleted file mode 100644 index 8b3ccc5..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json deleted file mode 100644 index b5b85c8..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json deleted file mode 100644 index 3fcbf73..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/lime_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/lime_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json deleted file mode 100644 index efe6b0e..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/magenta_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/magenta_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json deleted file mode 100644 index f36c565..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/orange_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/orange_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json deleted file mode 100644 index acea3dd..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/pink_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/pink_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json deleted file mode 100644 index 1bf2b9e..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/purple_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/purple_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json deleted file mode 100644 index 03b3174..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/red_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/red_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json deleted file mode 100644 index ff4fbcb..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/white_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/white_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json deleted file mode 100644 index fee5373..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/yellow_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/yellow_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json deleted file mode 100644 index 15d9c26..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "credit": "made by Motschen", - "texture_size": [64, 64], - "textures": { - "0": "entity/bed/lime", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, 0], - "to": [3, 3, 3], - "faces": { - "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0"} - } - }, - { - "from": [13, 0, 0], - "to": [16, 3, 3], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 8]}, - "faces": { - "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, - "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, - "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, - "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, - "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0"} - } - }, - { - "from": [0, 3, 0], - "to": [16, 9, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 8]}, - "faces": { - "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, - "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json deleted file mode 100644 index 35b692f..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json deleted file mode 100644 index 086477e..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json deleted file mode 100644 index 8a642f7..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json deleted file mode 100644 index f017a88..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json deleted file mode 100644 index bb0db84..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json deleted file mode 100644 index 74451f6..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json deleted file mode 100644 index 14dc9c8..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json deleted file mode 100644 index 5749a71..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json deleted file mode 100644 index 5f144d1..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json deleted file mode 100644 index cde7792..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json deleted file mode 100644 index 1cc14f0..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json deleted file mode 100644 index f8f2d7f..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json deleted file mode 100644 index b6f5721..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json deleted file mode 100644 index f2bd05b..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json deleted file mode 100644 index 0d26def..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json deleted file mode 100644 index c3a15bc..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json deleted file mode 100644 index 0cb10dc..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json deleted file mode 100644 index b6d7026..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json deleted file mode 100644 index 4d60ee6..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json deleted file mode 100644 index d4f377a..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json deleted file mode 100644 index 3c5364e..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json deleted file mode 100644 index f1f61de..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json deleted file mode 100644 index 4585799..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json deleted file mode 100644 index c9f5d1a..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json deleted file mode 100644 index b7ae1b8..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json deleted file mode 100644 index d083242..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json deleted file mode 100644 index ab3d156..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json deleted file mode 100644 index cd83383..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json deleted file mode 100644 index ebec614..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json deleted file mode 100644 index 14be526..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json deleted file mode 100644 index 1c85962..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json deleted file mode 100644 index 12720d3..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/bed.json deleted file mode 100644 index c41de41..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/bed.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "made by Motschen", - "texture_size": [64, 64], - "textures": { - "0": "entity/bed/lime", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, -8], - "to": [3, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0"} - } - }, - { - "from": [13, 0, -8], - "to": [16, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, - "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, - "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, - "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, - "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0"} - } - }, - { - "from": [0, 3, -8], - "to": [16, 9, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 0]}, - "faces": { - "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, - "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - }, - { - "from": [0, 0, 21], - "to": [3, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, - "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, - "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0"} - } - }, - { - "from": [13, 0, 21], - "to": [16, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, - "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, - "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, - "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0"} - } - }, - { - "from": [0, 3, 8], - "to": [16, 9, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, -2], - "scale": [0.23, 0.23, 0.23] - }, - "firstperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, 0], - "scale": [0.375, 0.375, 0.375] - }, - "ground": { - "translation": [0, 1, 2], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 160, 0], - "translation": [0.25, 1.5, 0], - "scale": [0.5325, 0.5325, 0.5325] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 10, -8] - }, - "fixed": { - "rotation": [270, 0, 0], - "translation": [0, 4, -2], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [0, 1, 2, - { - "name": "bed_head", - "origin": [8, 8, 8], - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/black_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/black_bed.json deleted file mode 100644 index 467ae43..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/black_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json deleted file mode 100644 index 4a92940..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json deleted file mode 100644 index 19c4064..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json deleted file mode 100644 index fa61dfa..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json deleted file mode 100644 index dd14d31..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/green_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/green_bed.json deleted file mode 100644 index b6827c0..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/green_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json deleted file mode 100644 index ec1259e..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json deleted file mode 100644 index bc4cd46..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json deleted file mode 100644 index aa55b5f..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json deleted file mode 100644 index 13c2098..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json deleted file mode 100644 index e5106de..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json deleted file mode 100644 index 0e1fcb9..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json deleted file mode 100644 index 7dbd513..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/red_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/red_bed.json deleted file mode 100644 index 6a7b1ae..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/red_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/white_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/white_bed.json deleted file mode 100644 index 1eb3819..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/white_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json b/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json deleted file mode 100644 index c5bf97d..0000000 --- a/src/main/resources/resourcepacks/fancybedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/black_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/black_bed.json deleted file mode 100644 index ca72943..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/black_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/black_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/black_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/blue_bed.json deleted file mode 100644 index c5dd1e4..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/brown_bed.json deleted file mode 100644 index 2e65931..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/brown_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/brown_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/brown_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/cyan_bed.json deleted file mode 100644 index 9613ebd..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/cyan_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/cyan_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/cyan_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/gray_bed.json deleted file mode 100644 index d13bd90..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/green_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/green_bed.json deleted file mode 100644 index acf5967..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/green_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/green_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/green_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_blue_bed.json deleted file mode 100644 index 8b3ccc5..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_gray_bed.json deleted file mode 100644 index b5b85c8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/light_gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/lime_bed.json deleted file mode 100644 index 3fcbf73..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/lime_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/lime_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/lime_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/magenta_bed.json deleted file mode 100644 index efe6b0e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/magenta_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/magenta_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/magenta_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/orange_bed.json deleted file mode 100644 index f36c565..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/orange_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/orange_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/orange_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/pink_bed.json deleted file mode 100644 index acea3dd..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/pink_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/pink_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/pink_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/purple_bed.json deleted file mode 100644 index 1bf2b9e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/purple_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/purple_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/purple_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/red_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/red_bed.json deleted file mode 100644 index 03b3174..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/red_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/red_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/red_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/white_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/white_bed.json deleted file mode 100644 index ff4fbcb..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/white_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/white_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/white_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/yellow_bed.json deleted file mode 100644 index fee5373..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/blockstates/yellow_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/yellow_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/yellow_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_foot.json deleted file mode 100644 index 35b692f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_head.json deleted file mode 100644 index 086477e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/black_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_foot.json deleted file mode 100644 index 8a642f7..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_head.json deleted file mode 100644 index f017a88..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_foot.json deleted file mode 100644 index bb0db84..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_head.json deleted file mode 100644 index 74451f6..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/brown_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_foot.json deleted file mode 100644 index 14dc9c8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_head.json deleted file mode 100644 index 5749a71..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/cyan_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_foot.json deleted file mode 100644 index 5f144d1..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_head.json deleted file mode 100644 index cde7792..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_foot.json deleted file mode 100644 index 1cc14f0..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_head.json deleted file mode 100644 index f8f2d7f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/green_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_foot.json deleted file mode 100644 index b6f5721..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_head.json deleted file mode 100644 index f2bd05b..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_foot.json deleted file mode 100644 index 0d26def..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_head.json deleted file mode 100644 index c3a15bc..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/light_gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_foot.json deleted file mode 100644 index 0cb10dc..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_head.json deleted file mode 100644 index b6d7026..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/lime_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_foot.json deleted file mode 100644 index 4d60ee6..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_head.json deleted file mode 100644 index d4f377a..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/magenta_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_foot.json deleted file mode 100644 index 3c5364e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_head.json deleted file mode 100644 index f1f61de..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/orange_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_foot.json deleted file mode 100644 index 4585799..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_head.json deleted file mode 100644 index c9f5d1a..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/pink_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_foot.json deleted file mode 100644 index b7ae1b8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_head.json deleted file mode 100644 index d083242..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/purple_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_foot.json deleted file mode 100644 index ab3d156..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_head.json deleted file mode 100644 index cd83383..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/red_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_foot.json deleted file mode 100644 index ebec614..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_head.json deleted file mode 100644 index 14be526..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/white_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_foot.json deleted file mode 100644 index 1c85962..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_head.json deleted file mode 100644 index 12720d3..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/block/yellow_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/bed.json deleted file mode 100644 index b39dc7d..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/bed.json +++ /dev/null @@ -1,123 +0,0 @@ -{ - "credit": "made by Motschen", - "ambientocclusion": false, - "texture_size": [64, 64], - "textures": { - "0": "entity/bed/lime", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, -8], - "to": [3, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0"} - } - }, - { - "from": [13, 0, -8], - "to": [16, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, - "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, - "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, - "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, - "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0"} - } - }, - { - "from": [0, 3, -8], - "to": [16, 9, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 0]}, - "faces": { - "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, - "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - }, - { - "from": [0, 0, 21], - "to": [3, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, - "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, - "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0"} - } - }, - { - "from": [13, 0, 21], - "to": [16, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, - "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, - "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, - "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0"} - } - }, - { - "from": [0, 3, 8], - "to": [16, 9, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, -2], - "scale": [0.23, 0.23, 0.23] - }, - "firstperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, 0], - "scale": [0.375, 0.375, 0.375] - }, - "ground": { - "translation": [0, 1, 2], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 160, 0], - "translation": [0.25, 1.5, 0], - "scale": [0.5325, 0.5325, 0.5325] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 10, -8] - }, - "fixed": { - "rotation": [270, 0, 0], - "translation": [0, 4, -2], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [0, 1, 2, - { - "name": "bed_head", - "origin": [8, 8, 8], - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/black_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/black_bed.json deleted file mode 100644 index 467ae43..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/black_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/blue_bed.json deleted file mode 100644 index 4a92940..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/brown_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/brown_bed.json deleted file mode 100644 index 19c4064..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/brown_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/cyan_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/cyan_bed.json deleted file mode 100644 index fa61dfa..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/cyan_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/gray_bed.json deleted file mode 100644 index dd14d31..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/green_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/green_bed.json deleted file mode 100644 index b6827c0..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/green_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_blue_bed.json deleted file mode 100644 index ec1259e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_gray_bed.json deleted file mode 100644 index bc4cd46..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/light_gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/lime_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/lime_bed.json deleted file mode 100644 index aa55b5f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/lime_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/magenta_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/magenta_bed.json deleted file mode 100644 index 13c2098..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/magenta_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/orange_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/orange_bed.json deleted file mode 100644 index e5106de..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/orange_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/pink_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/pink_bed.json deleted file mode 100644 index 0e1fcb9..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/pink_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/purple_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/purple_bed.json deleted file mode 100644 index 7dbd513..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/purple_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/red_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/red_bed.json deleted file mode 100644 index 6a7b1ae..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/red_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/white_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/white_bed.json deleted file mode 100644 index 1eb3819..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/white_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/yellow_bed.json b/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/yellow_bed.json deleted file mode 100644 index c5bf97d..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbeds/assets/minecraft/models/item/yellow_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json deleted file mode 100644 index ca72943..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/black_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/black_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/black_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/black_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/black_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json deleted file mode 100644 index c5dd1e4..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json deleted file mode 100644 index 2e65931..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/brown_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/brown_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/brown_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/brown_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/brown_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json deleted file mode 100644 index 9613ebd..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/cyan_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/cyan_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/cyan_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/cyan_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/cyan_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json deleted file mode 100644 index d13bd90..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json deleted file mode 100644 index acf5967..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/green_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/green_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/green_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/green_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/green_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json deleted file mode 100644 index 8b3ccc5..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_blue_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_blue_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_blue_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_blue_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_blue_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json deleted file mode 100644 index b5b85c8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/light_gray_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/light_gray_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/light_gray_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/light_gray_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/light_gray_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json deleted file mode 100644 index 3fcbf73..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/lime_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/lime_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/lime_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/lime_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/lime_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json deleted file mode 100644 index efe6b0e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/magenta_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/magenta_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/magenta_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/magenta_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/magenta_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json deleted file mode 100644 index f36c565..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/orange_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/orange_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/orange_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/orange_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/orange_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json deleted file mode 100644 index acea3dd..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/pink_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/pink_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/pink_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/pink_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/pink_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json deleted file mode 100644 index 1bf2b9e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/purple_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/purple_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/purple_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/purple_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/purple_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json deleted file mode 100644 index 03b3174..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/red_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/red_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/red_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/red_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/red_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json deleted file mode 100644 index ff4fbcb..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/white_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/white_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/white_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/white_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/white_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json deleted file mode 100644 index fee5373..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/blockstates/yellow_bed.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "variants": { - "facing=east,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 270 - }, - "facing=north,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 180 - }, - "facing=south,part=head": { - "model": "minecraft:block/yellow_bed_head" - }, - "facing=west,part=head": { - "model": "minecraft:block/yellow_bed_head", - "y": 90 - }, - "facing=east,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 270 - }, - "facing=north,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 180 - }, - "facing=south,part=foot": { - "model": "minecraft:block/yellow_bed_foot" - }, - "facing=west,part=foot": { - "model": "minecraft:block/yellow_bed_foot", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json deleted file mode 100644 index 35b692f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json deleted file mode 100644 index 086477e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/black_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json deleted file mode 100644 index 8a642f7..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json deleted file mode 100644 index f017a88..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json deleted file mode 100644 index bb0db84..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json deleted file mode 100644 index 74451f6..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/brown_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json deleted file mode 100644 index 14dc9c8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json deleted file mode 100644 index 5749a71..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/cyan_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json deleted file mode 100644 index 5f144d1..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json deleted file mode 100644 index cde7792..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json deleted file mode 100644 index 1cc14f0..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json deleted file mode 100644 index f8f2d7f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/green_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json deleted file mode 100644 index b6f5721..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json deleted file mode 100644 index f2bd05b..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_blue_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json deleted file mode 100644 index 0d26def..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json deleted file mode 100644 index c3a15bc..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/light_gray_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json deleted file mode 100644 index 0cb10dc..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json deleted file mode 100644 index b6d7026..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/lime_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json deleted file mode 100644 index 4d60ee6..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json deleted file mode 100644 index d4f377a..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/magenta_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json deleted file mode 100644 index 3c5364e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json deleted file mode 100644 index f1f61de..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/orange_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json deleted file mode 100644 index 4585799..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json deleted file mode 100644 index c9f5d1a..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/pink_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json deleted file mode 100644 index b7ae1b8..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json deleted file mode 100644 index d083242..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/purple_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json deleted file mode 100644 index ab3d156..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json deleted file mode 100644 index cd83383..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/red_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json similarity index 100% rename from src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/bed_foot.json rename to src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_foot.json diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json similarity index 100% rename from src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/bed_head.json rename to src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/template_bed_head.json diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json deleted file mode 100644 index ebec614..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json deleted file mode 100644 index 14be526..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/white_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json deleted file mode 100644 index 1c85962..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_foot.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_foot", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json deleted file mode 100644 index 12720d3..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/block/yellow_bed_head.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:block/bed_head", - "textures": { - "0": "minecraft:entity/bed/yellow" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json deleted file mode 100644 index c41de41..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/bed.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "credit": "made by Motschen", - "texture_size": [64, 64], - "textures": { - "0": "entity/bed/lime", - "particle": "block/oak_planks" - }, - "elements": [ - { - "from": [0, 0, -8], - "to": [3, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 3.75, 13.25, 4.5], "texture": "#0"}, - "east": {"uv": [14.75, 3.75, 15.5, 4.5], "texture": "#0"}, - "south": {"uv": [14, 3.75, 14.75, 4.5], "texture": "#0"}, - "west": {"uv": [13.25, 3.75, 14, 4.5], "texture": "#0"}, - "down": {"uv": [14, 3, 14.75, 3.75], "texture": "#0"} - } - }, - { - "from": [13, 0, -8], - "to": [16, 3, -5], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 0]}, - "faces": { - "north": {"uv": [12.5, 0.75, 13.25, 1.5], "texture": "#0"}, - "east": {"uv": [14.75, 0.75, 15.5, 1.5], "texture": "#0"}, - "south": {"uv": [14, 0.75, 14.75, 1.5], "texture": "#0"}, - "west": {"uv": [13.25, 0.75, 14, 1.5], "texture": "#0"}, - "down": {"uv": [14, 0, 14.75, 0.75], "texture": "#0"} - } - }, - { - "from": [0, 3, -8], - "to": [16, 9, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 0]}, - "faces": { - "north": {"uv": [5.5, 5.5, 9.5, 7], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0, 7, 1.5, 11], "rotation": 270, "texture": "#0"}, - "west": {"uv": [5.5, 7, 7, 11], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 7, 5.5, 11], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - }, - { - "from": [0, 0, 21], - "to": [3, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 5.25, 13.25, 6], "texture": "#0"}, - "east": {"uv": [14.75, 5.25, 15.5, 6], "texture": "#0"}, - "south": {"uv": [14, 5.25, 14.75, 6], "texture": "#0"}, - "west": {"uv": [13.25, 5.25, 14, 6], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 4.5, 14.75, 5.25], "texture": "#0"} - } - }, - { - "from": [13, 0, 21], - "to": [16, 3, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [21, 8, 29]}, - "faces": { - "north": {"uv": [12.5, 2.25, 13.25, 3], "texture": "#0"}, - "east": {"uv": [14.75, 2.25, 15.5, 3], "texture": "#0"}, - "south": {"uv": [14, 2.25, 14.75, 3], "texture": "#0"}, - "west": {"uv": [13.25, 2.25, 14, 3], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "down": {"uv": [14, 1.5, 14.75, 2.25], "texture": "#0"} - } - }, - { - "from": [0, 3, 8], - "to": [16, 9, 24], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 16]}, - "faces": { - "north": {"uv": [0, 0, 0, 0], "texture": "#0"}, - "east": {"uv": [0, 1.5, 1.5, 5.5], "rotation": 270, "texture": "#0"}, - "south": {"uv": [1.5, 0, 5.5, 1.5], "rotation": 180, "texture": "#0"}, - "west": {"uv": [5.5, 1.5, 7, 5.5], "rotation": 90, "texture": "#0"}, - "up": {"uv": [1.5, 1.5, 5.5, 5.5], "rotation": 180, "texture": "#0"}, - "down": {"uv": [7, 7, 11, 11], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, -2], - "scale": [0.23, 0.23, 0.23] - }, - "firstperson_righthand": { - "rotation": [30, 160, 0], - "translation": [0, 3, 0], - "scale": [0.375, 0.375, 0.375] - }, - "ground": { - "translation": [0, 1, 2], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 160, 0], - "translation": [0.25, 1.5, 0], - "scale": [0.5325, 0.5325, 0.5325] - }, - "head": { - "rotation": [0, 180, 0], - "translation": [0, 10, -8] - }, - "fixed": { - "rotation": [270, 0, 0], - "translation": [0, 4, -2], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [0, 1, 2, - { - "name": "bed_head", - "origin": [8, 8, 8], - "children": [3, 4, 5] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json deleted file mode 100644 index 467ae43..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/black_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/black" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json deleted file mode 100644 index 4a92940..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json deleted file mode 100644 index 19c4064..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/brown_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/brown" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json deleted file mode 100644 index fa61dfa..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/cyan_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/cyan" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json deleted file mode 100644 index dd14d31..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json deleted file mode 100644 index b6827c0..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/green_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/green" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json deleted file mode 100644 index ec1259e..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_blue_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_blue" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json deleted file mode 100644 index bc4cd46..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/light_gray_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/light_gray" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json deleted file mode 100644 index aa55b5f..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/lime_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/lime" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json deleted file mode 100644 index 13c2098..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/magenta_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/magenta" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json deleted file mode 100644 index e5106de..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/orange_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/orange" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json deleted file mode 100644 index 0e1fcb9..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/pink_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/pink" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json deleted file mode 100644 index 7dbd513..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/purple_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/purple" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json deleted file mode 100644 index 6a7b1ae..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/red_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/red" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json deleted file mode 100644 index 1eb3819..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/white_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/white" - } -} \ No newline at end of file diff --git a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json b/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json deleted file mode 100644 index c5bf97d..0000000 --- a/src/main/resources/resourcepacks/fancyconnectedbedswithsmoothlightning/assets/minecraft/models/item/yellow_bed.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "minecraft:item/bed", - "textures": { - "0": "entity/bed/yellow" - } -} \ No newline at end of file