From 93535fbacc013524a71b84a6326e2e37877acd78 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 11:40:10 -0400 Subject: [PATCH 01/79] Add files via upload --- .../sculk_depths/textures/block/auric_vines.png | Bin 0 -> 337 bytes .../textures/block/auric_vines_end.png | Bin 0 -> 485 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/sculk_depths/textures/block/auric_vines.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/auric_vines_end.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/auric_vines.png b/src/main/resources/assets/sculk_depths/textures/block/auric_vines.png new file mode 100644 index 0000000000000000000000000000000000000000..7031498322254fc8963dbcf021f5404ecbc7e1de GIT binary patch literal 337 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G|m0G|-o#jEo79cygujyiq0bN{jCvzHfaKE3te?Onagm+UybAg8(G`KvRB zZ=X2x@Zs96jt8y8gqDS?t8zu^C61tRzs5v%n*=n1O-sAP6(=n3(+*DA?!e z;uxY4tm@Awbl8By>B_d(*M9!LFE;6PY?6aOV}e-PGQkVnCfeQy6uNiS8pW12tj*`Y zEfwOW;t--&*u>qiTCz>1B_ZM>+or3}<~>{(?U&kUE%1D+tDGuwYI-=nHH=g#VmsY}gnWUsS$HZ@`TEThj%uGiRN_q*3< Q0$s-7>FVdQ&MBb@0H(%}ZU6uP literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/auric_vines_end.png b/src/main/resources/assets/sculk_depths/textures/block/auric_vines_end.png new file mode 100644 index 0000000000000000000000000000000000000000..6493de0ddd79eecbb21630f7b28a3e22f0d9ee56 GIT binary patch literal 485 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lid0X`wFt=&=kjy0aX+_`vF{>~$vIn5oXE_F^=GO4*MX6M-zn@?}eYU*j~ zO04e4-f(Ky;=P+Y7A`F5XkL4G_1>dRn@*kRTfTVPgsf@A4%(E*zh{ zeCnQ~&5gaem!3bIyRz!&^~DEo@2a0r)6|`I;_B2b=QhvWw7PymZS~|SJ5Dc{wP{)P zdDjZeY|(%*5SjqPXOKMwJb9MNST%d`33(c12EKVy#NX!&H|6f zVg?4jgCNYfV`BDOpkSY;i(`mJux(Gc*dYTRmfV?gR-Cd|iGIP|o04=U>C4 zQ;&D%xTM%T{+YDWN!&7P>%E-+OgG>1AD?{5e~$k3*-j!y|1RvE@jzXiEpX2Q9kqJ~ f@=JGg_&?LnSJvp0sh+F?bQy!EtDnm{r-UW|SbX-n literal 0 HcmV?d00001 From d81c91235f5a36c3bc13f0ac64ee77dc83aaa940 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 11:44:51 -0400 Subject: [PATCH 02/79] Update ModBlocks.java --- src/main/java/net/ugi/sculk_depths/block/ModBlocks.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java b/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java index ea933d12..b593b2f7 100644 --- a/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java +++ b/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java @@ -394,6 +394,12 @@ public class ModBlocks { //auric //TODO check blocksettings + + public static final Block AURIC_VINES = registerBlockWithoutBlockItem("auric_vines", + new Auric_VinesBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); + public static final Block AURIC_VINES_END = registerBlock("auric_vines_end", + new Auric_Vines_EndBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); + public static final Block AURIC_SPORE_BLOCK = registerBlock("auric_spore_block", new ShroomBlock(AbstractBlock.Settings.create().strength(0.3f).sounds(BlockSoundGroup.MOSS_BLOCK)), ModItemGroup.SCULK_DEPTHS); @@ -442,4 +448,4 @@ private static Item registerBlockItem(String name, Block block, RegistryKey Date: Sat, 12 Oct 2024 11:48:19 -0400 Subject: [PATCH 03/79] auric vines block models 1 --- .../assets/sculk_depths/models/block/auric_vines.json | 6 ++++++ .../assets/sculk_depths/models/block/auric_vines_end.json | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 src/main/resources/assets/sculk_depths/models/block/auric_vines.json create mode 100644 src/main/resources/assets/sculk_depths/models/block/auric_vines_end.json diff --git a/src/main/resources/assets/sculk_depths/models/block/auric_vines.json b/src/main/resources/assets/sculk_depths/models/block/auric_vines.json new file mode 100644 index 00000000..ea5c4cc1 --- /dev/null +++ b/src/main/resources/assets/sculk_depths/models/block/auric_vines.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "sculk_depths:block/auric_vines" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/sculk_depths/models/block/auric_vines_end.json b/src/main/resources/assets/sculk_depths/models/block/auric_vines_end.json new file mode 100644 index 00000000..a5ac2efa --- /dev/null +++ b/src/main/resources/assets/sculk_depths/models/block/auric_vines_end.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/tinted_cross", + "textures": { + "cross": "sculk_depths:block/auric_vines_end" + } +} \ No newline at end of file From 267868cd8035ff7cbba21359d07bc99b684bde27 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 11:50:57 -0400 Subject: [PATCH 04/79] auric vines item model --- .../assets/sculk_depths/models/item/auric_vines_end.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/resources/assets/sculk_depths/models/item/auric_vines_end.json diff --git a/src/main/resources/assets/sculk_depths/models/item/auric_vines_end.json b/src/main/resources/assets/sculk_depths/models/item/auric_vines_end.json new file mode 100644 index 00000000..14de9605 --- /dev/null +++ b/src/main/resources/assets/sculk_depths/models/item/auric_vines_end.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "sculk_depths:block/auric_vines" + } +} \ No newline at end of file From d4c023d345c1bdc0c70b11ede0b8c992767e0cbd Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 12:48:13 -0400 Subject: [PATCH 05/79] here are the classes for them --- .../block/custom/Auric_VinesBlock.java | 26 +++++++++++++ .../block/custom/Auric_Vines_EndBlock.java | 37 +++++++++++++++++++ 2 files changed, 63 insertions(+) create mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java create mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java new file mode 100644 index 00000000..8416ad49 --- /dev/null +++ b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java @@ -0,0 +1,26 @@ +package net.ugi.sculk_depths.block.custom; + +import com.mojang.serialization.MapCodec; +import net.minecraft.block.*; +import net.minecraft.util.math.BlockPos; +import net.minecraft.util.math.Direction; +import net.minecraft.util.shape.VoxelShape; +import net.minecraft.world.BlockRenderView; +import net.ugi.sculk_depths.block.ModBlocks; +import org.jetbrains.annotations.Nullable; + +public class Auric_VinesBlock extends AbstractPlantBlock { + @Override + protected MapCodec getCodec() { + return null; + } + public static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); + + public Auric_VinesBlock(AbstractBlock.Settings settings) { + super(settings, Direction.DOWN, SHAPE, false); + } + + protected AbstractPlantStemBlock getStem() { + return (AbstractPlantStemBlock) ModBlocks.AURIC_VINES_END; + } +} \ No newline at end of file diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java new file mode 100644 index 00000000..a44b0c31 --- /dev/null +++ b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java @@ -0,0 +1,37 @@ +package net.ugi.sculk_depths.block.custom; + + +import com.mojang.serialization.MapCodec; +import net.minecraft.block.AbstractPlantStemBlock; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.VineLogic; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.ugi.sculk_depths.block.ModBlocks; + +public class Auric_Vines_EndBlock extends AbstractPlantStemBlock { + @Override + protected MapCodec getCodec() { + return null; + } + + protected static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); + + public Auric_Vines_EndBlock(Settings settings) { + super(settings, Direction.DOWN, SHAPE, false, 0.1); + } + + protected int getGrowthLength(Random random) { + return VineLogic.getGrowthLength(random); + } + + protected Block getPlant() { + return ModBlocks.AURIC_VINES; + } + + protected boolean chooseStemState(BlockState state) { + return VineLogic.isValidForWeepingStem(state); + } +} From 68be63b31c68546f3e709b1d342f941da8390331 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 12:50:03 -0400 Subject: [PATCH 06/79] auric vines blockstates --- .../assets/sculk_depths/blockstates/auric_vines.json | 7 +++++++ .../assets/sculk_depths/blockstates/auric_vines_end.json | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 src/main/resources/assets/sculk_depths/blockstates/auric_vines.json create mode 100644 src/main/resources/assets/sculk_depths/blockstates/auric_vines_end.json diff --git a/src/main/resources/assets/sculk_depths/blockstates/auric_vines.json b/src/main/resources/assets/sculk_depths/blockstates/auric_vines.json new file mode 100644 index 00000000..1a35b19c --- /dev/null +++ b/src/main/resources/assets/sculk_depths/blockstates/auric_vines.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "sculk_depths:block/auric_vines" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/sculk_depths/blockstates/auric_vines_end.json b/src/main/resources/assets/sculk_depths/blockstates/auric_vines_end.json new file mode 100644 index 00000000..e6c224d9 --- /dev/null +++ b/src/main/resources/assets/sculk_depths/blockstates/auric_vines_end.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "sculk_depths:block/auric_vines_end" + } + } +} \ No newline at end of file From 5b06b764bc7eec9afae1dc03f24fb323acd472fa Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 12:59:42 -0400 Subject: [PATCH 07/79] Delete src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java --- .../block/custom/Auric_VinesBlock.java | 26 ------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java deleted file mode 100644 index 8416ad49..00000000 --- a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_VinesBlock.java +++ /dev/null @@ -1,26 +0,0 @@ -package net.ugi.sculk_depths.block.custom; - -import com.mojang.serialization.MapCodec; -import net.minecraft.block.*; -import net.minecraft.util.math.BlockPos; -import net.minecraft.util.math.Direction; -import net.minecraft.util.shape.VoxelShape; -import net.minecraft.world.BlockRenderView; -import net.ugi.sculk_depths.block.ModBlocks; -import org.jetbrains.annotations.Nullable; - -public class Auric_VinesBlock extends AbstractPlantBlock { - @Override - protected MapCodec getCodec() { - return null; - } - public static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); - - public Auric_VinesBlock(AbstractBlock.Settings settings) { - super(settings, Direction.DOWN, SHAPE, false); - } - - protected AbstractPlantStemBlock getStem() { - return (AbstractPlantStemBlock) ModBlocks.AURIC_VINES_END; - } -} \ No newline at end of file From 3740b5cb2b1d4cba634f6a1ab14bc92a26e6005c Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 12:59:49 -0400 Subject: [PATCH 08/79] Delete src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java --- .../block/custom/Auric_Vines_EndBlock.java | 37 ------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java deleted file mode 100644 index a44b0c31..00000000 --- a/src/main/java/net/ugi/sculk_depths/block/custom/Auric_Vines_EndBlock.java +++ /dev/null @@ -1,37 +0,0 @@ -package net.ugi.sculk_depths.block.custom; - - -import com.mojang.serialization.MapCodec; -import net.minecraft.block.AbstractPlantStemBlock; -import net.minecraft.block.Block; -import net.minecraft.block.BlockState; -import net.minecraft.block.VineLogic; -import net.minecraft.util.math.Direction; -import net.minecraft.util.math.random.Random; -import net.minecraft.util.shape.VoxelShape; -import net.ugi.sculk_depths.block.ModBlocks; - -public class Auric_Vines_EndBlock extends AbstractPlantStemBlock { - @Override - protected MapCodec getCodec() { - return null; - } - - protected static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); - - public Auric_Vines_EndBlock(Settings settings) { - super(settings, Direction.DOWN, SHAPE, false, 0.1); - } - - protected int getGrowthLength(Random random) { - return VineLogic.getGrowthLength(random); - } - - protected Block getPlant() { - return ModBlocks.AURIC_VINES; - } - - protected boolean chooseStemState(BlockState state) { - return VineLogic.isValidForWeepingStem(state); - } -} From 63f0fd11d50bf23b4a3390e89600db295d85dd38 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 12 Oct 2024 13:00:45 -0400 Subject: [PATCH 09/79] fixed underscore naming problem --- .../block/custom/AuricVinesBlock.java | 23 ++++++++++++ .../block/custom/AuricVinesEndBlock.java | 37 +++++++++++++++++++ 2 files changed, 60 insertions(+) create mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesBlock.java create mode 100644 src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesEndBlock.java diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesBlock.java new file mode 100644 index 00000000..4b51cbad --- /dev/null +++ b/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesBlock.java @@ -0,0 +1,23 @@ +package net.ugi.sculk_depths.block.custom; + +import com.mojang.serialization.MapCodec; +import net.minecraft.block.*; +import net.minecraft.util.math.Direction; +import net.minecraft.util.shape.VoxelShape; +import net.ugi.sculk_depths.block.ModBlocks; + +public class AuricVinesBlock extends AbstractPlantBlock { + @Override + protected MapCodec getCodec() { + return null; + } + public static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); + + public AuricVinesBlock(AbstractBlock.Settings settings) { + super(settings, Direction.DOWN, SHAPE, false); + } + + protected AbstractPlantStemBlock getStem() { + return (AbstractPlantStemBlock) ModBlocks.AURIC_VINES_END; + } +} \ No newline at end of file diff --git a/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesEndBlock.java b/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesEndBlock.java new file mode 100644 index 00000000..25f7389c --- /dev/null +++ b/src/main/java/net/ugi/sculk_depths/block/custom/AuricVinesEndBlock.java @@ -0,0 +1,37 @@ +package net.ugi.sculk_depths.block.custom; + + +import com.mojang.serialization.MapCodec; +import net.minecraft.block.AbstractPlantStemBlock; +import net.minecraft.block.Block; +import net.minecraft.block.BlockState; +import net.minecraft.block.VineLogic; +import net.minecraft.util.math.Direction; +import net.minecraft.util.math.random.Random; +import net.minecraft.util.shape.VoxelShape; +import net.ugi.sculk_depths.block.ModBlocks; + +public class AuricVinesEndBlock extends AbstractPlantStemBlock { + @Override + protected MapCodec getCodec() { + return null; + } + + protected static final VoxelShape SHAPE = Block.createCuboidShape(1.0, 0.0, 1.0, 15.0, 16.0, 15.0); + + public AuricVinesEndBlock(Settings settings) { + super(settings, Direction.DOWN, SHAPE, false, 0.1); + } + + protected int getGrowthLength(Random random) { + return VineLogic.getGrowthLength(random); + } + + protected Block getPlant() { + return ModBlocks.AURIC_VINES; + } + + protected boolean chooseStemState(BlockState state) { + return VineLogic.isValidForWeepingStem(state); + } +} From 1206cf8db3fbdd30fe1e4c9596a51ebe0628cdb3 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 15 Oct 2024 09:56:09 -0400 Subject: [PATCH 10/79] Update en_us.json --- src/main/resources/assets/sculk_depths/lang/en_us.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/resources/assets/sculk_depths/lang/en_us.json b/src/main/resources/assets/sculk_depths/lang/en_us.json index 8deef90a..509f940b 100644 --- a/src/main/resources/assets/sculk_depths/lang/en_us.json +++ b/src/main/resources/assets/sculk_depths/lang/en_us.json @@ -160,6 +160,8 @@ "block.sculk_depths.auric_spore_block": "Auric Spore Block", "block.sculk_depths.auric_spore_layer": "Auric Spore Layer", "block.sculk_depths.auric_shroom_stem": "Auric Shroom Stem", + "block.sculk_depths.auric_vines": "Auric Vines", + "block.sculk_depths.auric_vines_end": "Auric Vines", "block.sculk_depths.kryslum_enriched_soil": "Kryslum Enriched Soil", @@ -202,4 +204,4 @@ "tooltip.sculk_depths.crystal_upgrade.crystal.\"orange\"": " Orange Crystal", "tooltip.sculk_depths.crystal_upgrade.crystal.\"blue\"": " Blue Crystal", "tooltip.sculk_depths.crystal_upgrade.crystal.\"lime\"": " Lime Crystal" -} \ No newline at end of file +} From cafb8b5a6b2bf690beab451431dbedbd7d834cab Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 15 Oct 2024 13:09:58 -0400 Subject: [PATCH 11/79] Update ModBlocks.java --- src/main/java/net/ugi/sculk_depths/block/ModBlocks.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java b/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java index b593b2f7..be881dfb 100644 --- a/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java +++ b/src/main/java/net/ugi/sculk_depths/block/ModBlocks.java @@ -395,10 +395,11 @@ public class ModBlocks { //auric //TODO check blocksettings - public static final Block AURIC_VINES = registerBlockWithoutBlockItem("auric_vines", - new Auric_VinesBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); + + public static final Block AURIC_VINES = registerBlockWithoutBlockItem("auric_vines", + new AuricVinesBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); public static final Block AURIC_VINES_END = registerBlock("auric_vines_end", - new Auric_Vines_EndBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); + new AuricVinesEndBlock(AbstractBlock.Settings.create().pistonBehavior(PistonBehavior.DESTROY).ticksRandomly().noCollision().breakInstantly().sounds(BlockSoundGroup.WEEPING_VINES_LOW_PITCH)), ModItemGroup.SCULK_DEPTHS); public static final Block AURIC_SPORE_BLOCK = registerBlock("auric_spore_block", new ShroomBlock(AbstractBlock.Settings.create().strength(0.3f).sounds(BlockSoundGroup.MOSS_BLOCK)), ModItemGroup.SCULK_DEPTHS); From 9aab1fd407d8c718b12c5ea369465169a4ea93dc Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:58:40 -0400 Subject: [PATCH 12/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png --- .../textures/block/umbrusk5_mirrored.png | Bin 294 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png deleted file mode 100644 index df7bd9f19f8029fdbc6ec6947adc27ed99994c5b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFet zxFkU6QFxTjBvuK=t__Syo<8Nf9`S{>&EmcfV?YYPup+MSHlJ9vC``Vyv!P_zH6 hsj1Nk&byEF)m?Ft7poU(`44m!gQu&X%Q~loCIE2RS%?4t From 80c1eadbb95e55fb3a34367f426988e47e7a6b1d Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:58:53 -0400 Subject: [PATCH 13/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk5.png --- .../sculk_depths/textures/block/umbrusk5.png | Bin 299 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk5.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk5.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk5.png deleted file mode 100644 index d5892a0a425314b2fa81f70f935cceef2d1f7562..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 299 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF{fR5kHIl)aY^cEiVJg?AHA;$mo{I?wb11sa+UKMCOSe40o)JTOliz6_60!Q50 zDnp>sH&1V_Y|zTTw^QFe)CgC96?{QSO42! m=T~>&A^#*&~gVljKR~@&t;ucLK6UbXI`!V From 226480dc6062cc277badff916923964cc841b4d6 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:59:24 -0400 Subject: [PATCH 14/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk4_mirrored.png --- .../textures/block/umbrusk4_mirrored.png | Bin 314 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk4_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk4_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk4_mirrored.png deleted file mode 100644 index 83ae5e9259a1edead70eb12829f490f2a6d91346..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFf#l^+X&o3w_$j8UW!^6YQ&d$xv&C1Hk!NI}C z#wIK*d_(%s51>ZQ0*}aI1_r+UAk1jN8ms~ooaX7`7$R{wIUzwLpo}XaAweLOJGD$J zAvGa^m$%D+FO|VqD@|0T)u?4v8=ItlIB$9YFRyNVPSV070a8)|QBU7II&@))z^bT+ zn~t<5PV~;6Fm2~FW9OESi!N!c7Cpz~s-?Di&+-c0Bo5tj%i`i^6T{e!F)TGM)~_yL z=;iw~v)0wLVPQk#-s1Ju8BEN~(L0_^y})3{prx*{X_4gbT|gHyc)I$ztaD0e0st-V BSup?r From 07ae062285f675a5ef46b11f9ab78d2e8fc42393 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:59:36 -0400 Subject: [PATCH 15/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png --- .../sculk_depths/textures/block/umbrusk4.png | Bin 319 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png deleted file mode 100644 index 5d6e49118e466412d0a9f3724b36ab14856c7c91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%*}?kG|MnqwT=(Q1&uRK(!o(b-_2uBOB=#mjY( zl9G8T!^y=FlZ}(2mN0m%TH$0|I;EXKYpM5%E*EDbhANM Date: Wed, 16 Oct 2024 17:59:48 -0400 Subject: [PATCH 16/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png --- .../textures/block/umbrusk3_mirrored.png | Bin 296 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png deleted file mode 100644 index 70b23a4c4e5c63bb4567d3a491305b51104d837c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFn%gf8p&o3k-#KpzM!^6YL$;r;n&cVTv;c_bm zsGhUHBeIx*fp0$uGg`0)s{jRiJzX3_BrfxwHRL*EAj0;*zR|+n|HBHlyTKcZvt72k zpJhINPf@hAmv#5BMs`D6yU<3}?a>wykq@O1TaS?83{1OTX2U@!mx From 431135e315b06d3dd28a4fae4c7d7476cebadcfc Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 17:59:59 -0400 Subject: [PATCH 17/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png --- .../sculk_depths/textures/block/umbrusk3.png | Bin 297 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png deleted file mode 100644 index b8125313c52cd8c8b25b1e0570a5a822d67f90e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFC!c-hEsd}>z01s luJ0bb)9R!4A3b@le@8_n_SP)Qivl`}!PC{xWt~$(695V!UM>It From 5b5e5959bc9bf4297ee178ae72f21b20828a6ab2 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:39:01 -0400 Subject: [PATCH 18/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk2_mirrored.png --- .../textures/block/umbrusk2_mirrored.png | Bin 304 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk2_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk2_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk2_mirrored.png deleted file mode 100644 index 860b47f2330a551f1ddb0e27785359e8daf29d77..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF&o#>U3A z`g;~o3ul2xWHAE+-+mBgv|tTZ0SZp?ba4!kxGZ|skn50vMBBsjEK4f7KIyMp=zNB; z9hW=$wp-$s@QpXkidBsFbPQ`V8!vrrSnYc67`NBD tS88HR?LIR%{?{~Ln50~GquTKs`&M_2>piO_%Yd$9@O1TaS?83{1OQsYVL$)? From a9ad69f5f2388665622b23033e632a0989580e45 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:39:16 -0400 Subject: [PATCH 19/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk2.png --- .../sculk_depths/textures/block/umbrusk2.png | Bin 296 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk2.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk2.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk2.png deleted file mode 100644 index e256c2ce468bd035bc921eaa79824b10e7298d3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 296 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFn$;rvZ#l^$JBP1jwC@9Fw%gfHr&cVSExWj)5 zP(5dXM`SSr1K)lSX0%`pRsjn3db&7o&I*h^7)z4*}Q$iB}O$Jv* From 43b8c7cbcf662ef7a57027a26b1fd3dc2cf490c2 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:39:54 -0400 Subject: [PATCH 20/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png --- .../sculk_depths/textures/block/umbrusk1.png | Bin 293 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png deleted file mode 100644 index 81aa6957c28aaa17e1fe7d65d6197a7f55ccc0b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 293 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF{9v1O4Nx&> zfk$L90|VcF5N5Ps4ORgP_IkQFhDcl%J!{Cp71OWd7CS!5ah}_{Nat(6P736a<8$jjFQSfpmL^H ze(QveE5A2LY-)ZJx83qmina9P$jguK{mz_nr6m0QlAso&Z_LWx4^nR~V?9ut@R{9j i;nC?{Tin%aelY&!Q#jkm^ZpjlVGN$GelF{r5}E+1?qw(d From 29a11ba259a08f00440a59128b2d825747f11534 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:40:05 -0400 Subject: [PATCH 21/79] Delete src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png --- .../textures/block/umbrusk1_mirrored.png | Bin 288 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png deleted file mode 100644 index 56132479339e1c178a21a9333453baf73487083a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 288 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFvkQM~sk_ zLfUIxP21*!Nw%%-BCGU`XR%J>~Z-FW&s6r#OG3 zp`UQlW?l7-N+P>if<@Bgyo&Rid9+T4uiaZ7Fu!2t!GmAUUf{3TIQevP;pAK0AJ1ic bXZUxnSfcS!ufjv1gBUzr{an^LB{Ts5`Sw>b From 33fa7a551427be99e5b420646cce9447654f8d78 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Wed, 16 Oct 2024 20:41:05 -0400 Subject: [PATCH 22/79] new umbrusk textures --- .../sculk_depths/textures/block/umbrusk1.png | Bin 0 -> 500 bytes .../textures/block/umbrusk1_mirrored.png | Bin 0 -> 496 bytes .../sculk_depths/textures/block/umbrusk2.png | Bin 0 -> 460 bytes .../textures/block/umbrusk2_mirrored.png | Bin 0 -> 453 bytes .../sculk_depths/textures/block/umbrusk3.png | Bin 0 -> 438 bytes .../textures/block/umbrusk3_mirrored.png | Bin 0 -> 437 bytes .../sculk_depths/textures/block/umbrusk4.png | Bin 0 -> 553 bytes .../textures/block/umbrusk4_mirrored.png | Bin 0 -> 546 bytes .../sculk_depths/textures/block/umbrusk5.png | Bin 0 -> 543 bytes .../textures/block/umbrusk5_mirrored.png | Bin 0 -> 548 bytes 10 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk2.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk2_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk4_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk5.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png new file mode 100644 index 0000000000000000000000000000000000000000..d4f61b12bc7d9bfc39eeb9a920dd98245f2012b4 GIT binary patch literal 500 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LiR0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^r(h@S_q7qzO+^no@65>*_ z(sGjGlG0Lgax(Ht3Mw+vvPufd^0EpFa!Mk?qMRI@;$o7bBI1(b(z4RB%8IJ0%Ifkm z3bNAjBEn)qf+9)^s#@yWqQYWE`bKQ5>|&x4vN8%1Vp4Llit@6GGE#DCDjMo4n(8VV zs>(pyHKe6vWh7-~q~*A{xRe!C6yy{Y<&=~alqJQbSXfvU<(2*~v+x6YfwRCPvY3H^ z?=T269?xHq0u(&v>Ealo5p3GW9n56N({lJ?+(CBB2LYC%MV(LAt~l`X(f|K?+YH|M z+1@`u#iRem{TEf0@&vt+Q5X zY(CX3)!A_^Xmg|qi>acB=#hdzr?fR$9K3oi&xPe$R%VFsUg(~kGDWUS^rctxkpohv_1*(-nUz{@>+=(Lm%e|O{As1v?!DH+r_H9fubLJ7`RcEK kCuiwAIr~1o&}JS(r;k*>*MvwtppO_lUHx3vIVCg!05+A8p8x;= literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..407d651e450f5e145d67b6890566b2f56e5c15e2 GIT binary patch literal 496 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LiR0X`wFtgLKYT-@TK64DYfDvGMAN@^-fs%pyWO7hCeiYih-VKE6&5pi)b zNlp$<5n)jUIVE{n1tkS#B?T23X<0cLd1)y*NpVS8X*mgTDG^~YS!sEB83k2kb!A0W zS!r2GacM1eZ6yU&QDHG5K@lT;BQ{oc87Vn=Sw%TnMF}w}Ss4W}pzTt!YRVd_%4+H= z8tN*VYAPCBTwF5Jax#*#itJ{-nNV zXINKUl~&ty&h?tf<1lF}`Mc-iF3Iz-YaUztk>y2p*4;Bvi!c1yJ)iM(6HA~+i>iB5 zjJVzm!{sp@93IQ>3wq`YI>;v-jbNGC$o=%F`W}HDv+T5zd$d9mfp&o^V&?KNqxopx6!N9|ztJN^p0%k%FW6%|VU e|GPczsq~`+>AHmaq)kBIFnGH9xvXNS%Lid0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%AA zGV)3aDl*ctN(##IvI+`vN+QCdoE)6uVv?dF;#%t3veL53imLK53bNAjBEn)qf+C{A zVn+H#GE#D4q7t$)3KC*caMEM*DjKTFK)W=grDSC!Wo4x0xVX5K z6;u@DfNG>zSXdS1mDE<~NdukAS>O>_%)r2R7=#&*=dVZs3U2dsaSYK2HtoMD)?~or zayTg3bj1UqqYB+!kGf9%ub-`Xwem%#(cIZ02R=6k@NO~lGmz=6?NPgYQpfLE_fxKp zYtm~)Cn~MIq|2O~c0$6eqpiHHVP>vKXOWOHv*A+ZZ~liSSa*8%gk6|_ZhDB{gvk!E z*Sijg)w(S*<1o_Eo|D41*x`S~ZzXpF)}qMJ--kC&n7X0C%F8ePuE|5yJNS%Lid0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfN(w46(z0?g^3qarlH!uG(sB~wQX;})veNSMG74Ji+RBQmveL4m!eT;# zB1ZZ~GE#E#vWjxDiV|W{vN8%{q7u?lvTDj2s>*8WDjMo4nrbQ?^ik2ND=w}G_|7YO^#6ae*4u#OxPvryn=%% zvlLszY8Q)53yxp+`pEdGfuoPB^P%L^y6yHd{pyMGFP>jL8hiI`+PnV1NtZRx&o|uu pc-8T}_d-NYK99bZD)RS~{i_W^R=H}+?SM{a@O1TaS?83{1OSdYfx-X) literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png new file mode 100644 index 0000000000000000000000000000000000000000..5b74dd70fa2409ffc51d168d37c065b9433cd8df GIT binary patch literal 438 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lfs0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%9F z!eUAa%JQ-b3UW#!!lIlUoZ@1Vq9Wp2>e{l>vhp$tveNQGf+C{AVn+H#GE#D4q7t$) z3KC*caMEM*DjKTFYSL1&GLo_~(sEo}T*?Y63UWX-QYsd-Nsqq5n0T@z;_sg8IR|$NC672_jGX#(Fiv6=M*~Rz~P*$s}-?+#n!JYzQ6rn zpS~hFEnV@XK$&aQTfa$Vn|NS%Lfs0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfBEn+QQgV{wlCsir65>*_((>{$3R>#gveL4m!eT;#B1ZZ~GE#DKvWgO7 zQnE4%Vxkh#QnISbYU(N)>MELQDjIS!@{;1xTwGi-(sDAAvWoIbEG(>&;!?^ADhhIn z^P5*b1-gy1z$3Dlfr0NZ2s0kfUy%Y7T<7WH7@`rZ>(43Fd2?=C=BzW1`ZZo1^{h9LNwk@H?%7Kx4q2V>>=S9y?qahow;DGm>Ibk!J1=YE zF*tqJ<6vZ5)Tf{;S6?l-wS%v;|IS^Rw;qXeHh-J8Y?|@W8BUG)7Aq$?Iz8Z2e9Upm zV_{_aN%b8zCmu$KEY0{(KX;qb^Cv}}>$X>hE?)Dxdez@8XMN=SO?=O?gKPi* literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png new file mode 100644 index 0000000000000000000000000000000000000000..89f3df0f671d9486bd542a0dbb3eebe9672cdcda GIT binary patch literal 553 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lhk0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV)3a%JQ;`3UbPl64KmU+~Q)Aq9WqT3P3IDsz9WyAtEd$C!;7UEw7@erX;T-B`GT@ zF0HAiB`c#KC!?UQqM@&&udbpgAucT`AtNC!B`>QaC#$HctgfM|sim&1rlO&(siUK% ztE{LdBPAyzEiVI9BCQ}KD59aNrKh7WCJJ;a&@3fYB{g{&1!*Z+8A(}rIVDA)h4RYE z3MwMPqSBJGYATu>@1NTNJ;+($5n0T@z;_sg8IR|$NC67o^>lFz(Fj&O_cE;6K!Ei@ zq2^9UlMwC`i&T3>f;qHyJPJDa^soF$k^RQ@&*oSgr+0k&#?P0|m;A&1j_s!%uVt&% z56z!HPq$;ELeDwnX9qYHTztA!&PGU7-E8eYty(lmduQ}huUJv82;qP@<|^aZEghlT z!b^FDKg)Wl1>Z0+-)?GJu4{BN@^XXXRZm`)Z7MyD3whrK=c@ASevl|W^*O54;ctq? zr$0NDx7gH8+;qJv^xXAWFYoVLlkx*a&osUGd-&f*(VNc=c&h$?; f8@#4Gw)n>=cta|u_EB~Y(4!2Vu6{1-oD!MNS%Lhk0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~N(w5nGV*dV^3qar(vmVF!eYt_s;Wxrs>&KFO6rNmm5LJL(&{Q2>MEN0I{LCQ3UWXst0*t4Bq1&(DIue!uC1Y}sj955qou2@siUT% zAtNm>BPFM-s3s&RA}g&RBPFk=qpzW=B_$yvCMqE#09GWwg8Cmx{k`287f1;GceoOnZb8mG130iL6`?vY0qL}+}@9Wly z%g;Q2bLKgR4gaA==ZBRNoJvO`Vh`-~i4X~#l*YY=ab~>d$>XY911~?ySl#&g5Stwr z nW`K}uId9SNpr3lYhc_~86u{!+l0SOJp8<$s2d~neAf?dijFZqqGpGA&8c(#*8 zD)QDGv)8E`FYXF{rTXCQj(@+zx@N98RKCjYkLa#NS%LgZ0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~N(w5nGV*dV^3qar(vmVF!eV+l`pOEbs!HmbYFd)w(o&MLO7bcyifSrK z>ax;6m5LJL(&{Q2>MEN0I{LCQ3UWXst0*t4Bq1&(DIue!uC1Y}sj955qou2@siUT% zAtNm>BPFM-s3s&RA}g&RBPFk)swE{MBPJ>#EhQ^2qoAs!rXZ&zEh#G^EUE}}u!4%B zyo$V>l8mIRnu@0GZsA8j-*FarL>4nJ@ErzW#^d=bQhfU4(Gc{J^J3QYi+wW;pCj4OI#Oz$i0x`dU`@W@ZcsL=Bxf}8xHN5 zd;9IGdzx3hf683WTeW}BvXe@gm&`BianJtp_xSS%^}Ja!$Mfa>BuKPbWqACIp4L*( aQqS2VCAQ;u_ZFZJ89ZJ6T-G@yGywn-q@QR2 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk5_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..ffce545cdb701119bcec9037aa533b9f087cc1ee GIT binary patch literal 548 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LgZ0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV)3a%JQ;`3UbPl64KmU+~Q)Aq9WqT3aWZK`l?FmBEn*FGK#X&@+yjIDoW}~@+wl2 zvXbJ`nrd3IG754s3hF8v`a1gRDw-1F(vlJ~65>+wvPyEYimJ-$8mgLF>e^~58rqsV zI$FBQifS@aax&8LGC(EL3POS+8md}iqCj^74N_87Qj?cakd~5_k(8B}Q&I$4D6g!n zpdunHDlI9irlKjcb4CQvcbo+tk;M!Qe1}1p@p%4<6rkX3PZ!4!jbPPtH=UXd1XwQ= zW)?SVgm~XrrP?dP%p!WHKzqlZ|N1i@RnBVPS>E>I!G{+WX6ZctJFM09%I^e!Kl54q zxwvd_U0VT)m|K- z*AKbW^glXTvN1F7eOA`H=p~yrFJpCHHMxq5UFg_>fX;T8=#R Date: Thu, 17 Oct 2024 17:20:13 -0400 Subject: [PATCH 23/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png --- .../textures/block/quazarith_ore1.png | Bin 475 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png deleted file mode 100644 index b895c0693504b07c3fb0dc6d2665010917dec802..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 475 zcmV<10VMv3P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0dPq~K~y+TZIeAx z!!QtqE!!nYj5!BAh52jANf-*xK*b5D-K5DSpvcfNa3gw4?6=|(1$Z;-mGk23YN|q!cJlS)wn)8vp4g&c7 zP=+!AAZpuVJ9%x5r%sYpWfCkbmrL`xK?;Dzig6g{nR#C=x-(l_+Bi5e~saEKH5&OigVp3 Date: Thu, 17 Oct 2024 17:20:32 -0400 Subject: [PATCH 24/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png --- .../textures/block/quazarith_ore4.png | Bin 554 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png deleted file mode 100644 index 61d8b502f796258ac55120a2e21cbf8b5dc40f4d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 554 zcmV+_0@eMAP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0l!H^K~y+TRZ}}o z12GV_y}L=2CgBcT0L~CVq5&d-1ee$j3R)y+x28rkh#;y+5X23TI8BtSZQdL2Sj&?p zo}JH|j~zRmPNV7IoHHQ=6Jr!<+cw+FvNYCOvG?KlLkHo#&jCsj<6$iZfPSJ+Bn14R zvF}L1hqZIo6h$F+cA`bJC~U%!6P3i;qq->Gpo>{RdsS84SAtVU6=JBd? z5o3q#b}M^QI87uGWwY5J>A3d(8|RC3L}8~qIS$V}%6L4^O{Nam`a-_Ta;IT6Cex=n zMZ2)0(J1O3ICqTu2-uZ`qIiYvTQ%Ie_gvy-4wk^K2xCLIu0xnX zkjD}F0lc~p_CWB1jej-t5g{DlJ?ufdg+2%AvXRF%nM|U-ICeqS7$32RD|B)ucIPgn zqY&=!buWp8ELWGoN@=qMR;Pa#w$f_ho5u()}yz#z7*iAqMuE%5KG sY;>sZ{S0q{SC-l*=;x@qL}QHk199O$Z1h{!jsO4v07*qoM6N<$f)*+7@Bjb+ From f6ee2533e503ad95c251982ad300f19dbbfc4cbd Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:20:45 -0400 Subject: [PATCH 25/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png --- .../textures/block/quazarith_ore1_mirrored.png | Bin 479 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png deleted file mode 100644 index df7b3b03bc9e21986fe6073f44d685d0856c7e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 479 zcmV<50U-W~P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0dz@3K~y+TZBsE) z!!Qt(Nt+lHpwww!gi>BA=Pc3-TSJlV72;k&6%C!>L7NHgA7<-J##oeEj!eXM1TQ;!Q26F z_xh>v|So!hXM(N<@q=lgKxSKd?JFlaxB-e2SoNnkLC+ zYDveT&Fx-etVeiOGm&x4N3oN8#s2tKwwRx`?u%k4WIiy)nLFQtg^rLP(l0uAvlWG0 zmSq;ufLa9;L%5R{$SxSSx$|MmFQ7rHbLGdxgM66&6L~bvQ=EOu1aE^NK?VN9xj!M5 V+*8Ubvc&)Z002ovPDHLkV1jxh&rtvX From 878823ff8739dddc24a91fe9cb1f257bea7a39fa Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:20:56 -0400 Subject: [PATCH 26/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png --- .../textures/block/quazarith_ore5_mirrored.png | Bin 511 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png deleted file mode 100644 index f6ec89b0e55ce70f8a7906379ea7775c5accf9f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 511 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0hCEZK~y+TT~j+w z!$1)Au9H-W9mzCEbZ`rL6hTJ;5|=Pl8bX5v2s+<@)(1d{GoWw+x=_+VY47shY-Y2` zlSVT;-#5FqsjABNeV-A=n9O@GLLarYHX95EnR8C!)OnsujIdfvFhO;Yvzo~)Qm~;G z6E-c<#7#jfOm?x=Ko7gxxmg{~i(2VxOotM7t+%?;c8=$7=tE(lMU16lilXpoM>_ld z2Gg%lbbtmc=nu#jVs{PifcaVz??5|-X>-U5=LlibGVi1lv@=2K=vS)NPKHjsswFLCpbvf zAp-`&3NP!M-^cV>LpyCi1csrpFeuA1S%J6DZ{QcJJZHnN<2foyHYXu#iti+uHlB3)NyGeu*h` zojiZQ9W2-04YUyv8PLfmN`FrqjLm**{Z`6EnTO0v!MV002ovPDHLkV1i^0 B(&+#I From 63d657b8aaca0caf1382b816b97acc4d1e64c214 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:21:10 -0400 Subject: [PATCH 27/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png --- .../textures/block/quazarith_ore2.png | Bin 515 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png deleted file mode 100644 index 6a2ab57fc615c24be4e34fef84cc155e81f7ae4f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 515 zcmV+e0{s1nP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0hmcdK~y+TbyGP` z!%z_YOQIB!Noo!e=vi`r6d>+EMPZ4S15hH16i6H*6d>wE9Dt)BQ6}G?_hvG-vEWI= z%%A1W;^3##X$GA4-ceIhO0KSJ@ePMVN6`KYfq(izeb3APinQ@- zOM(SiL~wK>gnRgA@}~6T1nppZ6QFw z_6wrxD#qBXL(RId-ENz!vpB|g6fTkcgtVdx;Tp-D=ApDzx)NBdUB9K+`vd6|Z2vaU#K2rOixUS7u|cqA4p8H-!U^$};SFN#9wxD%ZgWEUo+^o8zs@I5xG zG0sM^vVF#OSAN2P_opN}cL{x~`|gR^#I*bpDcX5cdA~$5$DTo6k+_mItVwreA>{-q*0k+22F?n3^Z_jUs#q1YFagYBoKpYNQr`vLD-36sY|75o4I002ovPDHLk FV1ijI-WLD> From caf05eba43f7128ae1fd06fbd54cba8e9d8cacf4 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:21:21 -0400 Subject: [PATCH 28/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png --- .../textures/block/quazarith_ore3.png | Bin 493 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png deleted file mode 100644 index dc0331336ec3920e86ba2c8c6a3d66b47ba1d792..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0fI?HK~y+TWs}=Y z!$1&4cgOZ$q@)O1K%xa6B7aCE^kAR^8bFvD0Kp$55yj911=wCQXPik^;Y#bB*PWN` zIGfFekYN~xP!vUI+cu<>%!VFgG?`mOc0RG^0s6kT17e)lCMY}!MF5G!jX7|PRrh4C zNW3S&Ca&b5dP)yUepSM{fkZ-($0JMEbtd=$DP7bt-l?=SJqJ}i)<*Em0At&pTICR) zH2AY2$l)ZH=`>CzlOd&fEpnrTA9d+ma;pIgJzq^#RYq|5F1(YXs;+)TUbf^DC7 Date: Thu, 17 Oct 2024 17:21:35 -0400 Subject: [PATCH 29/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png --- .../textures/block/quazarith_ore4_mirrored.png | Bin 553 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png deleted file mode 100644 index 256ed5ffbe9c0710d38beac4f86f62c598e74d53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 553 zcmV+^0@nSBP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0lrB@K~y+TZBwyI z1ThdzGPk(w!EqnrR~(1Bji8+$V4cEFEUxee_9OH_M8#?m6pO1w1Pd!sf5PgrNt~BB z=PEu3lgv!sn@kct9*?8?hA}4D5Q6gFtFG&m)>;u!iedg2>^CaL%mIsyu-KG+8&+b1 z{@g$ffK%qMLSl^ON+uTSvaw%DuK6EGG7QnxiUdQd#4wU5>VTX#tG12zbDm$M9P~wc zl?Y^`I0XoT0Dhu#R=rowO)LmdfgDqhMx%(tKC-eLAvad*&(uuscX)o&q#%QeqL^Wl z%IQ@B1tB(O%Z31w7haWYhpkd?b&82n2vh6afrT0XGAR>7>pfP72uO1U@KaS)GbD!a z%8bKS>*qE`&!cLIK9UMzF+Q^D8WTP7c;|H%PCbx?T#wd=)|exn&w2A%iV0v~=VfK&f@JlO0FcN40h02O Date: Thu, 17 Oct 2024 17:21:49 -0400 Subject: [PATCH 30/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png --- .../textures/block/quazarith_ore2_mirrored.png | Bin 517 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png deleted file mode 100644 index b74505772d5c6265a9d2031e9eee8d4b0979c055..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 517 zcmV+g0{Z=lP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0h&ofK~y+TT~a$v z13?V+%x;>jLb5G~h&TWX^b~yVKpE{R5EV#UMB)@cK}1Ira)8{0E}1cYo_I6tlPr5Y z2%6PQBaJLaxk;XZnslimL=hxb576DfQK;*wo40i?yAjwMgsBb9RL?VB5x%4 zOq0NG$#4hpa2UJ62vU|gdH>Y=y!X8g_+kJ5gJIuL2rIQi2&(fITwT{ZB!HlF=3B}5 zAT|ira=VrDxf{h9d6aM}#466S?e@+j6sr>_0Vosqz& zzZ7dkPkDx;ei4!nJ>xerBgwX(4Mb~3DR`8(fHU*ESf3(u5!tz4c4fKIiXcido6S Date: Thu, 17 Oct 2024 17:22:01 -0400 Subject: [PATCH 31/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png --- .../textures/block/quazarith_ore5.png | Bin 506 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png deleted file mode 100644 index 9b1d7dd64653d06d0705751738f746684a28df2b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0gp*UK~y+TZBjc< z12GV_y-KQVl7f~BZh)vb00@bO0!oe$sx+ZOp`hGLAaMXBE&(T?BN7c2b!_wAIM3M# zo-{ij&&-=0+fOEw>;UgQm1~;Dt=DU_Q%YttHW&Xmex-@1U z&y-L2@pzmW=qHdl=R@dYB<@46kotrvA3EkpSYtcjrs<@#K;h3U#uFr5!oNlF73@#Q zd^1&9B*jQaqY>;fx^w4fa0FIP!YeI|F`i-v*NA->a|p|h*{t(z+tyzo_-`6fOhj2E zZ{!=Y2VujPu0AAzjfTTveM|(K#Q2K$@U@BDbXvNfPN&div(f^6N{kB>&k<>@u%A<} z(VWfI5Gv;AEKcds^7=%SZ3V!Czq-7{5Z?bKvR~NP6@_{G61`vU+&>%CrQ5d$u@|;C w`1f{YVkcOvDQtrN6%uU1M?;8F_AZ?J1*pm-Ex8PP(*OVf07*qoM6N<$f}v*9QUCw| From faa340f6c8d47e8cc2e4278deba0c847c5faadaa Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Thu, 17 Oct 2024 17:22:16 -0400 Subject: [PATCH 32/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png --- .../textures/block/quazarith_ore3_mirrored.png | Bin 484 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png deleted file mode 100644 index e69987b38b7b85c07d8b80efa37ec4c83cfbcb98..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 484 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0eMM8K~y+TT~k3$ z#4rp@(%yP#AHf$8e^|l75rKF^1y6uGqWqx?T(|oQo`CqtHZ2~z(}W!<8^;-Y9DD1V zrkTC>Zk}hCW11!xV^lkYpbI>JJ7R)b3qT@p>HT$!{WLj!5YY${-~e!@N(eWt8iG6# zY^^L2O&w>J>;2F<*9-YsD}j$9k0O?0wA{mlxYFqi|0a;ytFZXw#VaAQB_rI1Qg4%)I@nDmiS7V*^B)vo*zlR z5#Iwu(tM#dj-%Q+tYP~u##gb=GymvMj_msQM{%3JfNY1dAiZecrev aHoHIkgb9xj?@O=%0000 Date: Thu, 17 Oct 2024 17:22:58 -0400 Subject: [PATCH 33/79] quazarith ore changes --- .../textures/block/quazarith_ore1.png | Bin 0 -> 558 bytes .../textures/block/quazarith_ore1_mirrored.png | Bin 0 -> 555 bytes .../textures/block/quazarith_ore2.png | Bin 0 -> 546 bytes .../textures/block/quazarith_ore2_mirrored.png | Bin 0 -> 541 bytes .../textures/block/quazarith_ore3.png | Bin 0 -> 526 bytes .../textures/block/quazarith_ore3_mirrored.png | Bin 0 -> 523 bytes .../textures/block/quazarith_ore4.png | Bin 0 -> 627 bytes .../textures/block/quazarith_ore4_mirrored.png | Bin 0 -> 624 bytes .../textures/block/quazarith_ore5.png | Bin 0 -> 615 bytes .../textures/block/quazarith_ore5_mirrored.png | Bin 0 -> 611 bytes 10 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png new file mode 100644 index 0000000000000000000000000000000000000000..86bf361c37c5cff94cdfda75ea9095856f15fe0b GIT binary patch literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Li90X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^r(h@S_q7qzO+^no@65>*_ z(sGjGlG0Lgax(Ht3Mw+vvPufd^0EpFa!Mk?qMRI@;$o7bBI1(b(z4RB%8IJo++M26 z>hdxQveNP*!eT;#B1#IXTI$+7Jl;G!|3!txxVbBMcq)wajd*yraB%_IUYwjByu3a< zJhQmDxA5>BXJcjO=AI=cDj_SQATO&ZBPFM%qM@#$sji}-rmP_?B`YH-DXpe!ja#lpg>D6jNz#!UyHH#rMDB8wRq_zr8YgQn2N@AXQ-pB~SfT=V>%bc5fv#7~EA z?J<}gecO7&?(OpvZ`!{2_N)2u;>W@(s+OmB^`1VTYqv*1;fu~0MJ1!yO$>q?)%zE( zR^hTSc-<NS%Li90X`wFtgLKYT-@TK64DYfDvGMAN@^-fs%pyWO7hCeiYih-VKE6&5pi)b zNlp$<5n)jUIVE{n1tkS#B?T23X<0cLd1)y*NpVS8X*mgTDG^~YS!sEB83k2kb#87i zWkpq4X<12eX)SeaB?VPcVKE+_|2#b2LV_Yj`bIoF72MnvJUm;txGFd~J$QJ$cz9;< z^7`=b9OvfV!p6$Z%{@y-N={x@QC3Dl4Cq2BSv6%1brm4eR8!I50s&7MX*n55Sw(pz z78X`XaVcd56=elwML8t}ImN;|%r!u7au#?*7BevL9RguSQ4OyKpx{kU7sn8dVA9q%&icP!dv}E$cy0Ny)M3xm6Q0piuAaa9_lC6#+m(QYFVyaN zE@5Z!$!_|&vG>Y_mZ*PU-W)EmQchuNS%Lhk0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%AA zGV+|99x~FhN(w4U3d-`b3JP*cBEq7a9Gv1}lA)aB&?s(l_GdEa&0^vS;z~`fzj4;^1)S;ql_;28wv{@%i%b z%;DkjmXVU<;i=;0uHfOBEibDmDK4$1qM@#$$-`5jstk0VhP0HdjHIlLv>X=~mzb!8 zvVw|&98j4Q3k$2FywXGq*-bzXau#?*7BevL9RguSQ4OyKpx`x67sn8dVBP+gVTS^E zT9~((Wkqe=(Npx%EF)I%cF@}09jAWVPul7JJl-#DpJzwaUq_LA70&;iX4|*@o|I;N z_-@UX?ezs72QC&)>XA)S`S|3>iK2If4hrV-KtUex#_iC=GUv-s^8AP`mG+j bzMfGmNz$$B?@kS%4;egN{an^LB{Ts5IZvMf literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..ac962aebd96d26025432e48b7fd74cb253394c7a GIT binary patch literal 541 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lhk0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfN(w46(z2YK9&$4B(o%Ag;*zq`auVWFBEn*_((>{$3R>#g+}vJVTouZS zszRr0cmJUp|xxhtflWYv^4RF&0ucq-IYG}TlzB*mr0L?yVmxMZZ| zWF%!3<&{`iSS7`!loeDIXwgG?s+nf*uWpv-_Xi(1zEwy_x|Jv=`}uhaq>Cv@tduX_c!F`0!ujKNC!>CgbDCd#>AEXU z^+nLs@GBusZh;qKU+c^X$!8H+zDn;$g?0MF#V0q-x;Xo=wW67OWN2x?J8lOXp-mSO zKA0^M<6r;&o%i;PXF=_J{D+VKIGOqR&nK%BQG2$&tyY@5gmcc1$HJ#mzkS^sb-3Z) b`B&om+a$%ZreC-R^c;hytDnm{r-UW|0w|sM literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png new file mode 100644 index 0000000000000000000000000000000000000000..ba9591422412304ded721b1fb359c2bc1fa9ce49 GIT binary patch literal 526 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LhM0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%9F z!eTr;QA!HR^0EpFa!Mk?qMRI@;$o7bBH~)=+OpEJ@-hmt((*!rBHY}4JUstJg~g2Y zjkvfXczF7`xT1M@wsUb!8eR=R!E>H2jv*Sss{WlphXQzbF5FsiGyP*n zgz}1r_lv}iN>BX%Ut{}Yzc{1(vNChQmtWZ<_XUdl;=g(4);sBjEx~-{-@ox6`8y$g z$&~7e{e21>ykw6rOzRRZRa`wwX=nf4Q0+igwZg19TUd^qKet>w(7N=Rqu%3JRzc5i zC%!2%?%kp4ELWqKS0*m3ep-a9b#d44WsKh165_?{op18?m|Z+(P`yHa{)LiFZnu7Z z_?arW{-(4+)$>C6`I5$B@lOw&dcSS%$xq9dmjqmY`l@_i+gTe~DWM4f2a22> literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..2f245840861de541e79d002b9590bdec44cb83a1 GIT binary patch literal 523 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LhM0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfJUme%!eY`=a+2bbveI%A;!?8G^71kYTI$-e(z2q$Vmv(mxw-p<1VxPW zjd*zaxws;@xg)u_fQ*SeJlnarqPe(kb8&6u=8oay?B(H!<>U;Pk&@%$>XnmKln|5R z=H4VGDj_W;tE#M~uA;%q8?COQsivYKCnGN@F3rWo#mN~VBP}N*DXS>2#KOWVDK4d~ zprRnBxc@<*H_%g@1s;*b3=DjSK$uZf!>a)(c-qs&F+?L+*PkGZ?Rr9%9R z3L9BjuY7cHjpP^k|6ik8XV;~b>pa7)nsqnjsOv|)^%LJ+{hNL7CxecTZT)@z3d{f6 zY_?eV!B&Vt$NDu_FsjHQkVD7`=xaL zXt#d+{i@Y$-ODQVw}#f~%nYunOWYe*`#&dW2IJiOXXVXVMgQ&NGM@+Z7K5j&pUXO@ GgeCy)(vv&@ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png new file mode 100644 index 0000000000000000000000000000000000000000..613de4500e23c48e06634a95517faa81bbde94bf GIT binary patch literal 627 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Grg0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV+|90ZIzW^0JBwa>|kt(%f9!;$o7bBI3#lKwavpK%}g}$?4C{9Vj9!CMTmPD=n|0 zsK&$dpNlI{NnS-tQdUx2T2oC+Rz^WiMuC%anYxOGzK*`Sil&6Pw4{WLgt!zZ=YAfZ zAXQ~`Iax&wRZT5*Z7!~69-igg+{^g*Lex|=v^8~fv~-mf)nugPcz9ZPd4px7<+-_= z}H81shd`raug55(rY95xCODHTAQ@&wu_xy5H~b-M81SVe8l4vthFhV;Gxu zsB$jaqWfMWE4_R@cTc8mZM?a~Hq#Ih;a$_-Zje*|?r`+5UDX5rKWUzh5^}DJj|2oB zCr|PB3qPrLYLeh77tOR~ANV7t9X*~t`Lo-zpGQ-mDm* zZ8t75Y!t5Th6i}#G=(R5d=y?WDS3j3^ HP6NS%Grg0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~oSXr&GV)3aDsnRN(o%BLk}@K~V#*4t+}wejoc^jx>Z-~bDoW~_YFd)w z(o&MLO7bdPT!B11|5X&#WToZhWE3UDrPWn5)KxU~b@Vwom&wW~$jK=1@C0#k?w1gk zl9Z6qQrFf{)s&M}R8>~j(bCn{)KOE>;NuJ7=3d6bvz&{onVY*=Mp~YiH<*W~MMg?a zSy7FLCzzA7NnTb-NKk~6bE%A!yq=Ce2ZtXg=S5D=Ms{{zX(?HG83hiGB?@v%QW7%K zlCmPgqKZJzDyS&RtH{eK$w0WrwPiz5+{FgUHN@VJq9z^KM?1Xl{*@KeW%cYP#jR>xURVG&A4l@6>la z{33r+afQl5i)V{;0)>~j2)Ri*R~5~AZet-m-@oMi=Ls*w_XLSd7x6RPeQM%?WiPj~ z-7v3`6txriDkd!DEfl)6x?QlV`t%{2C9fLg{!ZB)&2#JH29u6?JfSmnNS%Gp)0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV(k;VM+?h^0JBwa>|kt(%f9!;$o7bBI3#ls(L#5s!HlSJpV<6#pGlZWu@g+6xCEf zBAwjap;D5vlH$^uYFe@~3UV?ETwH5-cph_dhUn|)tE*_Lt7u4wOG`?~NQg^ubFby% zdc@8Bn47y(Rasq5R*{qQ2nR|!t_~iawLCms+L}5#TDlslnrbQ<%8F_-QgSlV zK)1ctQrDK3RpRD8CL<*;Bq$;#3iKDyJ|$HpHF+5YX(?G5Nm+S0B}Jgqp z+sc0(n2{MdEmyGYwsZM{_f>Y%JS?ni@AwQ^cB)T*`S0MvKoch!=A@dQM^C1ln`D;j z9%&_5;wOGkRnz;yt~>)#PNnmcR==Jtlb2rnCH3N?68AkVfr{ew8!P9hs!lUF$ew?( zNZ6^SM1W=csFHE6II7*2?bu)iPCon}F=)y4vjj71#gv?^;*+ sInyNmekiNduO8Qn{zrmr^JYC07qL~i-rJqT3-mdIr>mdKI;Vst0J;CIjsO4v literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..5ef741966dd1fb7cfb0e85f91d02cdedaee3e1ba GIT binary patch literal 611 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Gp)0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~JUn5tGV)3aDsnRN(o%BLk}@K~VtP9I$_lDHJpWad)HT(#B*mqrBxSj| zLwR^QRg~0K6xC#<<>h1)CB&uGRW#I9H1&1#IXOdkcph_ct&x>ckdsm1=I-R?267*9 zbFY;Umy(o_;o&*P!4bsCc|=ZDQB_%8Lse5pOIKS{hli(&hi5GpSBI9mHV@Bh8EJVL zDLG|DH8m9tZti39vPwdNA~I6)QW7#^q7u?lvhp$ts!D1Ka!S&YvLeEwia-x4s3^*- z$jd3oNXn|IXcm7EeGCj8&H|6fVg?4j!ywFfJby(BQ1F$fi(`mJux{VWpk@b#=FMxv zw?5$F&ao|AJ_tcBfTq)ZE|vXnAZh z_2P?!^m~@O6KZA&KA9eV-P5tL<@_E4p1`28!x^fAcF(q#YXpiN-TT*kt3W8r;Tnbr zAw89Y%F9;hTtC`#QD()Wm|qKK@dTfW&^vpWmrey*b;?DRzIo$*FYb s+uQzrx|(m|J9(94XZ@oY0`j-?dkp1YU9UbB2lO?Ar>mdKI;Vst0Cs}1AOHXW literal 0 HcmV?d00001 From 62efcca9d3b653fc9c0485f0aabb8a5a7c0772e5 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:23:09 -0400 Subject: [PATCH 34/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png --- .../textures/block/quazarith_ore1.png | Bin 558 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png deleted file mode 100644 index 86bf361c37c5cff94cdfda75ea9095856f15fe0b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Li90X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^r(h@S_q7qzO+^no@65>*_ z(sGjGlG0Lgax(Ht3Mw+vvPufd^0EpFa!Mk?qMRI@;$o7bBI1(b(z4RB%8IJo++M26 z>hdxQveNP*!eT;#B1#IXTI$+7Jl;G!|3!txxVbBMcq)wajd*yraB%_IUYwjByu3a< zJhQmDxA5>BXJcjO=AI=cDj_SQATO&ZBPFM%qM@#$sji}-rmP_?B`YH-DXpe!ja#lpg>D6jNz#!UyHH#rMDB8wRq_zr8YgQn2N@AXQ-pB~SfT=V>%bc5fv#7~EA z?J<}gecO7&?(OpvZ`!{2_N)2u;>W@(s+OmB^`1VTYqv*1;fu~0MJ1!yO$>q?)%zE( zR^hTSc-< Date: Sat, 19 Oct 2024 15:23:20 -0400 Subject: [PATCH 35/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png --- .../textures/block/quazarith_ore2.png | Bin 546 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png deleted file mode 100644 index 8ea8b3dfefbf49153f2dc9f8271782bc596678dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 546 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lhk0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%AA zGV+|99x~FhN(w4U3d-`b3JP*cBEq7a9Gv1}lA)aB&?s(l_GdEa&0^vS;z~`fzj4;^1)S;ql_;28wv{@%i%b z%;DkjmXVU<;i=;0uHfOBEibDmDK4$1qM@#$$-`5jstk0VhP0HdjHIlLv>X=~mzb!8 zvVw|&98j4Q3k$2FywXGq*-bzXau#?*7BevL9RguSQ4OyKpx`x67sn8dVBP+gVTS^E zT9~((Wkqe=(Npx%EF)I%cF@}09jAWVPul7JJl-#DpJzwaUq_LA70&;iX4|*@o|I;N z_-@UX?ezs72QC&)>XA)S`S|3>iK2If4hrV-KtUex#_iC=GUv-s^8AP`mG+j bzMfGmNz$$B?@kS%4;egN{an^LB{Ts5IZvMf From b9205f72ab1cf505401941c7624d932f981bb76e Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:23:35 -0400 Subject: [PATCH 36/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png --- .../textures/block/quazarith_ore4.png | Bin 627 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png deleted file mode 100644 index 613de4500e23c48e06634a95517faa81bbde94bf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 627 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Grg0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV+|90ZIzW^0JBwa>|kt(%f9!;$o7bBI3#lKwavpK%}g}$?4C{9Vj9!CMTmPD=n|0 zsK&$dpNlI{NnS-tQdUx2T2oC+Rz^WiMuC%anYxOGzK*`Sil&6Pw4{WLgt!zZ=YAfZ zAXQ~`Iax&wRZT5*Z7!~69-igg+{^g*Lex|=v^8~fv~-mf)nugPcz9ZPd4px7<+-_= z}H81shd`raug55(rY95xCODHTAQ@&wu_xy5H~b-M81SVe8l4vthFhV;Gxu zsB$jaqWfMWE4_R@cTc8mZM?a~Hq#Ih;a$_-Zje*|?r`+5UDX5rKWUzh5^}DJj|2oB zCr|PB3qPrLYLeh77tOR~ANV7t9X*~t`Lo-zpGQ-mDm* zZ8t75Y!t5Th6i}#G=(R5d=y?WDS3j3^ HP6 Date: Sat, 19 Oct 2024 15:23:45 -0400 Subject: [PATCH 37/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png --- .../textures/block/quazarith_ore3.png | Bin 526 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png deleted file mode 100644 index ba9591422412304ded721b1fb359c2bc1fa9ce49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 526 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LhM0X`wF5@Hfk64J_wDoXOoDvGKqN~)?#YHG^rN(!nH;!?8Ga+2bb(o%9F z!eTr;QA!HR^0EpFa!Mk?qMRI@;$o7bBH~)=+OpEJ@-hmt((*!rBHY}4JUstJg~g2Y zjkvfXczF7`xT1M@wsUb!8eR=R!E>H2jv*Sss{WlphXQzbF5FsiGyP*n zgz}1r_lv}iN>BX%Ut{}Yzc{1(vNChQmtWZ<_XUdl;=g(4);sBjEx~-{-@ox6`8y$g z$&~7e{e21>ykw6rOzRRZRa`wwX=nf4Q0+igwZg19TUd^qKet>w(7N=Rqu%3JRzc5i zC%!2%?%kp4ELWqKS0*m3ep-a9b#d44WsKh165_?{op18?m|Z+(P`yHa{)LiFZnu7Z z_?arW{-(4+)$>C6`I5$B@lOw&dcSS%$xq9dmjqmY`l@_i+gTe~DWM4f2a22> From bbc60d0176ee4eeb017aa25072dec15b4e62dac3 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:23:59 -0400 Subject: [PATCH 38/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png --- .../textures/block/quazarith_ore1_mirrored.png | Bin 555 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png deleted file mode 100644 index 91582a3d7a4015642bb56e454ee13d8d49aa68cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 555 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Li90X`wFtgLKYT-@TK64DYfDvGMAN@^-fs%pyWO7hCeiYih-VKE6&5pi)b zNlp$<5n)jUIVE{n1tkS#B?T23X<0cLd1)y*NpVS8X*mgTDG^~YS!sEB83k2kb#87i zWkpq4X<12eX)SeaB?VPcVKE+_|2#b2LV_Yj`bIoF72MnvJUm;txGFd~J$QJ$cz9;< z^7`=b9OvfV!p6$Z%{@y-N={x@QC3Dl4Cq2BSv6%1brm4eR8!I50s&7MX*n55Sw(pz z78X`XaVcd56=elwML8t}ImN;|%r!u7au#?*7BevL9RguSQ4OyKpx{kU7sn8dVA9q%&icP!dv}E$cy0Ny)M3xm6Q0piuAaa9_lC6#+m(QYFVyaN zE@5Z!$!_|&vG>Y_mZ*PU-W)EmQchu Date: Sat, 19 Oct 2024 15:24:18 -0400 Subject: [PATCH 39/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png --- .../textures/block/quazarith_ore5_mirrored.png | Bin 611 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png deleted file mode 100644 index 5ef741966dd1fb7cfb0e85f91d02cdedaee3e1ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 611 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Gp)0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~JUn5tGV)3aDsnRN(o%BLk}@K~VtP9I$_lDHJpWad)HT(#B*mqrBxSj| zLwR^QRg~0K6xC#<<>h1)CB&uGRW#I9H1&1#IXOdkcph_ct&x>ckdsm1=I-R?267*9 zbFY;Umy(o_;o&*P!4bsCc|=ZDQB_%8Lse5pOIKS{hli(&hi5GpSBI9mHV@Bh8EJVL zDLG|DH8m9tZti39vPwdNA~I6)QW7#^q7u?lvhp$ts!D1Ka!S&YvLeEwia-x4s3^*- z$jd3oNXn|IXcm7EeGCj8&H|6fVg?4j!ywFfJby(BQ1F$fi(`mJux{VWpk@b#=FMxv zw?5$F&ao|AJ_tcBfTq)ZE|vXnAZh z_2P?!^m~@O6KZA&KA9eV-P5tL<@_E4p1`28!x^fAcF(q#YXpiN-TT*kt3W8r;Tnbr zAw89Y%F9;hTtC`#QD()Wm|qKK@dTfW&^vpWmrey*b;?DRzIo$*FYb s+uQzrx|(m|J9(94XZ@oY0`j-?dkp1YU9UbB2lO?Ar>mdKI;Vst0Cs}1AOHXW From 4654c6643b98bb2af52f7d8bd73c914165d6bb38 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:24:28 -0400 Subject: [PATCH 40/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png --- .../textures/block/quazarith_ore3_mirrored.png | Bin 523 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png deleted file mode 100644 index 2f245840861de541e79d002b9590bdec44cb83a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 523 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%LhM0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfJUme%!eY`=a+2bbveI%A;!?8G^71kYTI$-e(z2q$Vmv(mxw-p<1VxPW zjd*zaxws;@xg)u_fQ*SeJlnarqPe(kb8&6u=8oay?B(H!<>U;Pk&@%$>XnmKln|5R z=H4VGDj_W;tE#M~uA;%q8?COQsivYKCnGN@F3rWo#mN~VBP}N*DXS>2#KOWVDK4d~ zprRnBxc@<*H_%g@1s;*b3=DjSK$uZf!>a)(c-qs&F+?L+*PkGZ?Rr9%9R z3L9BjuY7cHjpP^k|6ik8XV;~b>pa7)nsqnjsOv|)^%LJ+{hNL7CxecTZT)@z3d{f6 zY_?eV!B&Vt$NDu_FsjHQkVD7`=xaL zXt#d+{i@Y$-ODQVw}#f~%nYunOWYe*`#&dW2IJiOXXVXVMgQ&NGM@+Z7K5j&pUXO@ GgeCy)(vv&@ From 89b52b0f33fe6017956355b131c2bd9de2c05e7d Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:24:39 -0400 Subject: [PATCH 41/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png --- .../textures/block/quazarith_ore4_mirrored.png | Bin 624 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png deleted file mode 100644 index 70c589e0fa1d904b97e6c89cc3b1f7e048add5c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 624 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Grg0X`wFN(!oK${K3Q>MBaADvGK~^2*AJDpC^C5@HgfBI4p=lH6R}k`mGi za?0|uib@K~oSXr&GV)3aDsnRN(o%BLk}@K~V#*4t+}wejoc^jx>Z-~bDoW~_YFd)w z(o&MLO7bdPT!B11|5X&#WToZhWE3UDrPWn5)KxU~b@Vwom&wW~$jK=1@C0#k?w1gk zl9Z6qQrFf{)s&M}R8>~j(bCn{)KOE>;NuJ7=3d6bvz&{onVY*=Mp~YiH<*W~MMg?a zSy7FLCzzA7NnTb-NKk~6bE%A!yq=Ce2ZtXg=S5D=Ms{{zX(?HG83hiGB?@v%QW7%K zlCmPgqKZJzDyS&RtH{eK$w0WrwPiz5+{FgUHN@VJq9z^KM?1Xl{*@KeW%cYP#jR>xURVG&A4l@6>la z{33r+afQl5i)V{;0)>~j2)Ri*R~5~AZet-m-@oMi=Ls*w_XLSd7x6RPeQM%?WiPj~ z-7v3`6txriDkd!DEfl)6x?QlV`t%{2C9fLg{!ZB)&2#JH29u6?JfSmn Date: Sat, 19 Oct 2024 15:24:51 -0400 Subject: [PATCH 42/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png --- .../textures/block/quazarith_ore5.png | Bin 615 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png deleted file mode 100644 index fcebf5e5587fa1ac02caeaecbb1ad31942597514..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Gp)0X`wF5@Hfk64J_wDoXOoDvGKqN~&tg>T1dwN(!pdQgU)K^3swrN(w5n zGV(k;VM+?h^0JBwa>|kt(%f9!;$o7bBI3#ls(L#5s!HlSJpV<6#pGlZWu@g+6xCEf zBAwjap;D5vlH$^uYFe@~3UV?ETwH5-cph_dhUn|)tE*_Lt7u4wOG`?~NQg^ubFby% zdc@8Bn47y(Rasq5R*{qQ2nR|!t_~iawLCms+L}5#TDlslnrbQ<%8F_-QgSlV zK)1ctQrDK3RpRD8CL<*;Bq$;#3iKDyJ|$HpHF+5YX(?G5Nm+S0B}Jgqp z+sc0(n2{MdEmyGYwsZM{_f>Y%JS?ni@AwQ^cB)T*`S0MvKoch!=A@dQM^C1ln`D;j z9%&_5;wOGkRnz;yt~>)#PNnmcR==Jtlb2rnCH3N?68AkVfr{ew8!P9hs!lUF$ew?( zNZ6^SM1W=csFHE6II7*2?bu)iPCon}F=)y4vjj71#gv?^;*+ sInyNmekiNduO8Qn{zrmr^JYC07qL~i-rJqT3-mdIr>mdKI;Vst0J;CIjsO4v From d7c9beaa079b75cf5b6802a8a1e0ccc0f964dd20 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:25:06 -0400 Subject: [PATCH 43/79] Delete src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png --- .../textures/block/quazarith_ore2_mirrored.png | Bin 541 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png deleted file mode 100644 index ac962aebd96d26025432e48b7fd74cb253394c7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 541 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%Lhk0X`wFN(!oK%Id00YAQ;qDvGK~^2*AJDpC^C5@HgfBI4p=lAIizBEq5y za!T^D3Q7vfN(w46(z2YK9&$4B(o%Ag;*zq`auVWFBEn*_((>{$3R>#g+}vJVTouZS zszRr0cmJUp|xxhtflWYv^4RF&0ucq-IYG}TlzB*mr0L?yVmxMZZ| zWF%!3<&{`iSS7`!loeDIXwgG?s+nf*uWpv-_Xi(1zEwy_x|Jv=`}uhaq>Cv@tduX_c!F`0!ujKNC!>CgbDCd#>AEXU z^+nLs@GBusZh;qKU+c^X$!8H+zDn;$g?0MF#V0q-x;Xo=wW67OWN2x?J8lOXp-mSO zKA0^M<6r;&o%i;PXF=_J{D+VKIGOqR&nK%BQG2$&tyY@5gmcc1$HJ#mzkS^sb-3Z) b`B&om+a$%ZreC-R^c;hytDnm{r-UW|0w|sM From 2ce44d7aecf09d724cf2449ef378763ff941dc3a Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:27:48 -0400 Subject: [PATCH 44/79] Add files via upload --- .../textures/block/quazarith_ore2.png | Bin 0 -> 515 bytes .../textures/block/quazarith_ore2_mirrored.png | Bin 0 -> 517 bytes .../textures/block/quazarith_ore3.png | Bin 0 -> 493 bytes .../textures/block/quazarith_ore3_mirrored.png | Bin 0 -> 484 bytes .../textures/block/quazarith_ore4.png | Bin 0 -> 554 bytes .../textures/block/quazarith_ore4_mirrored.png | Bin 0 -> 553 bytes .../textures/block/quazarith_ore5.png | Bin 0 -> 506 bytes .../textures/block/quazarith_ore5_mirrored.png | Bin 0 -> 511 bytes 8 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore3_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2ab57fc615c24be4e34fef84cc155e81f7ae4f GIT binary patch literal 515 zcmV+e0{s1nP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0hmcdK~y+TbyGP` z!%z_YOQIB!Noo!e=vi`r6d>+EMPZ4S15hH16i6H*6d>wE9Dt)BQ6}G?_hvG-vEWI= z%%A1W;^3##X$GA4-ceIhO0KSJ@ePMVN6`KYfq(izeb3APinQ@- zOM(SiL~wK>gnRgA@}~6T1nppZ6QFw z_6wrxD#qBXL(RId-ENz!vpB|g6fTkcgtVdx;Tp-D=ApDzx)NBdUB9K+`vd6|Z2vaU#K2rOixUS7u|cqA4p8H-!U^$};SFN#9wxD%ZgWEUo+^o8zs@I5xG zG0sM^vVF#OSAN2P_opN}cL{x~`|gR^#I*bpDcX5cdA~$5$DTo6k+_mItVwreA>{-q*0k+22F?n3^Z_jUs#q1YFagYBoKpYNQr`vLD-36sY|75o4I002ovPDHLk FV1ijI-WLD> literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore2_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..b74505772d5c6265a9d2031e9eee8d4b0979c055 GIT binary patch literal 517 zcmV+g0{Z=lP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0h&ofK~y+TT~a$v z13?V+%x;>jLb5G~h&TWX^b~yVKpE{R5EV#UMB)@cK}1Ira)8{0E}1cYo_I6tlPr5Y z2%6PQBaJLaxk;XZnslimL=hxb576DfQK;*wo40i?yAjwMgsBb9RL?VB5x%4 zOq0NG$#4hpa2UJ62vU|gdH>Y=y!X8g_+kJ5gJIuL2rIQi2&(fITwT{ZB!HlF=3B}5 zAT|ira=VrDxf{h9d6aM}#466S?e@+j6sr>_0Vosqz& zzZ7dkPkDx;ei4!nJ>xerBgwX(4Mb~3DR`8(fHU*ESf3(u5!tz4c4fKIiXcido6SPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0fI?HK~y+TWs}=Y z!$1&4cgOZ$q@)O1K%xa6B7aCE^kAR^8bFvD0Kp$55yj911=wCQXPik^;Y#bB*PWN` zIGfFekYN~xP!vUI+cu<>%!VFgG?`mOc0RG^0s6kT17e)lCMY}!MF5G!jX7|PRrh4C zNW3S&Ca&b5dP)yUepSM{fkZ-($0JMEbtd=$DP7bt-l?=SJqJ}i)<*Em0At&pTICR) zH2AY2$l)ZH=`>CzlOd&fEpnrTA9d+ma;pIgJzq^#RYq|5F1(YXs;+)TUbf^DC7Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0eMM8K~y+TT~k3$ z#4rp@(%yP#AHf$8e^|l75rKF^1y6uGqWqx?T(|oQo`CqtHZ2~z(}W!<8^;-Y9DD1V zrkTC>Zk}hCW11!xV^lkYpbI>JJ7R)b3qT@p>HT$!{WLj!5YY${-~e!@N(eWt8iG6# zY^^L2O&w>J>;2F<*9-YsD}j$9k0O?0wA{mlxYFqi|0a;ytFZXw#VaAQB_rI1Qg4%)I@nDmiS7V*^B)vo*zlR z5#Iwu(tM#dj-%Q+tYP~u##gb=GymvMj_msQM{%3JfNY1dAiZecrev aHoHIkgb9xj?@O=%0000Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0l!H^K~y+TRZ}}o z12GV_y}L=2CgBcT0L~CVq5&d-1ee$j3R)y+x28rkh#;y+5X23TI8BtSZQdL2Sj&?p zo}JH|j~zRmPNV7IoHHQ=6Jr!<+cw+FvNYCOvG?KlLkHo#&jCsj<6$iZfPSJ+Bn14R zvF}L1hqZIo6h$F+cA`bJC~U%!6P3i;qq->Gpo>{RdsS84SAtVU6=JBd? z5o3q#b}M^QI87uGWwY5J>A3d(8|RC3L}8~qIS$V}%6L4^O{Nam`a-_Ta;IT6Cex=n zMZ2)0(J1O3ICqTu2-uZ`qIiYvTQ%Ie_gvy-4wk^K2xCLIu0xnX zkjD}F0lc~p_CWB1jej-t5g{DlJ?ufdg+2%AvXRF%nM|U-ICeqS7$32RD|B)ucIPgn zqY&=!buWp8ELWGoN@=qMR;Pa#w$f_ho5u()}yz#z7*iAqMuE%5KG sY;>sZ{S0q{SC-l*=;x@qL}QHk199O$Z1h{!jsO4v07*qoM6N<$f)*+7@Bjb+ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore4_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..256ed5ffbe9c0710d38beac4f86f62c598e74d53 GIT binary patch literal 553 zcmV+^0@nSBP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0lrB@K~y+TZBwyI z1ThdzGPk(w!EqnrR~(1Bji8+$V4cEFEUxee_9OH_M8#?m6pO1w1Pd!sf5PgrNt~BB z=PEu3lgv!sn@kct9*?8?hA}4D5Q6gFtFG&m)>;u!iedg2>^CaL%mIsyu-KG+8&+b1 z{@g$ffK%qMLSl^ON+uTSvaw%DuK6EGG7QnxiUdQd#4wU5>VTX#tG12zbDm$M9P~wc zl?Y^`I0XoT0Dhu#R=rowO)LmdfgDqhMx%(tKC-eLAvad*&(uuscX)o&q#%QeqL^Wl z%IQ@B1tB(O%Z31w7haWYhpkd?b&82n2vh6afrT0XGAR>7>pfP72uO1U@KaS)GbD!a z%8bKS>*qE`&!cLIK9UMzF+Q^D8WTP7c;|H%PCbx?T#wd=)|exn&w2A%iV0v~=VfK&f@JlO0FcN40h02OPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0gp*UK~y+TZBjc< z12GV_y-KQVl7f~BZh)vb00@bO0!oe$sx+ZOp`hGLAaMXBE&(T?BN7c2b!_wAIM3M# zo-{ij&&-=0+fOEw>;UgQm1~;Dt=DU_Q%YttHW&Xmex-@1U z&y-L2@pzmW=qHdl=R@dYB<@46kotrvA3EkpSYtcjrs<@#K;h3U#uFr5!oNlF73@#Q zd^1&9B*jQaqY>;fx^w4fa0FIP!YeI|F`i-v*NA->a|p|h*{t(z+tyzo_-`6fOhj2E zZ{!=Y2VujPu0AAzjfTTveM|(K#Q2K$@U@BDbXvNfPN&div(f^6N{kB>&k<>@u%A<} z(VWfI5Gv;AEKcds^7=%SZ3V!Czq-7{5Z?bKvR~NP6@_{G61`vU+&>%CrQ5d$u@|;C w`1f{YVkcOvDQtrN6%uU1M?;8F_AZ?J1*pm-Ex8PP(*OVf07*qoM6N<$f}v*9QUCw| literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore5_mirrored.png new file mode 100644 index 0000000000000000000000000000000000000000..f6ec89b0e55ce70f8a7906379ea7775c5accf9f0 GIT binary patch literal 511 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0hCEZK~y+TT~j+w z!$1)Au9H-W9mzCEbZ`rL6hTJ;5|=Pl8bX5v2s+<@)(1d{GoWw+x=_+VY47shY-Y2` zlSVT;-#5FqsjABNeV-A=n9O@GLLarYHX95EnR8C!)OnsujIdfvFhO;Yvzo~)Qm~;G z6E-c<#7#jfOm?x=Ko7gxxmg{~i(2VxOotM7t+%?;c8=$7=tE(lMU16lilXpoM>_ld z2Gg%lbbtmc=nu#jVs{PifcaVz??5|-X>-U5=LlibGVi1lv@=2K=vS)NPKHjsswFLCpbvf zAp-`&3NP!M-^cV>LpyCi1csrpFeuA1S%J6DZ{QcJJZHnN<2foyHYXu#iti+uHlB3)NyGeu*h` zojiZQ9W2-04YUyv8PLfmN`FrqjLm**{Z`6EnTO0v!MV002ovPDHLkV1i^0 B(&+#I literal 0 HcmV?d00001 From bdac949a31ee927cc03a5d4a02cc2e68035a8c21 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 19 Oct 2024 15:34:06 -0400 Subject: [PATCH 45/79] Add files via upload --- .../textures/block/quazarith_ore1.png | Bin 0 -> 475 bytes .../textures/block/quazarith_ore1_mirrored.png | Bin 0 -> 479 bytes .../sculk_depths/textures/block/umbrusk1.png | Bin 500 -> 293 bytes .../textures/block/umbrusk1_mirrored.png | Bin 496 -> 288 bytes .../sculk_depths/textures/block/umbrusk2.png | Bin 460 -> 296 bytes .../textures/block/umbrusk2_mirrored.png | Bin 453 -> 304 bytes .../sculk_depths/textures/block/umbrusk3.png | Bin 438 -> 297 bytes .../textures/block/umbrusk3_mirrored.png | Bin 437 -> 296 bytes .../sculk_depths/textures/block/umbrusk4.png | Bin 553 -> 319 bytes .../textures/block/umbrusk4_mirrored.png | Bin 546 -> 314 bytes .../sculk_depths/textures/block/umbrusk5.png | Bin 543 -> 299 bytes .../textures/block/umbrusk5_mirrored.png | Bin 548 -> 294 bytes 12 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png create mode 100644 src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1_mirrored.png diff --git a/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png b/src/main/resources/assets/sculk_depths/textures/block/quazarith_ore1.png new file mode 100644 index 0000000000000000000000000000000000000000..b895c0693504b07c3fb0dc6d2665010917dec802 GIT binary patch literal 475 zcmV<10VMv3P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0dPq~K~y+TZIeAx z!!QtqE!!nYj5!BAh52jANf-*xK*b5D-K5DSpvcfNa3gw4?6=|(1$Z;-mGk23YN|q!cJlS)wn)8vp4g&c7 zP=+!AAZpuVJ9%x5r%sYpWfCkbmrL`xK?;Dzig6g{nR#C=x-(l_+Bi5e~saEKH5&OigVp3Px#1ZP1_K>z@;j|==^1poj532;bRa{vGizW@LZzX3P}QzQTY0dz@3K~y+TZBsE) z!!Qt(Nt+lHpwww!gi>BA=Pc3-TSJlV72;k&6%C!>L7NHgA7<-J##oeEj!eXM1TQ;!Q26F z_xh>v|So!hXM(N<@q=lgKxSKd?JFlaxB-e2SoNnkLC+ zYDveT&Fx-etVeiOGm&x4N3oN8#s2tKwwRx`?u%k4WIiy)nLFQtg^rLP(l0uAvlWG0 zmSq;ufLa9;L%5R{$SxSSx$|MmFQ7rHbLGdxgM66&6L~bvQ=EOu1aE^NK?VN9xj!M5 V+*8Ubvc&)Z002ovPDHLkV1jxh&rtvX literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1.png index d4f61b12bc7d9bfc39eeb9a920dd98245f2012b4..81aa6957c28aaa17e1fe7d65d6197a7f55ccc0b5 100644 GIT binary patch delta 249 zcmV?-60qj9~~ed9wHPI6$uCl z7Zw>66c-s68yy=RBOxUvBPSmmARQYY6cZK_5fmaIB`PN?6%!URFER!N2No3=9UOlk z7#12H9U&hbAsiYWCL|~)Bq=8(C?z8%CL<^t8XX)N9UL1T3JMA%AS56jAt4?jBOoIg z7a9Zv1tA|I|E4%j00009a7bBm000id000id0mpBsWB>pF#z{m$R47w5jtf%)F${#m z(O$s^Ip9z^6>^E?t*F5H;{X3HwlIJ0Oxo#g@})$rtnGXrg3n#2dv#4Wx4n#u{-8fB zM|bxRW2%OaPl%oO&%sZoLc+D0swlI{iyDcD)>5-sGz2vv6cxm9Q9@>{Y6uN3MCTJ8 zgsEs04bY35WRxC?73oTY#Ip+wg&o3x{$o=|WCB3ui^X!a-r!3dsVYXVZ(%mOb?@$D z@~KL@y*m@jHkXI0np5-D`u@q9Eac7aUvWI10EtW*k4lhPE&u=k07*qoM6N<$g4G?1 AzW@LL diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk1_mirrored.png index 407d651e450f5e145d67b6890566b2f56e5c15e2..56132479339e1c178a21a9333453baf73487083a 100644 GIT binary patch delta 244 zcmeysyntzf1SbnK0|Ud`yN`khC(om@EiR`YhBPSyvB^?_b85bKWCo3W#B^47E5)l+KFER!N2OJt6A02-o z9vvYV78)HKAQlxE8yX!ZBPb;!CMP5)CnPB*Bq$0B3LG0A92p%UA0h+<1sN9_BOoLr zAR{3jA|M_iM1F<300009a7bBm000id000id0mpBsWB>pF!bwCyR47v=joEg>Fbo9+ zI5q)F2@nA)&`2cg`_`uA|Gx{_xi5c`j^@k-sMQ-Lvd%@;G~-qqIv?H7UeX^72Pwv* z@dW5=YTe9QqtN`jp8?B)1W`zYB}al>7cQ7Fr(B2#NT=TsNpBHAA7aH=1et*g<;5qw z5V)E?D&<036bN@<7*K^03cP%YfL@`pN~zKUwS2YSYO!7zqRe0002(-QrS_As~MwP)t-s5D*X#4-XCw4hstl2?+@b3JMGi z3=$F&5fKp$4Gjke2M7oVQMgZ}00009a7bBm000iZ000iZ0XPLyBme*ajY&j7R2b7^ zU}RKw6=VPbMm1+BLpfN0p@4y*K`_~Mk^ln}1EWx;Yo-8DMo7&iB-luhks&z6Sj}kI zOi74gmGdOV6k}schNXdmg389m#thbmjS^y-$;J$-(-aveX=Wxd%yi966q-57kU?mw zk>$)u6BQU3h0~0UGdUO-Bp4(or=>w`oxE9*sR00#ZyS6w)ufjI0000;= delta 418 zcmV;T0bTy60?Y%D7zqdi0000eEe}(XAs~OBP)t-s7#0{B7#kxYBqARpBq1dvA|)jv zCMF{%A|NFg7aAQK9vK%I8yX%S93LVeBpe$ZA|N9l9UvecA`}x92?z-n78w;37b+(! z9UC1ZAtfIiARQYY6cZK_5fl{@7BVj~92y=L6&M{HAQ%=J9vvYc9U&PP8zv+uCnSF< zCnP8(BPJ#zC>t6b92p%P8y*S@3L_vSARZwZ7a9Zv1tA|ICa5kO00009a7bBm000id z000id0mpBsWB>pFwn;=mR47w5kJ%Q2FbqV)Qd>2s;1b0ki;Cik%Kv|xDb;!CX)>Lg z6u|R?Pz|&;PB0veeT*j4$t+Ihi{*a`h}Ije6_FyX(k%mHX2=*eh=zBDfSGL+iEN1F!;+7zqRe0002(-QrS_As~MzP)t-s4-XF#5)u#)5DpFw2?+@Z2nY-e z3=t6#4Gj$o3kwPg3I_)V1_lNStM_UE000SaNLh0L01m$Z01m$aI0aKA0001zNkl41`1f+P1@-METL(Bnm@Br>&Av8|Gsbf)$?Hnmd9o3?}f*#H~z0Yv= zVnW1M+mt{wPtFy?2;!YT5*Cyu&pQZ~ARp@tuux{$1PQ53m+SWxPRAa_?TZ-N6WHv7 zA$kGcEHQm)fztJWt3}?%3reo)CKdvROqsF&DL0{FBX-z(LG}l=M<~~fs~L6x0000< KMNUMnLSTZV1zLCj delta 411 zcmV;M0c8HL0>uN67zqdi0000eEe}(XAs~OBP)t-sA|NFuBPS&yCL|&yBq1dtA0s0n zBpMhS7#0{66c-m383_mp6cZI79wHwdAR-_mA|NCj8yy}T9~&AT85bEH8y*-J8Wa;2 z9UC7X93UzuDD9VR0vB_n?( zCnP8*Bq=5&C>a+U3JMAw8y*}P9U&hg1Ox>c7aAiVBp@Ck=eXhD00009a7bBm000id z000id0mpBsWB>pFuSrBfR47v|j@cH1FbqUfTg4TXsL`lU_YD=r|Nl0pz`P{QnYmMH zWK7Gtb|>mmuRj=$;_+lUNw_ncFGzouD{IuMT4UB5RZ`jtF_RG1l!a0(nyGRiiQwJ{ zCcLW!5=0Rv4vY-`#uG$Z&mcfG0~!Wct3)`mpvTur@d4t12#yMg;Th$Aw?7<@Ct)Ax z=heks-R)-Xk5Q7-DbJrVx8thEz1~z5$>&?vWfc9&KkBd&I&CJWJ^%m!07(Z$PDHLk FV1gMndyfDB diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk3.png index 5b74dd70fa2409ffc51d168d37c065b9433cd8df..b8125313c52cd8c8b25b1e0570a5a822d67f90e1 100644 GIT binary patch delta 253 zcmV(`e6000SaNLh0L01m$Z01m$aI0aKA0001sNklQJ*wu9v^DfK*O0^Xpk)fFGpLsI`J#~E*}d1#T6L6e4=hz00000NkvXXu0mjf DYou36 delta 395 zcmV;60d)SU0=5H?7zqdi0000eEe}(XAs~N{P)t-s7#0{B7#kxYBqARpBq1dvA|)jv zCMF{%A|NFg7aAQK9vK%I8yX%I6BZ&MBOe_gARZzV6BP*v2^SU_6%-dLCo3Hr9UmMZ z9UC7K5fl{@7BVj~92y=L6&M{HAQ%=J9vvYW7aJZNA0{LyCnPB+Bq${#CL0D0Ix|z zK~yMHHBSi=!axW^Z7nKTuc)>4sQ2yve`ly;W@jPE5Ozgc?M{+*vrK=GUVqRwCx-cG zJeke}m!g;iCW9UED_`1?WEA#bcv)y?WW0lnV(cze#PRZGQapC8#x1?E| pcPzix^;#a!RwO9&@p|t+pD$lb5L}nUjy?bY002ovPDHLkV1kiEdjbFe diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk3_mirrored.png index ade40f759e31d56615f1c0e86a79d34749603e87..70b23a4c4e5c63bb4567d3a491305b51104d837c 100644 GIT binary patch delta 252 zcmVO!7zqRe0002(-QrS_As~MwP)t-s5D*X%5fKg!4hstl4Gj$s4-XO& z5()|m3=9kj2?+-W2M7oVXhhmv00009a7bBm000iZ000iZ0XPLyBme*ajY&j7R2b6@ z%`pnXFcb#hKY=($Pw=P)-BYl0Yect4%>&2YAr*Cv1-rY5SMUVh&d%TPK>^E>m4#@U zp}8?M0J9kd4BO4)j>tm9MPD;RT4~3@3F@7zqdi0000eEe}(XAs~N{P)t-sA|NFuBPS&yCL|&yBq1dtA0s0n zBpMhS7#0{66c-m383_mp6cZI79wHwdAR-_m6cZL38Xg%J866uQ7#A8H8y_DWASx#- z9UC1L6BZH?6f!R|92y=T9U&MN8XX)U78Mv98XYAgCMP5)CnPB*Bq$yn9~l=L3JQM; z92*`S866=XA_N2l85bHOAS56jA)kY(D0Io?y zK~yMHEl&v&fn>JgJCaF1zSU=f(&*r%gso^SzcQ5Qq3iC%8Pw;aC)wBvG ow9QN&Pc%*SdVf5OF2nEV2WyWIxwHPbwEzGB07*qoM6N<$f>$wp5dZ)H diff --git a/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png b/src/main/resources/assets/sculk_depths/textures/block/umbrusk4.png index 89f3df0f671d9486bd542a0dbb3eebe9672cdcda..5d6e49118e466412d0a9f3724b36ab14856c7c91 100644 GIT binary patch delta 275 zcmZ3O>_%)r36AA}h#Sc6r7g0nqc977~7 zGfrU0|Ifg{$YkQm1{7suQmSZWW>a8bNHFqTq)@=XAi$u!!bwShfuUYWNxP#+322aU zXh*9-0#gx#i$`aJfx4O!!xS&qMM_HMr3@z*M@%+Oidw?pv1)~rap{zH2Cb#uC%Rmm zjTovt&hDOh%1DVpDRST1dw zN(!pdQgU)K^3swrN(w5nGV)3a%JQ;`3UbPl64KmU+~Q)Aq9WqT3P3IDsz9WyAtEd$ zC!;7UEw7@erX;T-B`GT@F0HAiB`c#KC!?UQqM@&&udbpgAucT`AtNDPFC{OlBqyt= zs;sV|s;Q-}t)`-(t*N7r+FD43fE6^|{RV6if z83k!6Ss6)Lc{wFTppEj%$_gqX!lKfWvT7=t9Pgjo0e#9@;1OBOz`%DHgc*uI2Bxcx>e3bNL1Zy?LVzrG)a4B z^i!``QLYH#fH>wV#CnO>zBq1dtA0s0n zBpMhS7#0{66c-m384C&v85kQN9wQ$eAtE3nA|NCk93LJW9~&AT8yOrF6BZ*NB_$#! zB_k*#A}1*(Dj63W8W|lTA0#9pCLJ3e9vmSU7aJ!eC?_N-FDx$|93UPXARZkdA02-p z7#A8D7#u1mD<~x?B_k&+DlIE1EG8r<92*}T8XhAdCK3@89UCAV8Xqn!FDNA{8WD9UmMZB_bvu9wHkV9TXE4As-_nAS59lBp)6k92p%ZBq`3UKB@o!010qNS#tmY z4#NNd4#NS*Z>VGd007oWL_t(2Q!RhY>r#U-6a?TsRISy5kw_4#K!a%`0R_C`9Z}!^ zks27kIX`yJ>@5BfIkUa}gZUvAN5@OoJ7K5H=j_bq2s{tMfkWYW7zrZ8SY5!qOjs0A zl4c960hwP($;TzNQPbjRtAXpn20jW5%2L{IMJR7>>w4;B6PT&eSSmq#SHon$7$^bQ z)2fl+!9CDEWZFs}u|@L~$Kd9<1R7b|oHpxavC+Cy>LuXqxc>SUikYawcd9=86}s;8 ut9QS9Jq*K7;{BrU`@*Xz|I2ft1Z)RRR2eHI)1CqV0000l9(f~%t(y=?%@ zVX{pSp`3F34h7BbZU|EJYpedSK2CnX;SAm|Zlx|2`2h_294#i`Dn|eS002ovPDHLk FV1l^rSGNEF delta 501 zcmV#CnO>zBq1dtA0s0n zBpMhS7#0{66c-m384C&v85kQN9wQ$eAtE3nA|NCk93LJW9~&AT8yOrF6BaHkFC!o& zB_by&CMp>h8yXoMA|E6qAtoduCmkCf9vmSU7aJ!eC?_N-FDx$|93UPXARZkdA02-p z7#A8D7#u1mD<~x?B_k&+DlIE1EG8r<92*}T8XhAdCK3@89UCAV8XqVnDjFCZ78Mv9 z8XX@TASEIuARZzc866Z86(JuZBOoLpA0!_hA{-eVCL}2>yA$F7000SaNLh0L01m?d z01m?e$8V@)0002iNkl^2Cl!$Se0+aD0g`rk7`q5z@G9(EP))N)u0ZN= zpsjJhIX=l*F2TpEXQTpnRW|EG#N5BOxXn8Xg=Q9~>GV9UCAL5fmsTDi#$O8WswIsS0|XV^a4Wd{|1X*1 zd76j0cZTTT@aT9pXAJ*{J0~u8+*9|=^B3nAOJXb#LWE+DxgETSmT{7@)yhpTeO#@P zk=)3Alq+?eD_~1NaRZ@Co3m^wt4at}*TO`6kK)O6v1xAaYHIFVq_VT71w&@4lX?mV z62`z#iHAg6@nZ`-MVzv%Rvl138;&d!9iipXi1b$ANG$= wFWn8ppvNzN{Ql{Ca*;BY=f63tykZ>3KZO4p=zch9ZU6uP07*qoM6N<$g4Da2P5=M^ From 47163cde490d18a1209537dc326bfb64e47db75d Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 16:48:36 -0400 Subject: [PATCH 46/79] Add files via upload --- .../recipe/amalgamite_brick_slab.json | 15 +++++++++++++++ ..._brick_slab_from_amalgamite_stonecutting.json | 10 ++++++++++ .../amalgamite_brick_slab_stonecutting.json | 10 ++++++++++ ...rick_stairs_from_amalgamite_stonecutting.json | 10 ++++++++++ .../amalgamite_brick_stairs_stonecutting.json | 10 ++++++++++ .../recipe/amalgamite_brick_wall.json | 16 ++++++++++++++++ ..._brick_wall_from_amalgamite_stonecutting.json | 10 ++++++++++ .../amalgamite_brick_wall_stonecutting.json | 10 ++++++++++ .../sculk_depths/recipe/amalgamite_bricks.json | 16 ++++++++++++++++ .../recipe/amalgamite_bricks_stonecutting.json | 10 ++++++++++ 10 files changed, 117 insertions(+) create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json create mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json new file mode 100644 index 00000000..2909dbe3 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###" + ], + "key": { + "#": { + "item": "sculk_depths:amalgamite_bricks" + } + }, + "result": { + "id": "sculk_depths:amalgamite_brick_slab", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json new file mode 100644 index 00000000..6cc79c00 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_slab", + "count": 2 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json new file mode 100644 index 00000000..aec54952 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite_bricks" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_slab", + "count": 2 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json new file mode 100644 index 00000000..09b69712 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_stairs", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json new file mode 100644 index 00000000..c161987f --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite_bricks" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_stairs", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json new file mode 100644 index 00000000..128780b4 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "###", + "###" + ], + "key": { + "#": { + "item": "sculk_depths:amalgamite_bricks" + } + }, + "result": { + "id": "sculk_depths:amalgamite_brick_wall", + "count": 6 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json new file mode 100644 index 00000000..e7f8e356 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_wall", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json new file mode 100644 index 00000000..4b0a2383 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite_bricks" + }, + "result": { + "id": "sculk_depths:amalgamite_brick_wall", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json new file mode 100644 index 00000000..72cd36f9 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "##", + "##" + ], + "key": { + "#": { + "item": "sculk_depths:amalgamite" + } + }, + "result": { + "id": "sculk_depths:amalgamite_bricks", + "count": 4 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json new file mode 100644 index 00000000..2a066e31 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite" + }, + "result": { + "id": "sculk_depths:amalgamite_bricks", + "count": 1 + } +} \ No newline at end of file From 7cdea542ef021584404d96e110fe826cecf430f5 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:06:53 -0400 Subject: [PATCH 47/79] Update petrified_valtrox_slab_from_petrified_valtrox_log_stonecutting.json fixed the count by removing the quotes --- ..._valtrox_slab_from_petrified_valtrox_log_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_from_petrified_valtrox_log_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_from_petrified_valtrox_log_stonecutting.json index 9e61661f..704f16ac 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_from_petrified_valtrox_log_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_from_petrified_valtrox_log_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_slab", - "count": "8" + "count": 8 } -} \ No newline at end of file +} From 415770d169a317fb0debf4ce523eb6fb9b647258 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:07:21 -0400 Subject: [PATCH 48/79] Update petrified_valtrox_slates_stonecutting.json fixed the count by removing the quotes --- .../recipe/petrified_valtrox_slates_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slates_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slates_stonecutting.json index 8d123473..5d355630 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slates_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slates_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_slates", - "count": "4" + "count": 4 } -} \ No newline at end of file +} From 76e858b1d256536e92159b1635be7ac79bc3946d Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:08:13 -0400 Subject: [PATCH 49/79] Update petrified_valtrox_stairs_from_petrified_valtrox_log_stonecutting.json fixed count by removing quotes --- ...altrox_stairs_from_petrified_valtrox_log_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_stairs_from_petrified_valtrox_log_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_stairs_from_petrified_valtrox_log_stonecutting.json index 1f5957f7..fee36b9f 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_stairs_from_petrified_valtrox_log_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_stairs_from_petrified_valtrox_log_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_stairs", - "count": "4" + "count": 4 } -} \ No newline at end of file +} From 38b1fbcac7038a4634253c92abab57062ce0feda Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:08:28 -0400 Subject: [PATCH 50/79] Update petrified_valtrox_wall_from_petrified_valtrox_log_stonecutting.json fixed count by removing quotes --- ..._valtrox_wall_from_petrified_valtrox_log_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wall_from_petrified_valtrox_log_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wall_from_petrified_valtrox_log_stonecutting.json index 5aee3a94..197420cc 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wall_from_petrified_valtrox_log_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wall_from_petrified_valtrox_log_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_wall", - "count": "4" + "count": 4 } -} \ No newline at end of file +} From 3537010b9e67e8ec5a8914746054fc98e0e1d5f0 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:08:49 -0400 Subject: [PATCH 51/79] Update petrified_valtrox_wood_stonecutting.json fixed count by removing quotes --- .../recipe/petrified_valtrox_wood_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wood_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wood_stonecutting.json index 298f6b2b..ad90ca04 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wood_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_wood_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_wood", - "count": "4" + "count": 4 } -} \ No newline at end of file +} From 803f622436aa98131b368a2acc54a6b287ab398c Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:09:07 -0400 Subject: [PATCH 52/79] Update polished_zygrin_slab_from_zygrin_stonecutting.json fixed count by removing quotes --- .../recipe/polished_zygrin_slab_from_zygrin_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/polished_zygrin_slab_from_zygrin_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/polished_zygrin_slab_from_zygrin_stonecutting.json index 5f9138bd..fd646e19 100644 --- a/src/main/resources/data/sculk_depths/recipe/polished_zygrin_slab_from_zygrin_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/polished_zygrin_slab_from_zygrin_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:polished_zygrin_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 51e78954881c07e5c59caf9eba56bb30f5ddafa0 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:09:22 -0400 Subject: [PATCH 53/79] Update petrified_valtrox_slab_stonecutting.json fixed count by removing quotes --- .../recipe/petrified_valtrox_slab_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_stonecutting.json index 0eedd688..c9db043a 100644 --- a/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/petrified_valtrox_slab_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:petrified_valtrox_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 598ff03c41a68cec41aab05c5595490dbae09aaa Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:10:05 -0400 Subject: [PATCH 54/79] Update umbrusk_brick_slab_from_umbrusk_stonecutting.json fixed count by removing quotes --- .../recipe/umbrusk_brick_slab_from_umbrusk_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_from_umbrusk_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_from_umbrusk_stonecutting.json index 8fac52a0..63e7d16e 100644 --- a/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_from_umbrusk_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_from_umbrusk_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:umbrusk_brick_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From b57c08948c89bc2ba3cef69ff2e47105fac640c3 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:10:14 -0400 Subject: [PATCH 55/79] Update umbrusk_brick_slab_stonecutting.json fixed count by removing quotes --- .../sculk_depths/recipe/umbrusk_brick_slab_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_stonecutting.json index de5f6744..fe573e7e 100644 --- a/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/umbrusk_brick_slab_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:umbrusk_brick_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From be452ace38e8d50e947696d3f7362b32be2e9bda Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:10:37 -0400 Subject: [PATCH 56/79] Update umbrusk_slab_stonecutting.json fixed count by removing quotes --- .../data/sculk_depths/recipe/umbrusk_slab_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/umbrusk_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/umbrusk_slab_stonecutting.json index 50536702..630ff64e 100644 --- a/src/main/resources/data/sculk_depths/recipe/umbrusk_slab_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/umbrusk_slab_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:umbrusk_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 466238f9f7657623994ef44fb4abc8aa77000f67 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:10:53 -0400 Subject: [PATCH 57/79] Update zygrin_brick_slab_from_polished_zygrin_stonecutting.json fixed count by removing quotes --- .../zygrin_brick_slab_from_polished_zygrin_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_polished_zygrin_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_polished_zygrin_stonecutting.json index b64657d9..dbb37c48 100644 --- a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_polished_zygrin_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_polished_zygrin_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:zygrin_brick_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 6a824f17f4af3bd6abacff6ded4b28e644bc7557 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:11:03 -0400 Subject: [PATCH 58/79] Update zygrin_brick_slab_from_zygrin_stonecutting.json fixed count by removing quotes --- .../recipe/zygrin_brick_slab_from_zygrin_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_zygrin_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_zygrin_stonecutting.json index f326c2a5..205a20a1 100644 --- a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_zygrin_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_from_zygrin_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:zygrin_brick_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 8e7ff5f8611748652a7a13adb5e47d7cfea64a17 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:11:12 -0400 Subject: [PATCH 59/79] Update zygrin_brick_slab_stonecutting.json fixed count by removing quotes --- .../sculk_depths/recipe/zygrin_brick_slab_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_stonecutting.json index 54725983..b9c17a73 100644 --- a/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/zygrin_brick_slab_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:zygrin_brick_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From 335a3cfd192e4184ee3abbe3c72dc88bf879db7b Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:11:42 -0400 Subject: [PATCH 60/79] Update zygrin_slab_stonecutting.json fixed count by removing quotes --- .../data/sculk_depths/recipe/zygrin_slab_stonecutting.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/data/sculk_depths/recipe/zygrin_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/zygrin_slab_stonecutting.json index 7c6a3598..eb1c3e27 100644 --- a/src/main/resources/data/sculk_depths/recipe/zygrin_slab_stonecutting.json +++ b/src/main/resources/data/sculk_depths/recipe/zygrin_slab_stonecutting.json @@ -5,6 +5,6 @@ }, "result": { "id": "sculk_depths:zygrin_slab", - "count": "2" + "count": 2 } -} \ No newline at end of file +} From bbfb274dec5b65ffd54e2d0d41decf39e9a56f1a Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:36:23 -0400 Subject: [PATCH 61/79] chiseled amalgamite modelo --- .../models/block/chiseled_amalgamite.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json diff --git a/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json b/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json new file mode 100644 index 00000000..777c3b56 --- /dev/null +++ b/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "sculk_depths:block/chiseled_amalgamite_top", + "east": "sculk_depths:block/chiseled_amalgamite", + "north": "sculk_depths:block/chiseled_amalgamite", + "particle": "sculk_depths:block/chiseled_amalgamite", + "south": "sculk_depths:block/chiseled_amalgamite", + "up": "sculk_depths:block/chiseled_amalgamite_top", + "west": "sculk_depths:block/chiseled_amalgamite" + } +} \ No newline at end of file From a2e872a7395b3c383394b8f4f1570fc06f428e03 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:37:18 -0400 Subject: [PATCH 62/79] chiseled_amalgamite_item_model i didn't mean to put underscores --- .../assets/sculk_depths/models/item/chiseled_amalgamite.json | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json diff --git a/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json b/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json new file mode 100644 index 00000000..348ff121 --- /dev/null +++ b/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json @@ -0,0 +1,3 @@ +{ + "parent": "sculk_depths:block/chiseled_amalgamite" +} \ No newline at end of file From 16a297ae7a57c9cddad1a162fac9d763850eef6c Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Sat, 26 Oct 2024 17:38:43 -0400 Subject: [PATCH 63/79] amalgamite recipe fixes and chiseled amalgamite --- ...iseled_amalgamite_from_amalgamite_stonecutting.json | 10 ++++++++++ .../recipe/chiseled_amalgamite_stonecutting.json | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json create mode 100644 src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json new file mode 100644 index 00000000..a0d62438 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite" + }, + "result": { + "id": "sculk_depths:chiseled_amalgamite", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json new file mode 100644 index 00000000..88f6bf78 --- /dev/null +++ b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": { + "item": "sculk_depths:amalgamite_bricks" + }, + "result": { + "id": "sculk_depths:chiseled_amalgamite", + "count": 1 + } +} \ No newline at end of file From 7e47f0ef55383b58fe869385895ebeb53e51a8aa Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:00:11 -0500 Subject: [PATCH 64/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json --- .../recipe/amalgamite_brick_slab.json | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json deleted file mode 100644 index 2909dbe3..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###" - ], - "key": { - "#": { - "item": "sculk_depths:amalgamite_bricks" - } - }, - "result": { - "id": "sculk_depths:amalgamite_brick_slab", - "count": 6 - } -} \ No newline at end of file From e35508779c96315f7129f3a6ae17fc1d3a0f7811 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:00:21 -0500 Subject: [PATCH 65/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json --- ...gamite_brick_slab_from_amalgamite_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json deleted file mode 100644 index 6cc79c00..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_from_amalgamite_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_slab", - "count": 2 - } -} \ No newline at end of file From 478bf3f41bcfff5008adf9a86d9568b5f7509f5b Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:00:30 -0500 Subject: [PATCH 66/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json --- .../recipe/amalgamite_brick_slab_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json deleted file mode 100644 index aec54952..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_slab_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite_bricks" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_slab", - "count": 2 - } -} \ No newline at end of file From 32778739f7a7b9e8416bcf9def9ae57689bb9c97 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:00:39 -0500 Subject: [PATCH 67/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json --- ...mite_brick_stairs_from_amalgamite_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json deleted file mode 100644 index 09b69712..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_from_amalgamite_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_stairs", - "count": 1 - } -} \ No newline at end of file From b051c13fbd2619684c9a838557e40ea30c8d8f12 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:00:53 -0500 Subject: [PATCH 68/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json --- .../recipe/amalgamite_brick_stairs_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json deleted file mode 100644 index c161987f..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_stairs_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite_bricks" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_stairs", - "count": 1 - } -} \ No newline at end of file From a92be0a4bd4d9281e3171fe488267dc4e8da4b46 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:00 -0500 Subject: [PATCH 69/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json --- .../recipe/amalgamite_brick_wall.json | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json deleted file mode 100644 index 128780b4..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "###", - "###" - ], - "key": { - "#": { - "item": "sculk_depths:amalgamite_bricks" - } - }, - "result": { - "id": "sculk_depths:amalgamite_brick_wall", - "count": 6 - } -} \ No newline at end of file From dc1fe4c9b0877095ec188a5ac8ea16ad3fda2014 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:08 -0500 Subject: [PATCH 70/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json --- ...gamite_brick_wall_from_amalgamite_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json deleted file mode 100644 index e7f8e356..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_from_amalgamite_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_wall", - "count": 1 - } -} \ No newline at end of file From 90c9a26972f2e5ddbbe4dc33f6647918fd877c25 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:15 -0500 Subject: [PATCH 71/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json --- .../recipe/amalgamite_brick_wall_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json deleted file mode 100644 index 4b0a2383..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_brick_wall_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite_bricks" - }, - "result": { - "id": "sculk_depths:amalgamite_brick_wall", - "count": 1 - } -} \ No newline at end of file From eb1f857219151277c7ce69f3c7a2f49f44924349 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:23 -0500 Subject: [PATCH 72/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json --- .../sculk_depths/recipe/amalgamite_bricks.json | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json deleted file mode 100644 index 72cd36f9..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "type": "minecraft:crafting_shaped", - "pattern": [ - "##", - "##" - ], - "key": { - "#": { - "item": "sculk_depths:amalgamite" - } - }, - "result": { - "id": "sculk_depths:amalgamite_bricks", - "count": 4 - } -} \ No newline at end of file From 7a81fe32fb0392f548b64dd6c5e4cdb862a4445b Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:29 -0500 Subject: [PATCH 73/79] Delete src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json --- .../recipe/amalgamite_bricks_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json deleted file mode 100644 index 2a066e31..00000000 --- a/src/main/resources/data/sculk_depths/recipe/amalgamite_bricks_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite" - }, - "result": { - "id": "sculk_depths:amalgamite_bricks", - "count": 1 - } -} \ No newline at end of file From b7e8c925b9625638dc8aae8299a699c0715dc7af Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:36 -0500 Subject: [PATCH 74/79] Delete src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json --- ...iseled_amalgamite_from_amalgamite_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json deleted file mode 100644 index a0d62438..00000000 --- a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_from_amalgamite_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite" - }, - "result": { - "id": "sculk_depths:chiseled_amalgamite", - "count": 1 - } -} \ No newline at end of file From dd42c1ab1b2049cce5e7442dbe69645e505436e1 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 24 Dec 2024 10:01:43 -0500 Subject: [PATCH 75/79] Delete src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json --- .../recipe/chiseled_amalgamite_stonecutting.json | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json diff --git a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json b/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json deleted file mode 100644 index 88f6bf78..00000000 --- a/src/main/resources/data/sculk_depths/recipe/chiseled_amalgamite_stonecutting.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "type": "minecraft:stonecutting", - "ingredient": { - "item": "sculk_depths:amalgamite_bricks" - }, - "result": { - "id": "sculk_depths:chiseled_amalgamite", - "count": 1 - } -} \ No newline at end of file From 8f434c9e705a4446c3b5ea102c20f8e36fb2bd4e Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 7 Jan 2025 19:11:19 -0500 Subject: [PATCH 76/79] Delete src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json --- .../models/block/chiseled_amalgamite.json | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json diff --git a/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json b/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json deleted file mode 100644 index 777c3b56..00000000 --- a/src/main/resources/assets/sculk_depths/models/block/chiseled_amalgamite.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "parent": "minecraft:block/cube", - "textures": { - "down": "sculk_depths:block/chiseled_amalgamite_top", - "east": "sculk_depths:block/chiseled_amalgamite", - "north": "sculk_depths:block/chiseled_amalgamite", - "particle": "sculk_depths:block/chiseled_amalgamite", - "south": "sculk_depths:block/chiseled_amalgamite", - "up": "sculk_depths:block/chiseled_amalgamite_top", - "west": "sculk_depths:block/chiseled_amalgamite" - } -} \ No newline at end of file From 06ffcfa9868838560d7af1fa5a635f61fd88d560 Mon Sep 17 00:00:00 2001 From: Yvain van de leeuw <103436889+Garnetuniverse@users.noreply.github.com> Date: Tue, 7 Jan 2025 19:12:25 -0500 Subject: [PATCH 77/79] Delete src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json --- .../assets/sculk_depths/models/item/chiseled_amalgamite.json | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json diff --git a/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json b/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json deleted file mode 100644 index 348ff121..00000000 --- a/src/main/resources/assets/sculk_depths/models/item/chiseled_amalgamite.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "sculk_depths:block/chiseled_amalgamite" -} \ No newline at end of file From 611d17ed7525ea8bac45f53ceb688eb0af91a57f Mon Sep 17 00:00:00 2001 From: Matteo_fey Date: Fri, 10 Jan 2025 20:26:29 +0100 Subject: [PATCH 78/79] fix wind sounds not playing --- src/client/java/net/ugi/sculk_depths/SculkDepthsClient.java | 4 ++-- .../net/ugi/sculk_depths/sound/SoundPlayerGetterClient.java | 4 ---- src/main/java/net/ugi/sculk_depths/SculkDepths.java | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/client/java/net/ugi/sculk_depths/SculkDepthsClient.java b/src/client/java/net/ugi/sculk_depths/SculkDepthsClient.java index 53b43629..abc42da0 100644 --- a/src/client/java/net/ugi/sculk_depths/SculkDepthsClient.java +++ b/src/client/java/net/ugi/sculk_depths/SculkDepthsClient.java @@ -33,8 +33,8 @@ public void onInitializeClient() { //CrystalUpgrade.tooltipAdd(); SculkDepths.LOGGER.info("Registering clientSounds for " + SculkDepths.MOD_ID); -/* ClientTickEvents.START_WORLD_TICK.register(new ConditionalSoundPlayerClient()); - ClientTickEvents.START_CLIENT_TICK.register(new SoundPlayerGetterClient());*/ + ClientTickEvents.START_WORLD_TICK.register(new ConditionalSoundPlayerClient()); + ClientTickEvents.START_CLIENT_TICK.register(new SoundPlayerGetterClient()); FluidRenderHandlerRegistry.INSTANCE.register(ModFluids.KRYSLUM_STILL, ModFluids.KRYSLUM_FLOWING, diff --git a/src/client/java/net/ugi/sculk_depths/sound/SoundPlayerGetterClient.java b/src/client/java/net/ugi/sculk_depths/sound/SoundPlayerGetterClient.java index 99727527..92a553b6 100644 --- a/src/client/java/net/ugi/sculk_depths/sound/SoundPlayerGetterClient.java +++ b/src/client/java/net/ugi/sculk_depths/sound/SoundPlayerGetterClient.java @@ -12,8 +12,4 @@ public void onStartTick(MinecraftClient client) { player = client.player; } - public PlayerEntity getPlayer(){ - return player; - } - } diff --git a/src/main/java/net/ugi/sculk_depths/SculkDepths.java b/src/main/java/net/ugi/sculk_depths/SculkDepths.java index 4dee3b59..9f2afedc 100644 --- a/src/main/java/net/ugi/sculk_depths/SculkDepths.java +++ b/src/main/java/net/ugi/sculk_depths/SculkDepths.java @@ -91,7 +91,7 @@ public void onInitialize() { ServerTickEvents.START_WORLD_TICK.register(new CheckInvForCrystalItems()); ServerTickEvents.START_WORLD_TICK.register(new ModBiomeEffects()); - + //ServerTickEvents.START_WORLD_TICK.register(new ConditionalSoundPlayer()); CauldronFluidContent.registerCauldron(ModBlocks.KRYSLUM_FLUMROCK_CAULDRON, ModFluids.KRYSLUM_STILL, FluidConstants.BUCKET, ModProperties.KRYSLUM_LEVEL); //support for mods to see how much fluid is in it (doesn't work for create pipes) From d6d03b39ef30004dff601040826d49137633113e Mon Sep 17 00:00:00 2001 From: Matteo_fey <66562258+warior456@users.noreply.github.com> Date: Sun, 12 Jan 2025 20:11:12 +0100 Subject: [PATCH 79/79] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8902a0d6..51c06a05 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Sculk Depths -#### looking for a third main dev with a similar vision as us to help keep the project alive and updated -#### Interested? join our discord: https://discord.gg/dxANwW23Ub +#### Want to play the latest test builds? Or want to help development and give ideas? +#### -> join our discord: https://discord.gg/dxANwW23Ub # Important Notes - versions 0.0.9_b and earlier require Geckolib