From 877653ad9b0b4a76614975a236e4ab4bdab3f80e Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 10 Aug 2025 20:59:20 +0100 Subject: [PATCH] finished textures for the mars crops (except the greenhouse ones) --- .../blockstates/amber_root_dead.json | 8 + .../blockstates/amber_root_wild.json | 6 +- .../blockstates/blossom_berry_dead.json | 10 + .../blockstates/blossom_berry_wild.json | 13 +- .../blockstates/bolux_mushroom_dead.json | 10 + .../blockstates/bolux_mushroom_wild.json | 27 +-- .../blockstates/cave_pumpkin_plant_dead.json | 5 + .../blockstates/cave_pumpkin_wild.json | 99 +++++++++ .../blockstates/chorus_mushroom_dead.json | 8 + .../blockstates/chorus_mushroom_wild.json | 6 +- .../blockstates/shadow_berry_dead.json | 10 + .../blockstates/shadow_berry_wild.json | 16 ++ .../models/block/amber_root_dead_0.json | 6 + .../models/block/amber_root_dead_1.json | 6 + .../block/amber_root_wild_immature.json | 7 + .../models/block/amber_root_wild_mature.json | 7 + .../models/block/blossom_berry_dead.json | 6 + .../models/block/blossom_berry_seed_0.json | 2 +- .../models/block/blossom_berry_seed_1.json | 2 +- .../models/block/blossom_berry_seed_2.json | 2 +- .../block/blossom_berry_wild_immature.json | 7 + .../block/blossom_berry_wild_mature.json | 81 ++++++++ .../models/block/bolux_mushroom_0.json | 2 +- .../models/block/bolux_mushroom_1.json | 4 +- .../models/block/bolux_mushroom_2.json | 6 +- .../models/block/bolux_mushroom_3.json | 8 +- .../models/block/bolux_mushroom_dead.json | 81 ++++++++ .../block/bolux_mushroom_wild_immature.json | 118 +++++++++++ .../block/bolux_mushroom_wild_mature.json | 190 ++++++++++++++++++ .../betterend/models/block/cave_pumpkin.json | 8 +- .../models/block/cave_pumpkin_dead.json | 6 + .../models/block/cave_pumpkin_dead_side.json | 48 +++++ .../models/block/cave_pumpkin_wild.json | 7 + .../models/block/cave_pumpkin_wild_side.json | 48 +++++ .../models/block/chorus_mushroom_dead_0.json | 6 + .../models/block/chorus_mushroom_dead_1.json | 6 + .../block/chorus_mushroom_wild_immature.json | 7 + .../block/chorus_mushroom_wild_mature.json | 7 + .../betterend/models/block/crop_block.json | 16 +- .../models/block/crop_block_inverted.json | 16 +- .../betterend/models/block/crop_wild.json | 84 ++++++++ .../assets/betterend/models/block/cross.json | 26 +++ .../models/block/shadow_berry_01.json | 4 +- .../models/block/shadow_berry_02.json | 12 +- .../models/block/shadow_berry_03.json | 16 +- .../models/block/shadow_berry_04.json | 16 +- .../models/block/shadow_berry_dead.json | 45 +++++ .../block/shadow_berry_wild_immature.json | 73 +++++++ .../block/shadow_berry_wild_mature.json | 86 ++++++++ .../textures/block/amber_root_dead.png | Bin 0 -> 265 bytes .../textures/block/blossom_berry_dead.png | Bin 0 -> 272 bytes .../textures/block/bolux_mushroom_dead.png | Bin 0 -> 528 bytes .../textures/block/cave_pumpkin_stem_dead.png | Bin 0 -> 382 bytes .../textures/block/chorus_mushroom_dead.png | Bin 0 -> 239 bytes .../textures/block/shadow_berry_dead.png | Bin 0 -> 724 bytes .../betterend/textures/block/wild_crop.png | Bin 0 -> 380 bytes 56 files changed, 1208 insertions(+), 82 deletions(-) create mode 100644 kubejs/assets/betterend/blockstates/amber_root_dead.json create mode 100644 kubejs/assets/betterend/blockstates/blossom_berry_dead.json create mode 100644 kubejs/assets/betterend/blockstates/bolux_mushroom_dead.json create mode 100644 kubejs/assets/betterend/blockstates/cave_pumpkin_plant_dead.json create mode 100644 kubejs/assets/betterend/blockstates/cave_pumpkin_wild.json create mode 100644 kubejs/assets/betterend/blockstates/chorus_mushroom_dead.json create mode 100644 kubejs/assets/betterend/blockstates/shadow_berry_dead.json create mode 100644 kubejs/assets/betterend/blockstates/shadow_berry_wild.json create mode 100644 kubejs/assets/betterend/models/block/amber_root_dead_0.json create mode 100644 kubejs/assets/betterend/models/block/amber_root_dead_1.json create mode 100644 kubejs/assets/betterend/models/block/amber_root_wild_immature.json create mode 100644 kubejs/assets/betterend/models/block/amber_root_wild_mature.json create mode 100644 kubejs/assets/betterend/models/block/blossom_berry_dead.json create mode 100644 kubejs/assets/betterend/models/block/blossom_berry_wild_immature.json create mode 100644 kubejs/assets/betterend/models/block/blossom_berry_wild_mature.json create mode 100644 kubejs/assets/betterend/models/block/bolux_mushroom_dead.json create mode 100644 kubejs/assets/betterend/models/block/bolux_mushroom_wild_immature.json create mode 100644 kubejs/assets/betterend/models/block/bolux_mushroom_wild_mature.json create mode 100644 kubejs/assets/betterend/models/block/cave_pumpkin_dead.json create mode 100644 kubejs/assets/betterend/models/block/cave_pumpkin_dead_side.json create mode 100644 kubejs/assets/betterend/models/block/cave_pumpkin_wild.json create mode 100644 kubejs/assets/betterend/models/block/cave_pumpkin_wild_side.json create mode 100644 kubejs/assets/betterend/models/block/chorus_mushroom_dead_0.json create mode 100644 kubejs/assets/betterend/models/block/chorus_mushroom_dead_1.json create mode 100644 kubejs/assets/betterend/models/block/chorus_mushroom_wild_immature.json create mode 100644 kubejs/assets/betterend/models/block/chorus_mushroom_wild_mature.json create mode 100644 kubejs/assets/betterend/models/block/crop_wild.json create mode 100644 kubejs/assets/betterend/models/block/cross.json create mode 100644 kubejs/assets/betterend/models/block/shadow_berry_dead.json create mode 100644 kubejs/assets/betterend/models/block/shadow_berry_wild_immature.json create mode 100644 kubejs/assets/betterend/models/block/shadow_berry_wild_mature.json create mode 100644 kubejs/assets/betterend/textures/block/amber_root_dead.png create mode 100644 kubejs/assets/betterend/textures/block/blossom_berry_dead.png create mode 100644 kubejs/assets/betterend/textures/block/bolux_mushroom_dead.png create mode 100644 kubejs/assets/betterend/textures/block/cave_pumpkin_stem_dead.png create mode 100644 kubejs/assets/betterend/textures/block/chorus_mushroom_dead.png create mode 100644 kubejs/assets/betterend/textures/block/shadow_berry_dead.png create mode 100644 kubejs/assets/betterend/textures/block/wild_crop.png diff --git a/kubejs/assets/betterend/blockstates/amber_root_dead.json b/kubejs/assets/betterend/blockstates/amber_root_dead.json new file mode 100644 index 000000000..0f6ff5d98 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/amber_root_dead.json @@ -0,0 +1,8 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/amber_root_dead_0" }, + { "model": "betterend:block/amber_root_dead_1" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/amber_root_wild.json b/kubejs/assets/betterend/blockstates/amber_root_wild.json index dd8b16788..5ca7bf2b0 100644 --- a/kubejs/assets/betterend/blockstates/amber_root_wild.json +++ b/kubejs/assets/betterend/blockstates/amber_root_wild.json @@ -1,8 +1,6 @@ { "variants": { - "": [ - { "model": "betterend:block/amber_root_6" }, - { "model": "betterend:block/amber_root_7" } - ] + "mature=true": { "model": "betterend:block/amber_root_wild_mature" }, + "mature=false": { "model": "betterend:block/amber_root_wild_immature" } } } diff --git a/kubejs/assets/betterend/blockstates/blossom_berry_dead.json b/kubejs/assets/betterend/blockstates/blossom_berry_dead.json new file mode 100644 index 000000000..67980f3a9 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/blossom_berry_dead.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/blossom_berry_dead", "y": 0 }, + { "model": "betterend:block/blossom_berry_dead", "y": 90 }, + { "model": "betterend:block/blossom_berry_dead", "y": 180 }, + { "model": "betterend:block/blossom_berry_dead", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/blossom_berry_wild.json b/kubejs/assets/betterend/blockstates/blossom_berry_wild.json index f0943e016..3dfcacd12 100644 --- a/kubejs/assets/betterend/blockstates/blossom_berry_wild.json +++ b/kubejs/assets/betterend/blockstates/blossom_berry_wild.json @@ -1,5 +1,16 @@ { "variants": { - "": { "model": "betterend:block/blossom_berry" } + "mature=true": [ + { "model": "betterend:block/blossom_berry_wild_mature", "y": 0 }, + { "model": "betterend:block/blossom_berry_wild_mature", "y": 90 }, + { "model": "betterend:block/blossom_berry_wild_mature", "y": 180 }, + { "model": "betterend:block/blossom_berry_wild_mature", "y": 270 } + ], + "mature=false": [ + { "model": "betterend:block/blossom_berry_wild_immature", "y": 0 }, + { "model": "betterend:block/blossom_berry_wild_immature", "y": 90 }, + { "model": "betterend:block/blossom_berry_wild_immature", "y": 180 }, + { "model": "betterend:block/blossom_berry_wild_immature", "y": 270 } + ] } } diff --git a/kubejs/assets/betterend/blockstates/bolux_mushroom_dead.json b/kubejs/assets/betterend/blockstates/bolux_mushroom_dead.json new file mode 100644 index 000000000..0af90925c --- /dev/null +++ b/kubejs/assets/betterend/blockstates/bolux_mushroom_dead.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/bolux_mushroom_dead", "y": 0 }, + { "model": "betterend:block/bolux_mushroom_dead", "y": 90 }, + { "model": "betterend:block/bolux_mushroom_dead", "y": 180 }, + { "model": "betterend:block/bolux_mushroom_dead", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/bolux_mushroom_wild.json b/kubejs/assets/betterend/blockstates/bolux_mushroom_wild.json index 1e328f49c..a64662313 100644 --- a/kubejs/assets/betterend/blockstates/bolux_mushroom_wild.json +++ b/kubejs/assets/betterend/blockstates/bolux_mushroom_wild.json @@ -1,21 +1,16 @@ { "variants": { - "": [ - { - "model": "betterend:block/bolux_mushroom_3" - }, - { - "model": "betterend:block/bolux_mushroom_3", - "y": 90 - }, - { - "model": "betterend:block/bolux_mushroom_3", - "y": 180 - }, - { - "model": "betterend:block/bolux_mushroom_3", - "y": 270 - } + "mature=true": [ + { "model": "betterend:block/bolux_mushroom_wild_mature", "y": 0 }, + { "model": "betterend:block/bolux_mushroom_wild_mature", "y": 90 }, + { "model": "betterend:block/bolux_mushroom_wild_mature", "y": 180 }, + { "model": "betterend:block/bolux_mushroom_wild_mature", "y": 270 } + ], + "mature=false": [ + { "model": "betterend:block/bolux_mushroom_wild_immature", "y": 0 }, + { "model": "betterend:block/bolux_mushroom_wild_immature", "y": 90 }, + { "model": "betterend:block/bolux_mushroom_wild_immature", "y": 180 }, + { "model": "betterend:block/bolux_mushroom_wild_immature", "y": 270 } ] } } diff --git a/kubejs/assets/betterend/blockstates/cave_pumpkin_plant_dead.json b/kubejs/assets/betterend/blockstates/cave_pumpkin_plant_dead.json new file mode 100644 index 000000000..b3c788d3d --- /dev/null +++ b/kubejs/assets/betterend/blockstates/cave_pumpkin_plant_dead.json @@ -0,0 +1,5 @@ +{ + "variants": { + "": { "model": "betterend:block/cave_pumpkin_dead" } + } +} diff --git a/kubejs/assets/betterend/blockstates/cave_pumpkin_wild.json b/kubejs/assets/betterend/blockstates/cave_pumpkin_wild.json new file mode 100644 index 000000000..aa952f482 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/cave_pumpkin_wild.json @@ -0,0 +1,99 @@ +{ + "__comment__": "This file was automatically created by mcresources", + "multipart": [ + { + "when": { + "mature": true + }, + "apply": { + "model": "betterend:block/cave_pumpkin_wild" + } + }, + { + "when": { + "mature": false + }, + "apply": { + "model": "betterend:block/cave_pumpkin_dead" + } + }, + { + "when": { + "east": true, + "mature": true + }, + "apply": { + "model": "betterend:block/cave_pumpkin_wild_side", + "y": 90 + } + }, + { + "when": { + "north": true, + "mature": true + }, + "apply": { + "model": "betterend:block/cave_pumpkin_wild_side" + } + }, + { + "when": { + "south": true, + "mature": true + }, + "apply": { + "model": "betterend:block/cave_pumpkin_wild_side", + "y": 180 + } + }, + { + "when": { + "west": true, + "mature": true + }, + "apply": { + "model": "betterend:block/cave_pumpkin_wild_side", + "y": 270 + } + }, + { + "when": { + "east": true, + "mature": false + }, + "apply": { + "model": "betterend:block/cave_pumpkin_dead_side", + "y": 90 + } + }, + { + "when": { + "north": true, + "mature": false + }, + "apply": { + "model": "betterend:block/cave_pumpkin_dead_side" + } + }, + { + "when": { + "south": true, + "mature": false + }, + "apply": { + "model": "betterend:block/cave_pumpkin_dead_side", + "y": 180 + } + }, + { + "when": { + "west": true, + "mature": false + }, + "apply": { + "model": "betterend:block/cave_pumpkin_dead_side", + "y": 270 + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/blockstates/chorus_mushroom_dead.json b/kubejs/assets/betterend/blockstates/chorus_mushroom_dead.json new file mode 100644 index 000000000..811ed28ad --- /dev/null +++ b/kubejs/assets/betterend/blockstates/chorus_mushroom_dead.json @@ -0,0 +1,8 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/chorus_mushroom_dead_0" }, + { "model": "betterend:block/chorus_mushroom_dead_1" } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/chorus_mushroom_wild.json b/kubejs/assets/betterend/blockstates/chorus_mushroom_wild.json index 1ea584c90..450fd9b07 100644 --- a/kubejs/assets/betterend/blockstates/chorus_mushroom_wild.json +++ b/kubejs/assets/betterend/blockstates/chorus_mushroom_wild.json @@ -1,8 +1,6 @@ { "variants": { - "": [ - { "model": "betterend:block/chorus_mushroom_6" }, - { "model": "betterend:block/chorus_mushroom_7" } - ] + "mature=true": { "model": "betterend:block/chorus_mushroom_wild_mature" }, + "mature=false": { "model": "betterend:block/chorus_mushroom_wild_immature" } } } diff --git a/kubejs/assets/betterend/blockstates/shadow_berry_dead.json b/kubejs/assets/betterend/blockstates/shadow_berry_dead.json new file mode 100644 index 000000000..95630b093 --- /dev/null +++ b/kubejs/assets/betterend/blockstates/shadow_berry_dead.json @@ -0,0 +1,10 @@ +{ + "variants": { + "": [ + { "model": "betterend:block/shadow_berry_dead", "y": 0 }, + { "model": "betterend:block/shadow_berry_dead", "y": 90 }, + { "model": "betterend:block/shadow_berry_dead", "y": 180 }, + { "model": "betterend:block/shadow_berry_dead", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/blockstates/shadow_berry_wild.json b/kubejs/assets/betterend/blockstates/shadow_berry_wild.json new file mode 100644 index 000000000..cbfdf45ce --- /dev/null +++ b/kubejs/assets/betterend/blockstates/shadow_berry_wild.json @@ -0,0 +1,16 @@ +{ + "variants": { + "mature=true": [ + { "model": "betterend:block/shadow_berry_wild_mature", "y": 0 }, + { "model": "betterend:block/shadow_berry_wild_mature", "y": 90 }, + { "model": "betterend:block/shadow_berry_wild_mature", "y": 180 }, + { "model": "betterend:block/shadow_berry_wild_mature", "y": 270 } + ], + "mature=false": [ + { "model": "betterend:block/shadow_berry_wild_immature", "y": 0 }, + { "model": "betterend:block/shadow_berry_wild_immature", "y": 90 }, + { "model": "betterend:block/shadow_berry_wild_immature", "y": 180 }, + { "model": "betterend:block/shadow_berry_wild_immature", "y": 270 } + ] + } +} diff --git a/kubejs/assets/betterend/models/block/amber_root_dead_0.json b/kubejs/assets/betterend/models/block/amber_root_dead_0.json new file mode 100644 index 000000000..feef5e18b --- /dev/null +++ b/kubejs/assets/betterend/models/block/amber_root_dead_0.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/crop_block", + "textures": { + "texture": "betterend:block/amber_root_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/amber_root_dead_1.json b/kubejs/assets/betterend/models/block/amber_root_dead_1.json new file mode 100644 index 000000000..09252bcd7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/amber_root_dead_1.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/crop_block_inverted", + "textures": { + "texture": "betterend:block/amber_root_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/amber_root_wild_immature.json b/kubejs/assets/betterend/models/block/amber_root_wild_immature.json new file mode 100644 index 000000000..d25cc6455 --- /dev/null +++ b/kubejs/assets/betterend/models/block/amber_root_wild_immature.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/amber_root_dead", + "particle": "betterend:block/amber_root_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/amber_root_wild_mature.json b/kubejs/assets/betterend/models/block/amber_root_wild_mature.json new file mode 100644 index 000000000..3332918ae --- /dev/null +++ b/kubejs/assets/betterend/models/block/amber_root_wild_mature.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/amber_root_3", + "particle": "betterend:block/amber_root_3" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/blossom_berry_dead.json b/kubejs/assets/betterend/models/block/blossom_berry_dead.json new file mode 100644 index 000000000..3f0d5edae --- /dev/null +++ b/kubejs/assets/betterend/models/block/blossom_berry_dead.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross", + "textures": { + "cross": "betterend:block/blossom_berry_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/blossom_berry_seed_0.json b/kubejs/assets/betterend/models/block/blossom_berry_seed_0.json index 874f5b0db..fbb1b8de9 100644 --- a/kubejs/assets/betterend/models/block/blossom_berry_seed_0.json +++ b/kubejs/assets/betterend/models/block/blossom_berry_seed_0.json @@ -1,5 +1,5 @@ { - "parent": "minecraft:block/cross", + "parent": "betterend:block/cross", "textures": { "cross": "betterend:block/blossom_berry_seed_0" } diff --git a/kubejs/assets/betterend/models/block/blossom_berry_seed_1.json b/kubejs/assets/betterend/models/block/blossom_berry_seed_1.json index 0796b43bd..600323dc6 100644 --- a/kubejs/assets/betterend/models/block/blossom_berry_seed_1.json +++ b/kubejs/assets/betterend/models/block/blossom_berry_seed_1.json @@ -1,5 +1,5 @@ { - "parent": "minecraft:block/cross", + "parent": "betterend:block/cross", "textures": { "cross": "betterend:block/blossom_berry_seed_1" } diff --git a/kubejs/assets/betterend/models/block/blossom_berry_seed_2.json b/kubejs/assets/betterend/models/block/blossom_berry_seed_2.json index 09bf8cf4b..e01fedd98 100644 --- a/kubejs/assets/betterend/models/block/blossom_berry_seed_2.json +++ b/kubejs/assets/betterend/models/block/blossom_berry_seed_2.json @@ -1,5 +1,5 @@ { - "parent": "minecraft:block/cross", + "parent": "betterend:block/cross", "textures": { "cross": "betterend:block/blossom_berry_seed_2" } diff --git a/kubejs/assets/betterend/models/block/blossom_berry_wild_immature.json b/kubejs/assets/betterend/models/block/blossom_berry_wild_immature.json new file mode 100644 index 000000000..5b5596642 --- /dev/null +++ b/kubejs/assets/betterend/models/block/blossom_berry_wild_immature.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/blossom_berry_dead", + "particle": "betterend:block/blossom_berry_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/blossom_berry_wild_mature.json b/kubejs/assets/betterend/models/block/blossom_berry_wild_mature.json new file mode 100644 index 000000000..b93d8294d --- /dev/null +++ b/kubejs/assets/betterend/models/block/blossom_berry_wild_mature.json @@ -0,0 +1,81 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "betterend:block/blossom_berry_flower", + "stem": "betterend:block/blossom_berry_stem", + "flower": "betterend:block/blossom_berry_flower", + "texture": "betterend:block/blossom_berry_fruit" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 2.25, 0, 2.25 ], + "to": [ 2.251, 16, 18.25 ], + "rotation": { "origin": [ 2.25, 0, 2.25 ], "axis": "y", "angle": 45 }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 13.75, 0, 2.25 ], + "to": [ 13.751, 16, 18.25 ], + "rotation": { "origin": [ 13.75, 0, 2.25 ], "axis": "y", "angle": -45 }, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#stem" } + } + }, + { + "__comment": "PlaneY3", + "from": [ 0, 12, 0 ], + "to": [ 16, 12.001, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#flower" } + } + }, + { + "__comment": "Box4", + "from": [ 5, 11, 5 ], + "to": [ 11, 17, 11 ], + "faces": { + "down": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" }, + "north": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 6, 6 ], "texture": "#texture" } + } + }, + { + "from": [13.1, -1, 0.1], + "to": [13.1, 15, 16.1], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 3.1], + "to": [16.1, 15, 3.1], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 13.1], + "to": [16.1, 15, 13.1], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_0.json b/kubejs/assets/betterend/models/block/bolux_mushroom_0.json index 87762ba41..ea16a2132 100644 --- a/kubejs/assets/betterend/models/block/bolux_mushroom_0.json +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_0.json @@ -7,7 +7,7 @@ "elements": [ { "__comment": "Box1", - "from": [ 6, 0, 8 ], + "from": [ 6, -1, 8 ], "to": [ 8, 2, 10 ], "faces": { "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_1.json b/kubejs/assets/betterend/models/block/bolux_mushroom_1.json index 4c80d9183..f18309b79 100644 --- a/kubejs/assets/betterend/models/block/bolux_mushroom_1.json +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_1.json @@ -32,7 +32,7 @@ }, { "__comment": "Box1", - "from": [ 4, 0, 4 ], + "from": [ 4, -1, 4 ], "to": [ 6, 3, 6 ], "faces": { "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, @@ -43,7 +43,7 @@ }, { "__comment": "Box1", - "from": [ 10, 0, 12 ], + "from": [ 10, -1, 12 ], "to": [ 12, 2, 14 ], "faces": { "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_2.json b/kubejs/assets/betterend/models/block/bolux_mushroom_2.json index e8b854979..0e77ecb36 100644 --- a/kubejs/assets/betterend/models/block/bolux_mushroom_2.json +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_2.json @@ -7,7 +7,7 @@ "elements": [ { "__comment": "Box1", - "from": [ 11, 0, 4 ], + "from": [ 11, -1, 4 ], "to": [ 13, 2, 6 ], "faces": { "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, @@ -43,7 +43,7 @@ }, { "__comment": "Box1", - "from": [ 3, 0, 6 ], + "from": [ 3, -1, 6 ], "to": [ 5, 3, 8 ], "faces": { "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, @@ -79,7 +79,7 @@ }, { "__comment": "Box1", - "from": [ 10, 0, 12 ], + "from": [ 10, -1, 12 ], "to": [ 12, 2, 14 ], "faces": { "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_3.json b/kubejs/assets/betterend/models/block/bolux_mushroom_3.json index f11b78b71..cdd066790 100644 --- a/kubejs/assets/betterend/models/block/bolux_mushroom_3.json +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_3.json @@ -32,7 +32,7 @@ }, { "__comment": "Box1", - "from": [ 10, 0, 9 ], + "from": [ 10, -1, 9 ], "to": [ 12, 3, 11 ], "faces": { "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, @@ -43,7 +43,7 @@ }, { "__comment": "Box1", - "from": [ 2, 0, 5 ], + "from": [ 2, -1, 5 ], "to": [ 4, 3, 7 ], "faces": { "north": { "uv": [ 1, 0, 3, 3 ], "texture": "#texture" }, @@ -79,7 +79,7 @@ }, { "__comment": "Box1", - "from": [ 9, 0, 2 ], + "from": [ 9, -1, 2 ], "to": [ 11, 4, 4 ], "faces": { "north": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" }, @@ -127,7 +127,7 @@ }, { "__comment": "Box1", - "from": [ 2, 0, 12 ], + "from": [ 2, -1, 12 ], "to": [ 4, 2, 14 ], "faces": { "north": { "uv": [ 0, 1, 2, 3 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_dead.json b/kubejs/assets/betterend/models/block/bolux_mushroom_dead.json new file mode 100644 index 000000000..a5fe01597 --- /dev/null +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_dead.json @@ -0,0 +1,81 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/bolux_mushroom_dead", + "texture": "betterend:block/bolux_mushroom_dead" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 1, 3, 1 ], + "to": [ 9, 7, 9 ], + "faces": { + "down": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "up": { "uv": [ 8, 0, 16, 8 ], "texture": "#texture" }, + "north": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, 7, 2 ], + "to": [ 8, 8, 8 ], + "faces": { + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture" }, + "north": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "south": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "west": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "east": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 4, -1, 4 ], + "to": [ 6, 3, 6 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "west": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" }, + "east": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 10, -1, 12 ], + "to": [ 12, 2, 14 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 8, 2, 10 ], + "to": [ 14, 5, 16 ], + "faces": { + "down": { "uv": [ 1, 9, 7, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture", "rotation": 90 }, + "north": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 9, 5, 11 ], + "to": [ 13, 6, 15 ], + "faces": { + "up": { "uv": [ 10, 2, 14, 6 ], "texture": "#texture", "rotation": 90 }, + "north": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "south": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "west": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "east": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_wild_immature.json b/kubejs/assets/betterend/models/block/bolux_mushroom_wild_immature.json new file mode 100644 index 000000000..6b5490338 --- /dev/null +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_wild_immature.json @@ -0,0 +1,118 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "betterend:block/bolux_mushroom_dead", + "texture": "betterend:block/bolux_mushroom_dead" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 1, 3, 1 ], + "to": [ 9, 7, 9 ], + "faces": { + "down": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "up": { "uv": [ 8, 0, 16, 8 ], "texture": "#texture" }, + "north": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, 7, 2 ], + "to": [ 8, 8, 8 ], + "faces": { + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture" }, + "north": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "south": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "west": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "east": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 4, -1, 4 ], + "to": [ 6, 3, 6 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "west": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" }, + "east": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 10, -1, 12 ], + "to": [ 12, 2, 14 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 2, 2 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 8, 2, 10 ], + "to": [ 14, 5, 16 ], + "faces": { + "down": { "uv": [ 1, 9, 7, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture", "rotation": 90 }, + "north": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 9, 5, 11 ], + "to": [ 13, 6, 15 ], + "faces": { + "up": { "uv": [ 10, 2, 14, 6 ], "texture": "#texture", "rotation": 90 }, + "north": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "south": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "west": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "east": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" } + } + }, + { + "from": [3, -1, 0], + "to": [3, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [13, -1, 0], + "to": [13, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0, -1, 3], + "to": [16, 15, 3], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0, -1, 13], + "to": [16, 15, 13], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/bolux_mushroom_wild_mature.json b/kubejs/assets/betterend/models/block/bolux_mushroom_wild_mature.json new file mode 100644 index 000000000..22987b28f --- /dev/null +++ b/kubejs/assets/betterend/models/block/bolux_mushroom_wild_mature.json @@ -0,0 +1,190 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "betterend:block/bolux_mushroom", + "texture": "betterend:block/bolux_mushroom" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 7, 3, 6 ], + "to": [ 15, 7, 14 ], + "faces": { + "down": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "up": { "uv": [ 8, 0, 16, 8 ], "texture": "#texture" }, + "north": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "south": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "west": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 8, 12, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 8, 7, 7 ], + "to": [ 14, 8, 13 ], + "faces": { + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture" }, + "north": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "south": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "west": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" }, + "east": { "uv": [ 9, 11, 15, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 10, -1, 9 ], + "to": [ 12, 3, 11 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 3 ], "texture": "#texture" }, + "west": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" }, + "east": { "uv": [ 2, 0, 0, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, -1, 5 ], + "to": [ 4, 3, 7 ], + "faces": { + "north": { "uv": [ 1, 0, 3, 3 ], "texture": "#texture" }, + "south": { "uv": [ 1, 0, 3, 3 ], "texture": "#texture" }, + "west": { "uv": [ 1, 0, 3, 3 ], "texture": "#texture" }, + "east": { "uv": [ 1, 0, 3, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 0, 3, 3 ], + "to": [ 6, 6, 9 ], + "faces": { + "down": { "uv": [ 1, 9, 7, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 15, 7 ], "texture": "#texture" }, + "north": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "south": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "west": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" }, + "east": { "uv": [ 9, 13, 15, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 1, 6, 4 ], + "to": [ 5, 7, 8 ], + "faces": { + "up": { "uv": [ 10, 2, 14, 6 ], "texture": "#texture" }, + "north": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "south": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "west": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" }, + "east": { "uv": [ 10, 11, 14, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 9, -1, 2 ], + "to": [ 11, 4, 4 ], + "faces": { + "north": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" }, + "south": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" }, + "west": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 2, 4 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 8, 4, 1 ], + "to": [ 12, 9, 5 ], + "faces": { + "down": { "uv": [ 2, 10, 6, 14 ], "texture": "#texture" }, + "up": { "uv": [ 10, 2, 14, 6 ], "texture": "#texture" }, + "north": { "uv": [ 10, 11, 14, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10, 11, 14, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10, 11, 14, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10, 11, 14, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 9, 9, 2 ], + "to": [ 11, 10, 4 ], + "faces": { + "up": { "uv": [ 11, 3, 13, 5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 10, 13, 11 ], "texture": "#texture" }, + "south": { "uv": [ 11, 10, 13, 11 ], "texture": "#texture" }, + "west": { "uv": [ 11, 10, 13, 11 ], "texture": "#texture" }, + "east": { "uv": [ 11, 10, 13, 11 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, 5, 12 ], + "to": [ 4, 6, 14 ], + "faces": { + "up": { "uv": [ 11, 3, 13, 5 ], "texture": "#texture" }, + "north": { "uv": [ 11, 11, 13, 12 ], "texture": "#texture" }, + "south": { "uv": [ 11, 11, 13, 12 ], "texture": "#texture" }, + "west": { "uv": [ 11, 11, 13, 12 ], "texture": "#texture" }, + "east": { "uv": [ 11, 11, 13, 12 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 2, -1, 12 ], + "to": [ 4, 2, 14 ], + "faces": { + "north": { "uv": [ 0, 1, 2, 3 ], "texture": "#texture" }, + "south": { "uv": [ 0, 1, 2, 3 ], "texture": "#texture" }, + "west": { "uv": [ 0, 1, 2, 3 ], "texture": "#texture" }, + "east": { "uv": [ 0, 1, 2, 3 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 1, 2, 11 ], + "to": [ 5, 5, 15 ], + "faces": { + "down": { "uv": [ 2, 10, 6, 14 ], "texture": "#texture" }, + "up": { "uv": [ 4, 4, 8, 8 ], "texture": "#texture" }, + "north": { "uv": [ 10, 13, 14, 16 ], "texture": "#texture" }, + "south": { "uv": [ 10, 13, 14, 16 ], "texture": "#texture" }, + "west": { "uv": [ 10, 13, 14, 16 ], "texture": "#texture" }, + "east": { "uv": [ 10, 13, 14, 16 ], "texture": "#texture" } + } + }, + { + "from": [3.1, -1, 0.1], + "to": [3.1, 15, 16.1], + "shade": false, + "faces": { + "east": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [13.1, -1, 0.1], + "to": [13.1, 15, 16.1], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 3.1], + "to": [16.1, 15, 3.1], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 13.1], + "to": [16.1, 15, 13.1], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cave_pumpkin.json b/kubejs/assets/betterend/models/block/cave_pumpkin.json index 2b563ab3f..a37a47661 100644 --- a/kubejs/assets/betterend/models/block/cave_pumpkin.json +++ b/kubejs/assets/betterend/models/block/cave_pumpkin.json @@ -33,7 +33,7 @@ { "__comment": "PlaneX3", "from": [ 0, 10, 0 ], - "to": [ 0.001, 15, 16 ], + "to": [ 0, 15, 16 ], "faces": { "west": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" }, "east": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" } @@ -42,7 +42,7 @@ { "__comment": "PlaneX3", "from": [ 16, 10, 0 ], - "to": [ 16.001, 15, 16 ], + "to": [ 16, 15, 16 ], "faces": { "west": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" }, "east": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" } @@ -51,7 +51,7 @@ { "__comment": "PlaneZ5", "from": [ 0, 10, 16 ], - "to": [ 16, 15, 16.001 ], + "to": [ 16, 15, 16 ], "faces": { "north": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" }, "south": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" } @@ -60,7 +60,7 @@ { "__comment": "PlaneZ5", "from": [ 0, 10, 0 ], - "to": [ 16, 15, 0.001 ], + "to": [ 16, 15, 0 ], "faces": { "north": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" }, "south": { "uv": [ 0, 1, 16, 6 ], "texture": "#side" } diff --git a/kubejs/assets/betterend/models/block/cave_pumpkin_dead.json b/kubejs/assets/betterend/models/block/cave_pumpkin_dead.json new file mode 100644 index 000000000..1bdb52e25 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_pumpkin_dead.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/cross", + "textures": { + "cross": "betterend:block/cave_pumpkin_stem_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cave_pumpkin_dead_side.json b/kubejs/assets/betterend/models/block/cave_pumpkin_dead_side.json new file mode 100644 index 000000000..3393fd775 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_pumpkin_dead_side.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "textures": { + "particle": "betterend:block/cave_pumpkin_stem_dead", + "crop": "betterend:block/cave_pumpkin_stem_dead" + }, + "elements": [ + { + "from": [ 7, 0, 0 ], + "to": [ 7, 16, 16 ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ 8, 0, 9 ] + }, + "faces": { + "east": { + "uv": [ 16, 0, 0, 16 ], + "texture": "#crop" + }, + "west": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#crop" + } + } + }, + { + "from": [ 10, 0, 0 ], + "to": [ 10, 16, 16 ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ 8, 0, 9 ] + }, + "faces": { + "east": { + "uv": [ 16, 0, 0, 16 ], + "texture": "#crop" + }, + "west": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#crop" + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cave_pumpkin_wild.json b/kubejs/assets/betterend/models/block/cave_pumpkin_wild.json new file mode 100644 index 000000000..f2515f7d2 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_pumpkin_wild.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/cave_pumpkin_stem_3", + "particle": "betterend:block/cave_pumpkin_stem_3" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cave_pumpkin_wild_side.json b/kubejs/assets/betterend/models/block/cave_pumpkin_wild_side.json new file mode 100644 index 000000000..8222bb8f7 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cave_pumpkin_wild_side.json @@ -0,0 +1,48 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "textures": { + "particle": "betterend:block/cave_pumpkin_stem_3_side", + "crop": "betterend:block/cave_pumpkin_stem_3_side" + }, + "elements": [ + { + "from": [ 7, 0, 0 ], + "to": [ 7, 16, 16 ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ 8, 0, 9 ] + }, + "faces": { + "east": { + "uv": [ 16, 0, 0, 16 ], + "texture": "#crop" + }, + "west": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#crop" + } + } + }, + { + "from": [ 10, 0, 0 ], + "to": [ 10, 16, 16 ], + "rotation": { + "angle": 0, + "axis": "y", + "origin": [ 8, 0, 9 ] + }, + "faces": { + "east": { + "uv": [ 16, 0, 0, 16 ], + "texture": "#crop" + }, + "west": { + "uv": [ 0, 0, 16, 16 ], + "texture": "#crop" + } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/chorus_mushroom_dead_0.json b/kubejs/assets/betterend/models/block/chorus_mushroom_dead_0.json new file mode 100644 index 000000000..dd4dabae9 --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_mushroom_dead_0.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/crop_block", + "textures": { + "texture": "betterend:block/chorus_mushroom_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/chorus_mushroom_dead_1.json b/kubejs/assets/betterend/models/block/chorus_mushroom_dead_1.json new file mode 100644 index 000000000..db7c48a87 --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_mushroom_dead_1.json @@ -0,0 +1,6 @@ +{ + "parent": "betterend:block/crop_block_inverted", + "textures": { + "texture": "betterend:block/chorus_mushroom_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/chorus_mushroom_wild_immature.json b/kubejs/assets/betterend/models/block/chorus_mushroom_wild_immature.json new file mode 100644 index 000000000..eaad49a64 --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_mushroom_wild_immature.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/chorus_mushroom_dead", + "particle": "betterend:block/chorus_mushroom_dead" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/chorus_mushroom_wild_mature.json b/kubejs/assets/betterend/models/block/chorus_mushroom_wild_mature.json new file mode 100644 index 000000000..bd69e24ae --- /dev/null +++ b/kubejs/assets/betterend/models/block/chorus_mushroom_wild_mature.json @@ -0,0 +1,7 @@ +{ + "parent": "betterend:block/crop_wild", + "textures": { + "crop": "betterend:block/chorus_mushroom_3", + "particle": "betterend:block/chorus_mushroom_3" + } +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/crop_block.json b/kubejs/assets/betterend/models/block/crop_block.json index f71aa2a0c..16ebc556d 100644 --- a/kubejs/assets/betterend/models/block/crop_block.json +++ b/kubejs/assets/betterend/models/block/crop_block.json @@ -4,32 +4,32 @@ "particle": "#texture" }, "elements": [ - { "from": [ 4.1, 0, 0 ], - "to": [ 4.1, 16, 16 ], + { "from": [ 4.1, -1, 0 ], + "to": [ 4.1, 15, 16 ], "shade": false, "faces": { "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } } }, - { "from": [ 11.9, 0, 0 ], - "to": [ 11.9, 16, 16 ], + { "from": [ 11.9, -1, 0 ], + "to": [ 11.9, 15, 16 ], "shade": false, "faces": { "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } } }, - { "from": [ 0, 0, 4.1 ], - "to": [ 16, 16, 4.1 ], + { "from": [ 0, -1, 4.1 ], + "to": [ 16, 15, 4.1 ], "shade": false, "faces": { "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } } }, - { "from": [ 0, 0, 11.9 ], - "to": [ 16, 16, 11.9 ], + { "from": [ 0, -1, 11.9 ], + "to": [ 16, 15, 11.9 ], "shade": false, "faces": { "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/crop_block_inverted.json b/kubejs/assets/betterend/models/block/crop_block_inverted.json index d08a2f6f1..35efdc33f 100644 --- a/kubejs/assets/betterend/models/block/crop_block_inverted.json +++ b/kubejs/assets/betterend/models/block/crop_block_inverted.json @@ -4,32 +4,32 @@ "particle": "#texture" }, "elements": [ - { "from": [ 4.1, 0, 0 ], - "to": [ 4.1, 16, 16 ], + { "from": [ 4.1, -1, 0 ], + "to": [ 4.1, 15, 16 ], "shade": false, "faces": { "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } } }, - { "from": [ 11.9, 0, 0 ], - "to": [ 11.9, 16, 16 ], + { "from": [ 11.9, -1, 0 ], + "to": [ 11.9, 15, 16 ], "shade": false, "faces": { "west": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } } }, - { "from": [ 0, 0, 4.1 ], - "to": [ 16, 16, 4.1 ], + { "from": [ 0, -1, 4.1 ], + "to": [ 16, 15, 4.1 ], "shade": false, "faces": { "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, "south": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" } } }, - { "from": [ 0, 0, 11.9 ], - "to": [ 16, 16, 11.9 ], + { "from": [ 0, -1, 11.9 ], + "to": [ 16, 15, 11.9 ], "shade": false, "faces": { "north": { "uv": [ 16, 0, 0, 16 ], "texture": "#texture" }, diff --git a/kubejs/assets/betterend/models/block/crop_wild.json b/kubejs/assets/betterend/models/block/crop_wild.json new file mode 100644 index 000000000..3998707f4 --- /dev/null +++ b/kubejs/assets/betterend/models/block/crop_wild.json @@ -0,0 +1,84 @@ +{ + "credit": "Made with Blockbench", + "ambientocclusion": false, + "parent": "block/block", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "#crop", + "crop": "#crop" + }, + "elements": [ + { + "from": [4, -1, 0], + "to": [4, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [16, 0, 0, 16], "texture": "#crop"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#crop"} + } + }, + { + "from": [12, -1, 0], + "to": [12, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#crop"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#crop"} + } + }, + { + "from": [0, -1, 4], + "to": [16, 15, 4], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#crop"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#crop"} + } + }, + { + "from": [0, -1, 12], + "to": [16, 15, 12], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#crop"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#crop"} + } + }, + { + "from": [3, -1, 0], + "to": [3, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [13, -1, 0], + "to": [13, 15, 16], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0, -1, 3], + "to": [16, 15, 3], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0, -1, 13], + "to": [16, 15, 13], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/cross.json b/kubejs/assets/betterend/models/block/cross.json new file mode 100644 index 000000000..37c8b09f2 --- /dev/null +++ b/kubejs/assets/betterend/models/block/cross.json @@ -0,0 +1,26 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#cross" + }, + "elements": [ + { "from": [ 0.8, 0, 8 ], + "to": [ 15.2, 16, 8 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "north": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "south": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + }, + { "from": [ 8, 0, 0.8 ], + "to": [ 8, 16, 15.2 ], + "rotation": { "origin": [ 8, 8, 8 ], "axis": "y", "angle": 45, "rescale": true }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#cross" } + } + } + ] +} diff --git a/kubejs/assets/betterend/models/block/shadow_berry_01.json b/kubejs/assets/betterend/models/block/shadow_berry_01.json index d0c273d2e..35bbe37a9 100644 --- a/kubejs/assets/betterend/models/block/shadow_berry_01.json +++ b/kubejs/assets/betterend/models/block/shadow_berry_01.json @@ -8,8 +8,8 @@ "elements": [ { "__comment": "PlaneY4", - "from": [ 0, 0.5, 0 ], - "to": [ 16, 0.501, 16 ], + "from": [ 0, -0.5, 0 ], + "to": [ 16, -0.501, 16 ], "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } diff --git a/kubejs/assets/betterend/models/block/shadow_berry_02.json b/kubejs/assets/betterend/models/block/shadow_berry_02.json index 459394e20..4162b3495 100644 --- a/kubejs/assets/betterend/models/block/shadow_berry_02.json +++ b/kubejs/assets/betterend/models/block/shadow_berry_02.json @@ -8,8 +8,8 @@ "elements": [ { "__comment": "Box1", - "from": [ 3, 0, 3 ], - "to": [ 7, 4, 7 ], + "from": [ 3, -1, 3 ], + "to": [ 7, 3, 7 ], "faces": { "down": { "uv": [ 10, 10, 14, 14 ], "texture": "#texture" }, "up": { "uv": [ 8.5, 0.5, 12.5, 4.5 ], "texture": "#texture" }, @@ -21,8 +21,8 @@ }, { "__comment": "Box1", - "from": [ 11.5, 0, 6.5 ], - "to": [ 14.5, 3, 9.5 ], + "from": [ 11.5, -1, 6.5 ], + "to": [ 14.5, 2, 9.5 ], "faces": { "down": { "uv": [ 12, 12, 15, 15 ], "texture": "#texture" }, "up": { "uv": [ 9, 1, 12, 4 ], "texture": "#texture" }, @@ -34,8 +34,8 @@ }, { "__comment": "PlaneY4", - "from": [ 0, 0.5, 0 ], - "to": [ 16, 0.501, 16 ], + "from": [ 0, -0.5, 0 ], + "to": [ 16, -0.501, 16 ], "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } diff --git a/kubejs/assets/betterend/models/block/shadow_berry_03.json b/kubejs/assets/betterend/models/block/shadow_berry_03.json index c20ce75d6..6d542947b 100644 --- a/kubejs/assets/betterend/models/block/shadow_berry_03.json +++ b/kubejs/assets/betterend/models/block/shadow_berry_03.json @@ -8,8 +8,8 @@ "elements": [ { "__comment": "Box1", - "from": [ 2, 0, 2 ], - "to": [ 8, 6, 8 ], + "from": [ 2, -1, 2 ], + "to": [ 8, 5, 8 ], "faces": { "down": { "uv": [ 9, 9, 15, 15 ], "texture": "#texture" }, "up": { "uv": [ 1, 1, 7, 7 ], "texture": "#texture" }, @@ -21,8 +21,8 @@ }, { "__comment": "Box1", - "from": [ 11, 0, 6 ], - "to": [ 15, 4, 10 ], + "from": [ 11, -1, 6 ], + "to": [ 15, 3, 10 ], "faces": { "down": { "uv": [ 10, 10, 14, 14 ], "texture": "#texture" }, "up": { "uv": [ 8.5, 0.5, 12.5, 4.5 ], "texture": "#texture" }, @@ -34,8 +34,8 @@ }, { "__comment": "Box1", - "from": [ 4, 0, 11 ], - "to": [ 7, 3, 14 ], + "from": [ 4, -1, 11 ], + "to": [ 7, 2, 14 ], "faces": { "down": { "uv": [ 12, 12, 15, 15 ], "texture": "#texture" }, "up": { "uv": [ 9, 1, 12, 4 ], "texture": "#texture" }, @@ -47,8 +47,8 @@ }, { "__comment": "PlaneY4", - "from": [ 0, 0.5, 0 ], - "to": [ 16, 0.501, 16 ], + "from": [ 0, -0.5, 0 ], + "to": [ 16, -0.501, 16 ], "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } diff --git a/kubejs/assets/betterend/models/block/shadow_berry_04.json b/kubejs/assets/betterend/models/block/shadow_berry_04.json index b25f96190..8e841200c 100644 --- a/kubejs/assets/betterend/models/block/shadow_berry_04.json +++ b/kubejs/assets/betterend/models/block/shadow_berry_04.json @@ -8,8 +8,8 @@ "elements": [ { "__comment": "Box1", - "from": [ 1, 0, 1 ], - "to": [ 9, 8, 9 ], + "from": [ 1, -1, 1 ], + "to": [ 9, 7, 9 ], "faces": { "down": { "uv": [ 8, 8, 16, 16 ], "texture": "#texture" }, "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#texture" }, @@ -21,8 +21,8 @@ }, { "__comment": "Box1", - "from": [ 10, 0, 5 ], - "to": [ 16, 6, 11 ], + "from": [ 10, -1, 5 ], + "to": [ 16, 5, 11 ], "faces": { "down": { "uv": [ 9, 9, 15, 15 ], "texture": "#texture" }, "up": { "uv": [ 1, 1, 7, 7 ], "texture": "#texture" }, @@ -34,8 +34,8 @@ }, { "__comment": "Box1", - "from": [ 3, 0, 10 ], - "to": [ 8, 5, 15 ], + "from": [ 3, -1, 10 ], + "to": [ 8, 4, 15 ], "faces": { "down": { "uv": [ 11, 11, 16, 16 ], "texture": "#texture" }, "up": { "uv": [ 8, 0, 13, 5 ], "texture": "#texture" }, @@ -47,8 +47,8 @@ }, { "__comment": "PlaneY4", - "from": [ 0, 0.5, 0 ], - "to": [ 16, 0.501, 16 ], + "from": [ 0, -0.5, 0 ], + "to": [ 16, -0.501, 16 ], "faces": { "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } diff --git a/kubejs/assets/betterend/models/block/shadow_berry_dead.json b/kubejs/assets/betterend/models/block/shadow_berry_dead.json new file mode 100644 index 000000000..88a742b60 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_berry_dead.json @@ -0,0 +1,45 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/shadow_berry_dead", + "texture": "betterend:block/shadow_berry_dead", + "texture1": "betterend:block/shadow_berry_leaves" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 3, 0, 3 ], + "to": [ 7, 4, 7 ], + "faces": { + "down": { "uv": [ 10, 10, 14, 14 ], "texture": "#texture" }, + "up": { "uv": [ 8.5, 0.5, 12.5, 4.5 ], "texture": "#texture" }, + "north": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "south": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "west": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "east": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 11.5, 0, 6.5 ], + "to": [ 14.5, 3, 9.5 ], + "faces": { + "down": { "uv": [ 12, 12, 15, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 12, 4 ], "texture": "#texture" }, + "north": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "south": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "west": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "east": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneY4", + "from": [ 0, 0.5, 0 ], + "to": [ 16, 0.501, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/shadow_berry_wild_immature.json b/kubejs/assets/betterend/models/block/shadow_berry_wild_immature.json new file mode 100644 index 000000000..cdf452278 --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_berry_wild_immature.json @@ -0,0 +1,73 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "betterend:block/shadow_berry_dead", + "texture": "betterend:block/shadow_berry_dead", + "texture1": "betterend:block/shadow_berry_leaves" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 3, 0, 3 ], + "to": [ 7, 4, 7 ], + "faces": { + "down": { "uv": [ 10, 10, 14, 14 ], "texture": "#texture" }, + "up": { "uv": [ 8.5, 0.5, 12.5, 4.5 ], "texture": "#texture" }, + "north": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "south": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "west": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" }, + "east": { "uv": [ 2, 11, 6, 15 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 11.5, 0, 6.5 ], + "to": [ 14.5, 3, 9.5 ], + "faces": { + "down": { "uv": [ 12, 12, 15, 15 ], "texture": "#texture" }, + "up": { "uv": [ 9, 1, 12, 4 ], "texture": "#texture" }, + "north": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "south": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "west": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" }, + "east": { "uv": [ 4, 11, 7, 14 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneY4", + "from": [ 0, 0.5, 0 ], + "to": [ 16, 0.501, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } + } + }, + { + "from": [13.1, -1, 0.1], + "to": [13.1, 15, 16.1], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 3.1], + "to": [16.1, 15, 3.1], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 13.1], + "to": [16.1, 15, 13.1], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/models/block/shadow_berry_wild_mature.json b/kubejs/assets/betterend/models/block/shadow_berry_wild_mature.json new file mode 100644 index 000000000..8e52d238b --- /dev/null +++ b/kubejs/assets/betterend/models/block/shadow_berry_wild_mature.json @@ -0,0 +1,86 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "1": "betterend:block/wild_crop", + "particle": "betterend:block/shadow_berry", + "texture": "betterend:block/shadow_berry", + "texture1": "betterend:block/shadow_berry_leaves" + }, + "elements": [ + { + "__comment": "Box1", + "from": [ 1, 0, 1 ], + "to": [ 9, 8, 9 ], + "faces": { + "down": { "uv": [ 8, 8, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 0, 0, 8, 8 ], "texture": "#texture" }, + "north": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 8, 8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 10, 0, 5 ], + "to": [ 16, 6, 11 ], + "faces": { + "down": { "uv": [ 9, 9, 15, 15 ], "texture": "#texture" }, + "up": { "uv": [ 1, 1, 7, 7 ], "texture": "#texture" }, + "north": { "uv": [ 0, 10, 6, 16 ], "texture": "#texture" }, + "south": { "uv": [ 0, 10, 6, 16 ], "texture": "#texture" }, + "west": { "uv": [ 0, 10, 6, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 10, 6, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box1", + "from": [ 3, 0, 10 ], + "to": [ 8, 5, 15 ], + "faces": { + "down": { "uv": [ 11, 11, 16, 16 ], "texture": "#texture" }, + "up": { "uv": [ 8, 0, 13, 5 ], "texture": "#texture" }, + "north": { "uv": [ 3, 11, 8, 16 ], "texture": "#texture" }, + "south": { "uv": [ 3, 11, 8, 16 ], "texture": "#texture" }, + "west": { "uv": [ 3, 11, 8, 16 ], "texture": "#texture" }, + "east": { "uv": [ 3, 11, 8, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "PlaneY4", + "from": [ 0, 0.5, 0 ], + "to": [ 16, 0.501, 16 ], + "faces": { + "down": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" }, + "up": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture1" } + } + }, + { + "from": [13.1, -1, 0.1], + "to": [13.1, 15, 16.1], + "shade": false, + "faces": { + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 3.1], + "to": [16.1, 15, 3.1], + "shade": false, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + }, + { + "from": [0.1, -1, 13.1], + "to": [16.1, 15, 13.1], + "shade": false, + "faces": { + "north": {"uv": [16, 0, 0, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/kubejs/assets/betterend/textures/block/amber_root_dead.png b/kubejs/assets/betterend/textures/block/amber_root_dead.png new file mode 100644 index 0000000000000000000000000000000000000000..01abb16327086aca6434d66e0e1748b3d38013c7 GIT binary patch literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP;j@W zi(`mIZ*qbJ>tV??`R9N6_gJabOe$VA>HqdL*GHxt%NZM|UY3Zj`*G~UtFzUYVjA9j z3D3W0T=U~o@4@@WUfA!F31fa1qWXXTH;Kf@M?$S7CO*Ai_wQuGJJlVGALGjYZ?wD_ zgTe~DWM4fw(4`& literal 0 HcmV?d00001 diff --git a/kubejs/assets/betterend/textures/block/blossom_berry_dead.png b/kubejs/assets/betterend/textures/block/blossom_berry_dead.png new file mode 100644 index 0000000000000000000000000000000000000000..9c76e1a0c2fce455aab8d075235ad1dbdd8afc08 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkQ1Fna zi(`mIZ*qbJ>tP0iB;lCwZD01Um?6=1<8}CYiKbnP46h_}959LBTh{65#1SaCNpgPx$)Sq!Tm3&s2Q9pU0M%=-9SkUB!fwa_ literal 0 HcmV?d00001 diff --git a/kubejs/assets/betterend/textures/block/bolux_mushroom_dead.png b/kubejs/assets/betterend/textures/block/bolux_mushroom_dead.png new file mode 100644 index 0000000000000000000000000000000000000000..63ecfb2d2218155697600ba1bc930a33f5f2af1a GIT binary patch literal 528 zcmV+r0`L8aP)$*Z^#Rf&$72p(suqS^jyp%p@uDOySJPFA3swGjs2mJKq`W$G5MI>)!$3 z;iG332m1KxW#ityNpSBj!DIwLF^gGD=P0$o0Z`Q?+T>7Y7w4u?%NRuoPMv3X;Q&=# zo;1+K_CR8JE&xrf2=-?^fI81kHf!nTp6Ai?JS@+}9!LQG`DOsM-g0(vj(qyW7+lpg zO|1afWogTxD-8^QC^3aLlB@mryDY^XNQzl}Y;dT>bl$Q6Y$UrZ1t9(Ylf`s?Y@pU# zbF*4+QEGF|1g^(uz5n#3N%I031_D#2&VAcdLY5mbMUu@aenl2l=BEeb;3?8nTR6 z2;o!gc?4hpY7Rw|v=DW1*GLGTU%zKOUT;y;IYpG1c#9}$VFONCR!7ZxPlf?XZE)RN zC({9Nx}eIkG8}XgeK5sZ-L)gbz|a=LXBn?dgfa}6y?A3%y0M?q*-x3~1%CnBs_7_k Skn3mw0000hcM-)( znZOybdwCvn@dkF^VQoFn_GXEX`*#2ypI_oAQ`qi1zelLwUI~EZ{3->xg3P37v`sOz zU6eVA;eqESzd^TW5jZ1?l`?d{wrI3XF)Rcz+_X9(QP8wHqT920x_MyWx$!5;WizC! c*&i^#Cy;u7L&7MuUH||907*qoM6N<$g3x!N9smFU literal 0 HcmV?d00001 diff --git a/kubejs/assets/betterend/textures/block/chorus_mushroom_dead.png b/kubejs/assets/betterend/textures/block/chorus_mushroom_dead.png new file mode 100644 index 0000000000000000000000000000000000000000..46d1a40fe29970322a5d4e87b0a48f4d55b4247c GIT binary patch literal 239 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`oCO|{#S9GG!XV7ZFl&wkP;jBA zi(`mIZ*qbJ>*53v0hX;Zzy9xDr2YSK@L`VRoH_eH?w>G4;PCGB_Y!}E|4J@5@&CO( zf7$7Rk5^LLrk{^9GV#w(S#x&H|Nmbv>$7oc2DWW_r{pHWECB?3?`{74f3)&64+vOp zjqDLx6!c#bC=s`(?ik1B2Oue+u*Rmst>+IM bIKaSQ?Q6lITCiRc=vW3%S3j3^P6I?<-Euex9}JfQdBCan?}P4Z(Zr zW`z#{tvZUbMD;rsb<4%CzX<+C8r>s=z?vTC6k6S3bcYaNjKb)iX|kNG9WsGY_52r^ zraANM$cvKWHGKDMO$-6=H9`o|H0O8?=g(hoyoS16-4{4JqE*iqA6LBk>ka46U+`p; zV70<%g|j0UTlndR@4485HRhfm&59C;45Q}t+qZnM+0ZO1Wa6pnnh+vJ4g9&yk#eG{ zm-htXqmv)!QQeZ|IcJ|AFpQc%UVFSVw5uat{(dfa2dR*f2S*#a-6g-hG6ZXoSAa3esr~IPWOR1!f#*+9k$}4mwpZ7rRx8F~M+}<2yT#gu7%WmA5kq9NS~4gFfU%Ac0&Vk< z?bY>uLGYUB6?S&a!Qx%Q94yZC2$}8g6p}$HocAoMitW`kAq3JiMS3@)$DSA*Mk|8T z7&GFX!Rmn!Bf~fXuzB>HDW z%bOdjvIL;Wb7YJTXBB5pALE_o^mxtW4KX;nyGw>av1}U-mP@Sj~9_~4?Wy>1*Rz=o#XJ2i} zHOm|OKg{K!TdW%=pO3LP->S%bK4-_a0oZ%F5`fcAHP+bcj!_f=aQJ>JN+}%2!Lm1G zF~;)XHcFzk=3sxHpincMrwhqsGMJ``Qi|dAtC4S2q+6`VcPkNoZr%*f^B9gs3q#jM zWbv)mn&Xdq84L#hcaUqAWipu%h9Lms@tA(UPcoUr_kDsw%}68?xQ)_g2fNRgl1`_w zEQ?esh1aQy)*8#Qm`