From 23a1bbba088ab1b3a4b2f1015e6ef8537b978c55 Mon Sep 17 00:00:00 2001 From: paulevsGitch Date: Fri, 25 Dec 2020 11:09:46 +0300 Subject: [PATCH] Jellyshroom --- .../blocks/BlockSmallJellyshroom.java | 70 ++++++++ .../java/ru/betterend/registry/EndBlocks.java | 4 + .../blockstates/small_jellyshroom.json | 27 ++++ .../assets/betterend/lang/en_us.json | 12 +- .../assets/betterend/lang/ru_ru.json | 12 +- .../models/block/small_jellyshroom_floor.json | 149 ++++++++++++++++++ .../block/small_jellyshroom_wall_1.json | 96 +++++++++++ .../block/small_jellyshroom_wall_2.json | 109 +++++++++++++ .../textures/block/jellyshroom_cap.png | Bin 0 -> 2172 bytes .../block/jellyshroom_wall_stem_1.png | Bin 0 -> 295 bytes .../block/jellyshroom_wall_stem_2.png | Bin 0 -> 314 bytes .../block/jellyshroom_wall_stem_3.png | Bin 0 -> 274 bytes .../textures/block/small_jellyshroom_stem.png | Bin 0 -> 419 bytes 13 files changed, 477 insertions(+), 2 deletions(-) create mode 100644 src/main/java/ru/betterend/blocks/BlockSmallJellyshroom.java create mode 100644 src/main/resources/assets/betterend/blockstates/small_jellyshroom.json create mode 100644 src/main/resources/assets/betterend/models/block/small_jellyshroom_floor.json create mode 100644 src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_1.json create mode 100644 src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_2.json create mode 100644 src/main/resources/assets/betterend/textures/block/jellyshroom_cap.png create mode 100644 src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_1.png create mode 100644 src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_2.png create mode 100644 src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_3.png create mode 100644 src/main/resources/assets/betterend/textures/block/small_jellyshroom_stem.png diff --git a/src/main/java/ru/betterend/blocks/BlockSmallJellyshroom.java b/src/main/java/ru/betterend/blocks/BlockSmallJellyshroom.java new file mode 100644 index 00000000..a28878bd --- /dev/null +++ b/src/main/java/ru/betterend/blocks/BlockSmallJellyshroom.java @@ -0,0 +1,70 @@ +package ru.betterend.blocks; + +import java.util.EnumMap; +import java.util.List; + +import com.google.common.collect.Lists; +import com.google.common.collect.Maps; + +import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; +import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.Material; +import net.minecraft.block.ShapeContext; +import net.minecraft.enchantment.EnchantmentHelper; +import net.minecraft.enchantment.Enchantments; +import net.minecraft.item.ItemStack; +import net.minecraft.loot.context.LootContext; +import net.minecraft.loot.context.LootContextParameters; +import net.minecraft.sound.BlockSoundGroup; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.util.shape.VoxelShapes; +import net.minecraft.world.BlockView; +import ru.betterend.blocks.basis.BlockAttached; +import ru.betterend.client.render.ERenderLayer; +import ru.betterend.interfaces.IRenderTypeable; + +public class BlockSmallJellyshroom extends BlockAttached implements IRenderTypeable { + private static final EnumMap BOUNDING_SHAPES = Maps.newEnumMap(Direction.class); + + public BlockSmallJellyshroom() { + super(FabricBlockSettings.of(Material.PLANT) + .breakByTool(FabricToolTags.SHEARS) + .sounds(BlockSoundGroup.NETHER_WART) + .breakByHand(true) + .noCollision()); + } + + @Override + public VoxelShape getOutlineShape(BlockState state, BlockView view, BlockPos pos, ShapeContext ePos) { + return BOUNDING_SHAPES.get(state.get(FACING)); + } + + @Override + public List getDroppedStacks(BlockState state, LootContext.Builder builder) { + ItemStack tool = builder.get(LootContextParameters.TOOL); + if (tool != null && tool.getItem().isIn(FabricToolTags.SHEARS) || EnchantmentHelper.getLevel(Enchantments.SILK_TOUCH, tool) > 0) { + return Lists.newArrayList(new ItemStack(this)); + } + else { + return Lists.newArrayList(); + } + } + + @Override + public ERenderLayer getRenderLayer() { + return ERenderLayer.CUTOUT; + } + + static { + BOUNDING_SHAPES.put(Direction.UP, Block.createCuboidShape(3, 0, 3, 13, 16, 13)); + BOUNDING_SHAPES.put(Direction.DOWN, VoxelShapes.cuboid(0.0, 0.5, 0.0, 1.0, 1.0, 1.0)); + BOUNDING_SHAPES.put(Direction.NORTH, VoxelShapes.cuboid(0.0, 0.0, 0.5, 1.0, 1.0, 1.0)); + BOUNDING_SHAPES.put(Direction.SOUTH, VoxelShapes.cuboid(0.0, 0.0, 0.0, 1.0, 1.0, 0.5)); + BOUNDING_SHAPES.put(Direction.WEST, VoxelShapes.cuboid(0.5, 0.0, 0.0, 1.0, 1.0, 1.0)); + BOUNDING_SHAPES.put(Direction.EAST, VoxelShapes.cuboid(0.0, 0.0, 0.0, 0.5, 1.0, 1.0)); + } +} diff --git a/src/main/java/ru/betterend/registry/EndBlocks.java b/src/main/java/ru/betterend/registry/EndBlocks.java index 1c7f1cf6..e389d095 100644 --- a/src/main/java/ru/betterend/registry/EndBlocks.java +++ b/src/main/java/ru/betterend/registry/EndBlocks.java @@ -58,6 +58,7 @@ import ru.betterend.blocks.BlockRespawnObelisk; import ru.betterend.blocks.BlockShadowBerry; import ru.betterend.blocks.BlockShadowGrass; import ru.betterend.blocks.BlockSilkMothNest; +import ru.betterend.blocks.BlockSmallJellyshroom; import ru.betterend.blocks.BlockSulphurCrystal; import ru.betterend.blocks.BlockTenaneaFlowers; import ru.betterend.blocks.BlockTenaneaSapling; @@ -209,6 +210,9 @@ public class EndBlocks { public static final Block GLOWING_PILLAR_LUMINOPHOR = registerBlock("glowing_pillar_luminophor", new BlockGlowingPillarLuminophor()); public static final Block GLOWING_PILLAR_LEAVES = registerBlock("glowing_pillar_leaves", new BlockFur(GLOWING_PILLAR_SEED, 15, 3)); + public static final Block SMALL_JELLYSHROOM = registerBlock("small_jellyshroom", new BlockSmallJellyshroom()); + + // Water plants public static final Block BUBBLE_CORAL = registerBlock("bubble_coral", new BlockBubbleCoral()); public static final Block MENGER_SPONGE = registerBlock("menger_sponge", new BlockMengerSponge()); public static final Block MENGER_SPONGE_WET = registerBlock("menger_sponge_wet", new BlockMengerSpongeWet()); diff --git a/src/main/resources/assets/betterend/blockstates/small_jellyshroom.json b/src/main/resources/assets/betterend/blockstates/small_jellyshroom.json new file mode 100644 index 00000000..210a9636 --- /dev/null +++ b/src/main/resources/assets/betterend/blockstates/small_jellyshroom.json @@ -0,0 +1,27 @@ +{ + "variants": { + "facing=north": [ + { "model": "betterend:block/small_jellyshroom_wall_1", "y": 180 }, + { "model": "betterend:block/small_jellyshroom_wall_2", "y": 180 } + ], + "facing=south": [ + { "model": "betterend:block/small_jellyshroom_wall_1" }, + { "model": "betterend:block/small_jellyshroom_wall_2" } + ], + "facing=east": [ + { "model": "betterend:block/small_jellyshroom_wall_1", "y": 270 }, + { "model": "betterend:block/small_jellyshroom_wall_2", "y": 270 } + ], + "facing=west": [ + { "model": "betterend:block/small_jellyshroom_wall_1", "y": 90 }, + { "model": "betterend:block/small_jellyshroom_wall_2", "y": 90 } + ], + "facing=up": [ + { "model": "betterend:block/small_jellyshroom_floor" }, + { "model": "betterend:block/small_jellyshroom_floor", "y": 90 }, + { "model": "betterend:block/small_jellyshroom_floor", "y": 180 }, + { "model": "betterend:block/small_jellyshroom_floor", "y": 270 } + ], + "facing=down": { "model": "betterend:block/glowing_pillar_leaves_up", "x": 180 } + } +} diff --git a/src/main/resources/assets/betterend/lang/en_us.json b/src/main/resources/assets/betterend/lang/en_us.json index 90eaae35..745046de 100644 --- a/src/main/resources/assets/betterend/lang/en_us.json +++ b/src/main/resources/assets/betterend/lang/en_us.json @@ -511,5 +511,15 @@ "block.betterend.umbrella_tree_stripped_bark": "Stripped Umbrella Tree Bark", "block.betterend.umbrella_tree_stripped_log": "Stripped Umbrella Tree Log", "block.betterend.umbrella_tree_trapdoor": "Umbrella Tree Trapdoor", - "block.betterend.umbrella_tree_membrane": "Umbrella Tree Membrane" + "block.betterend.umbrella_tree_membrane": "Umbrella Tree Membrane", + + "biome.betterend.umbrella_jungle": "Umbrella Jungle", + "block.betterend.jungle_grass": "Jungle Grass", + "block.betterend.jungle_moss": "Jungle Moss", + "block.betterend.jungle_moss_path": "Jungle Moss Path", + "block.betterend.small_jellyshroom": "Small Jellyshroom", + "block.betterend.twisted_umbrella_moss": "Twisted Umbrella Moss", + "block.betterend.twisted_umbrella_moss_tall": "Twisted Umbrella Moss Tall", + "block.betterend.umbrella_tree_cluster": "Umbrella Tree Cluster", + "block.betterend.umbrella_tree_cluster_empty": "Empty Umbrella Tree Cluster" } diff --git a/src/main/resources/assets/betterend/lang/ru_ru.json b/src/main/resources/assets/betterend/lang/ru_ru.json index 8d96aefc..d56eb055 100644 --- a/src/main/resources/assets/betterend/lang/ru_ru.json +++ b/src/main/resources/assets/betterend/lang/ru_ru.json @@ -513,5 +513,15 @@ "block.betterend.umbrella_tree_stripped_bark": "Обтёсанная кора зонтичного дерева", "block.betterend.umbrella_tree_stripped_log": "Обтёсанное бревно зонтичного дерева", "block.betterend.umbrella_tree_trapdoor": "Люк из зонтичного дерева", - "block.betterend.umbrella_tree_membrane": "Мембрана зонтичного дерева" + "block.betterend.umbrella_tree_membrane": "Мембрана зонтичного дерева", + + "biome.betterend.umbrella_jungle": "Зонтичные джунгли", + "block.betterend.jungle_grass": "Трава джунглей", + "block.betterend.jungle_moss": "Мох джунглей", + "block.betterend.jungle_moss_path": "Тропа из мха джунглей", + "block.betterend.small_jellyshroom": "Маленький слизнегриб", + "block.betterend.twisted_umbrella_moss": "Закрученный зонтичный мох", + "block.betterend.twisted_umbrella_moss_tall": "Высокий закрученный зонтичный мох", + "block.betterend.umbrella_tree_cluster": "Кластер зонтичного дерева", + "block.betterend.umbrella_tree_cluster_empty": "Пустой кластер хонтичного дерева" } \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/small_jellyshroom_floor.json b/src/main/resources/assets/betterend/models/block/small_jellyshroom_floor.json new file mode 100644 index 00000000..81135b41 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/small_jellyshroom_floor.json @@ -0,0 +1,149 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/small_jellyshroom_stem", + "texture": "betterend:block/small_jellyshroom_stem", + "cap": "betterend:block/jellyshroom_cap" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 2.375, 0, 2.375 ], + "to": [ 2.376, 16, 18.375 ], + "rotation": { "origin": [ 2.375, 0, 2.375 ], "axis": "y", "angle": 45 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__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 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" }, + "east": { "uv": [ 0, 0, 16, 16 ], "texture": "#texture" } + } + }, + { + "__comment": "Box3", + "from": [ 5.5, 11, 5.5 ], + "to": [ 10.5, 14, 10.5 ], + "faces": { + "down": { "uv": [ 5, 0, 10, 5 ], "texture": "#cap" }, + "up": { "uv": [ 0, 0, 5, 5 ], "texture": "#cap" }, + "north": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "south": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "west": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "east": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 2.5, 5, 9.5 ], + "to": [ 6.5, 8, 13.5 ], + "faces": { + "down": { "uv": [ 4, 5, 8, 9 ], "texture": "#cap" }, + "up": { "uv": [ 0, 5, 4, 9 ], "texture": "#cap" }, + "north": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "south": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "west": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "east": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 3, 4, 3 ], + "to": [ 6, 6, 6 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 9.5, 10, 9.5 ], + "to": [ 12.5, 12, 12.5 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 3.5, 10.5, 3.5 ], + "to": [ 6.5, 12.5, 6.5 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 10.5, 11, 4 ], + "to": [ 12.5, 12, 6 ], + "faces": { + "down": { "uv": [ 2, 12, 4, 14 ], "texture": "#cap" }, + "up": { "uv": [ 0, 12, 2, 14 ], "texture": "#cap" }, + "north": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "south": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "west": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "east": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 10, 5, 2.5 ], + "to": [ 14, 7, 6.5 ], + "faces": { + "down": { "uv": [ 4, 5, 8, 9 ], "texture": "#cap" }, + "up": { "uv": [ 0, 5, 4, 9 ], "texture": "#cap" }, + "north": { "uv": [ 8, 5, 12, 7 ], "texture": "#cap" }, + "south": { "uv": [ 8, 5, 12, 7 ], "texture": "#cap" }, + "west": { "uv": [ 8, 5, 12, 7 ], "texture": "#cap" }, + "east": { "uv": [ 8, 5, 12, 7 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 4, 10, 10 ], + "to": [ 6, 11, 12 ], + "faces": { + "down": { "uv": [ 2, 12, 4, 14 ], "texture": "#cap" }, + "up": { "uv": [ 0, 12, 2, 14 ], "texture": "#cap" }, + "north": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "south": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "west": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" }, + "east": { "uv": [ 4, 12, 6, 13 ], "texture": "#cap" } + } + }, + { + "__comment": "Box3", + "from": [ 10, 4, 10 ], + "to": [ 13, 6, 13 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_1.json b/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_1.json new file mode 100644 index 00000000..53b6893a --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_1.json @@ -0,0 +1,96 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/jellyshroom_wall_stem_1", + "branch_1": "betterend:block/jellyshroom_wall_stem_1", + "branch_2": "betterend:block/jellyshroom_wall_stem_2", + "branch_3": "betterend:block/jellyshroom_wall_stem_3", + "cap": "betterend:block/jellyshroom_cap" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 8, 0, 0 ], + "to": [ 8.001, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_1" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_1" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 11, 0, 0 ], + "to": [ 11.001, 16, 16 ], + "rotation": { "origin": [ 11, 0, 0 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_3" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_3" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 5, 0, 0 ], + "to": [ 5.001, 16, 16 ], + "rotation": { "origin": [ 5, 0, 0 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_3" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_3" } + } + }, + { + "__comment": "Box4", + "from": [ 5.5, 10, 5.5 ], + "to": [ 10.5, 13, 10.5 ], + "faces": { + "down": { "uv": [ 5, 0, 10, 5 ], "texture": "#cap" }, + "up": { "uv": [ 0, 0, 5, 5 ], "texture": "#cap" }, + "north": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "south": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "west": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "east": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 11.5, 7, 4 ], + "to": [ 15.5, 10, 8 ], + "faces": { + "down": { "uv": [ 4, 5, 8, 9 ], "texture": "#cap" }, + "up": { "uv": [ 0, 5, 4, 9 ], "texture": "#cap" }, + "north": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "south": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "west": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "east": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 1, 7, 4.5 ], + "to": [ 4, 9, 7.5 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 9, 2 ], + "to": [ 9.5, 11, 5 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_2.json b/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_2.json new file mode 100644 index 00000000..2bdc5649 --- /dev/null +++ b/src/main/resources/assets/betterend/models/block/small_jellyshroom_wall_2.json @@ -0,0 +1,109 @@ +{ + "__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio", + "textures": { + "particle": "betterend:block/jellyshroom_wall_stem_1", + "branch_1": "betterend:block/jellyshroom_wall_stem_1", + "branch_2": "betterend:block/jellyshroom_wall_stem_2", + "branch_3": "betterend:block/jellyshroom_wall_stem_3", + "cap": "betterend:block/jellyshroom_cap" + }, + "elements": [ + { + "__comment": "PlaneX1", + "from": [ 8, 0, 0 ], + "to": [ 8.001, 16, 16 ], + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_3" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_3" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 11, 0, 0 ], + "to": [ 11.001, 16, 16 ], + "rotation": { "origin": [ 11, 0, 0 ], "axis": "y", "angle": 22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_1" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_1" } + } + }, + { + "__comment": "PlaneX1", + "from": [ 5, 0, 0 ], + "to": [ 5.001, 16, 16 ], + "rotation": { "origin": [ 5, 0, 0 ], "axis": "y", "angle": -22.5 }, + "shade": false, + "faces": { + "west": { "uv": [ 0, 0, 16, 16 ], "texture": "#branch_2" }, + "east": { "uv": [ 16, 0, 0, 16 ], "texture": "#branch_2" } + } + }, + { + "__comment": "Box4", + "from": [ 11, 10, 5 ], + "to": [ 16, 13, 10 ], + "faces": { + "down": { "uv": [ 5, 0, 10, 5 ], "texture": "#cap" }, + "up": { "uv": [ 0, 0, 5, 5 ], "texture": "#cap" }, + "north": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "south": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "west": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" }, + "east": { "uv": [ 10, 0, 15, 3 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 10, 9, 1.5 ], + "to": [ 14, 12, 5.5 ], + "faces": { + "down": { "uv": [ 4, 5, 8, 9 ], "texture": "#cap" }, + "up": { "uv": [ 0, 5, 4, 9 ], "texture": "#cap" }, + "north": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "south": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "west": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "east": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 0.5, 8, 6.5 ], + "to": [ 3.5, 10, 9.5 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 1.5, 10, 2.5 ], + "to": [ 5.5, 13, 6.5 ], + "faces": { + "down": { "uv": [ 4, 5, 8, 9 ], "texture": "#cap" }, + "up": { "uv": [ 0, 5, 4, 9 ], "texture": "#cap" }, + "north": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "south": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "west": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" }, + "east": { "uv": [ 8, 5, 12, 8 ], "texture": "#cap" } + } + }, + { + "__comment": "Box4", + "from": [ 6.5, 8, 5 ], + "to": [ 9.5, 10, 8 ], + "faces": { + "down": { "uv": [ 3, 9, 6, 12 ], "texture": "#cap" }, + "up": { "uv": [ 0, 9, 3, 12 ], "texture": "#cap" }, + "north": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "south": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "west": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" }, + "east": { "uv": [ 6, 9, 9, 11 ], "texture": "#cap" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/betterend/textures/block/jellyshroom_cap.png b/src/main/resources/assets/betterend/textures/block/jellyshroom_cap.png new file mode 100644 index 0000000000000000000000000000000000000000..2799ee637d7f6c97d02174ea3631a9c8533773c8 GIT binary patch literal 2172 zcmb_eYitx%6rNJ31=>=@K#Kyy@WT?Ao!35Q2bNNI(U!1C%97TI+IigFPP#iY%uKt} z*4P%M!K6u7$}50LV=!VwLGT9+rc@znR0!1=Arg5=LLi|KP^2li-r4SM01Fc0CbM(r z&UeoFzH`pKcivgK;>E&AGbSMjQdm_PsD}4q`^wLQ|Fdr-d3c+sRlaN>NYPRI%Go@> z=otjb>ybmXW^HgeC#o?AFR21>STPNv5oA%hrSW0|Fi`Qz%U z>eUCh&c41U08DK#n2j+emsl(t!Z4RMK^f_UjEOcv%^D!8fuT0)B3Rl4Y0kCPXq;aM zys7FTRgGo}wK78)_51C@uxMG0tVn9yn0J>A2=FHGVKhmTI7Q>MGepyz)5B5j`6R=U z>7zT`TqnNZ{vpwowxdlY7< zVKdI_pdtdZ^(Y-hJcz%+H$9v^Pf;T4W(C|ux>(#PIT@U1!eLx=xxG99UN=p$8TI$E zAMHSvbGb4d_?Ya|$rbB)B?91{Nnnq!=h6Cc%xe65Mg6aO2z$32Z8hTlE=;|(PoWC$P|Mr_Vdd|(6 zntNpDD{BjWSiYcO=d-5^&a}M&ZjD@>;y>^mmY3iXGq$x{+a3BC9p`?(6fY?JYvaK7=Du5{i`z!>-MfB{&huXytn2)US~#%%z*dXg*}6YhXx}rz zQ_Fmt_~yBO`tvo*-fHL^oLznxB%Z7htn1fjokWUTe>x?1b)m$y9h1I%_1cxcYdSBl z8Z2=jnR#ULz7x}@ZWOFPhf3Ms`14B$^1SnG?Qk-=uPl1zy$Ri| ziJn8B{Ic#&_fT|C$A+PCb(^Sl1xQX}4qMpX*DFmtdefc!K#NQT1IPN4$#;8*6HN!( u%2)sTep&yP>MnU8nM{_JV*A$P_=YL;M3>p*8Kx(q2xpW literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_1.png b/src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_1.png new file mode 100644 index 0000000000000000000000000000000000000000..ea4576e2555c515ce369db812509bb55d8f2d574 GIT binary patch literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!9AWXjv*HQ$$$R;w`W#u;Pjfz+qRf7s<`T) z1dGezpnu+JA&+=dMVK9=7Wgb;yu&bIt&Y~V@ zD}lWt_CwNL&Zd<-hZ!dH*5BKkCh&#l=Xt&5OlgmqeHJBZ7DTt~aeA0DBQ4O}*KLJB z*a4PJfkumkWImm-`IF#VzrQA>!fx^0i4)QU5|}a>9?tK7*I>FY&b0mG-ECJ{Ob;=h zSij&%3xD>xcL%lj4n=G(UOQW9%FzQC_Pn;6(#mUK01Sw$H81U#Mf?YPjlt8^&t;uc GLK6TGfObOw literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_3.png b/src/main/resources/assets/betterend/textures/block/jellyshroom_wall_stem_3.png new file mode 100644 index 0000000000000000000000000000000000000000..264636bdfb8f9bfaa1ce7b8e867945254991ff1a GIT binary patch literal 274 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!R4MVjv*HQ$$$R;w`W#u;Pjfz>(<2>Ra~`D zM~6X#TVajmZuWC(te5qqTn`6z7)c&xaC39pFh8=zWuej!#xU_c5#>!8^@g04t&23o zzVQ4!uebcrhv#>*S8&uF&=8u%W5#gvq{7)nd9!-12X!q}+QGQkrHb_i!-Qq~$&)78&qol`;+0Iv{VQUCw| literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/betterend/textures/block/small_jellyshroom_stem.png b/src/main/resources/assets/betterend/textures/block/small_jellyshroom_stem.png new file mode 100644 index 0000000000000000000000000000000000000000..fe3df53b00b114a5311eedd4ebabdee3f92bcb12 GIT binary patch literal 419 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc4Hlj*jv*HQ$$$R;w`W#u;Pjfz%QlfQs<`T* z1Y64b}zVXNU@UxB|rQMvESY?d)?U_$B%DST>De^TdJZWp@NZZR{7obO%f7uYpfd=MebcHr*-%M14HVIxs}HqZC3yTmci52 K&t;ucLK6Un-kg5` literal 0 HcmV?d00001