From 21e0a5abc268ed61ef0eae31f04110b9ab614aef Mon Sep 17 00:00:00 2001 From: Forstride Date: Thu, 30 Nov 2023 00:49:30 -0500 Subject: [PATCH] Various texture tweaks --- .../biomesoplenty/api/block/BOPBlocks.java | 6 +-- .../java/biomesoplenty/init/ModBlocks.java | 6 +-- .../biomesoplenty/models/block/leaf_pile.json | 44 +++++++++++++++++ .../models/block/orange_maple_leaf_pile.json | 45 ++---------------- .../models/block/red_maple_leaf_pile.json | 45 ++---------------- .../models/block/yellow_maple_leaf_pile.json | 45 ++---------------- .../models/item/orange_maple_leaf_pile.json | 2 +- .../models/item/red_maple_leaf_pile.json | 2 +- .../models/item/yellow_maple_leaf_pile.json | 2 +- .../textures/block/burning_blossom.png | Bin 471 -> 264 bytes .../textures/block/orange_cosmos.png | Bin 382 -> 267 bytes .../textures/block/orange_maple_sapling.png | Bin 283 -> 288 bytes .../textures/block/red_maple_sapling.png | Bin 283 -> 288 bytes .../textures/block/yellow_maple_sapling.png | Bin 283 -> 288 bytes .../textures/item/orange_maple_leaf_pile.png | Bin 0 -> 258 bytes .../textures/item/red_maple_leaf_pile.png | Bin 0 -> 258 bytes .../biomesoplenty/textures/item/waterlily.png | Bin 287 -> 305 bytes .../textures/item/yellow_maple_leaf_pile.png | Bin 0 -> 258 bytes 18 files changed, 62 insertions(+), 135 deletions(-) create mode 100644 src/main/resources/assets/biomesoplenty/models/block/leaf_pile.json create mode 100644 src/main/resources/assets/biomesoplenty/textures/item/orange_maple_leaf_pile.png create mode 100644 src/main/resources/assets/biomesoplenty/textures/item/red_maple_leaf_pile.png create mode 100644 src/main/resources/assets/biomesoplenty/textures/item/yellow_maple_leaf_pile.png diff --git a/src/main/java/biomesoplenty/api/block/BOPBlocks.java b/src/main/java/biomesoplenty/api/block/BOPBlocks.java index 7a8c783c55..2bca9c924d 100644 --- a/src/main/java/biomesoplenty/api/block/BOPBlocks.java +++ b/src/main/java/biomesoplenty/api/block/BOPBlocks.java @@ -138,14 +138,14 @@ public class BOPBlocks public static RegistryObject PINE_HANGING_SIGN; public static RegistryObject PINE_WALL_HANGING_SIGN; public static RegistryObject RED_MAPLE_SAPLING; - public static RegistryObject RED_MAPLE_LEAVES; public static RegistryObject RED_MAPLE_LEAF_PILE; + public static RegistryObject RED_MAPLE_LEAVES; public static RegistryObject ORANGE_MAPLE_SAPLING; - public static RegistryObject ORANGE_MAPLE_LEAVES; public static RegistryObject ORANGE_MAPLE_LEAF_PILE; + public static RegistryObject ORANGE_MAPLE_LEAVES; public static RegistryObject YELLOW_MAPLE_SAPLING; - public static RegistryObject YELLOW_MAPLE_LEAVES; public static RegistryObject YELLOW_MAPLE_LEAF_PILE; + public static RegistryObject YELLOW_MAPLE_LEAVES; public static RegistryObject MAPLE_LOG; public static RegistryObject STRIPPED_MAPLE_LOG; public static RegistryObject MAPLE_WOOD; diff --git a/src/main/java/biomesoplenty/init/ModBlocks.java b/src/main/java/biomesoplenty/init/ModBlocks.java index d935fd7654..cd71d5cc50 100644 --- a/src/main/java/biomesoplenty/init/ModBlocks.java +++ b/src/main/java/biomesoplenty/init/ModBlocks.java @@ -198,14 +198,14 @@ public static void registerBlocks() PINE_WALL_HANGING_SIGN = registerBlockNoBlockItem(() -> new WallHangingSignBlockBOP(BlockBehaviour.Properties.of().mapColor(PINE_PLANKS.get().defaultMapColor()).instrument(NoteBlockInstrument.BASS).ignitedByLava().forceSolidOn().noCollission().strength(1.0F).sound(SoundType.WOOD).lootFrom(PINE_HANGING_SIGN), BOPWoodTypes.PINE), "pine_wall_hanging_sign"); RED_MAPLE_SAPLING = registerBlock(() -> new SaplingBlockBOP(new RedMapleTree(), BlockBehaviour.Properties.of().mapColor(MapColor.COLOR_RED).pushReaction(PushReaction.DESTROY).noCollission().randomTicks().instabreak().sound(SoundType.GRASS)), "red_maple_sapling"); - RED_MAPLE_LEAVES = registerBlock(() -> new RedMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.COLOR_RED).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "red_maple_leaves"); RED_MAPLE_LEAF_PILE = registerBlock(() -> new LeafPileBlock(BlockBehaviour.Properties.of().noOcclusion().pushReaction(PushReaction.DESTROY).mapColor(MapColor.COLOR_RED).replaceable().noCollission().instabreak().sound(SoundType.GRASS)), "red_maple_leaf_pile"); + RED_MAPLE_LEAVES = registerBlock(() -> new RedMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.COLOR_RED).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "red_maple_leaves"); ORANGE_MAPLE_SAPLING = registerBlock(() -> new SaplingBlockBOP(new OrangeMapleTree(), BlockBehaviour.Properties.of().mapColor(MapColor.TERRACOTTA_ORANGE).pushReaction(PushReaction.DESTROY).noCollission().randomTicks().instabreak().sound(SoundType.GRASS)), "orange_maple_sapling"); - ORANGE_MAPLE_LEAVES = registerBlock(() -> new OrangeMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_ORANGE).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "orange_maple_leaves"); ORANGE_MAPLE_LEAF_PILE = registerBlock(() -> new LeafPileBlock(BlockBehaviour.Properties.of().noOcclusion().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_ORANGE).replaceable().noCollission().instabreak().sound(SoundType.GRASS)), "orange_maple_leaf_pile"); + ORANGE_MAPLE_LEAVES = registerBlock(() -> new OrangeMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_ORANGE).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "orange_maple_leaves"); YELLOW_MAPLE_SAPLING = registerBlock(() -> new SaplingBlockBOP(new YellowMapleTree(), BlockBehaviour.Properties.of().mapColor(MapColor.TERRACOTTA_YELLOW).pushReaction(PushReaction.DESTROY).noCollission().randomTicks().instabreak().sound(SoundType.GRASS)), "yellow_maple_sapling"); - YELLOW_MAPLE_LEAVES = registerBlock(() -> new YellowMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_YELLOW).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "yellow_maple_leaves"); YELLOW_MAPLE_LEAF_PILE = registerBlock(() -> new LeafPileBlock(BlockBehaviour.Properties.of().noOcclusion().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_YELLOW).replaceable().noCollission().instabreak().sound(SoundType.GRASS)), "yellow_maple_leaf_pile"); + YELLOW_MAPLE_LEAVES = registerBlock(() -> new YellowMapleLeavesBlock(BlockBehaviour.Properties.of().pushReaction(PushReaction.DESTROY).mapColor(MapColor.TERRACOTTA_YELLOW).strength(0.2F).randomTicks().sound(SoundType.GRASS).noOcclusion().isValidSpawn(ModBlocks::ocelotOrParrot).isSuffocating(ModBlocks::never).isViewBlocking(ModBlocks::never).ignitedByLava().isRedstoneConductor(ModBlocks::never)), "yellow_maple_leaves"); MAPLE_LOG = registerBlock(() -> log(MapColor.DIRT, MapColor.TERRACOTTA_BROWN), "maple_log"); MAPLE_WOOD = registerBlock(() -> new RotatedPillarBlock(BlockBehaviour.Properties.of().instrument(NoteBlockInstrument.BASS).ignitedByLava().mapColor(MapColor.DIRT).strength(2.0F).sound(SoundType.WOOD)), "maple_wood"); STRIPPED_MAPLE_LOG = registerBlock(() -> log(MapColor.DIRT, MapColor.DIRT), "stripped_maple_log"); diff --git a/src/main/resources/assets/biomesoplenty/models/block/leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/block/leaf_pile.json new file mode 100644 index 0000000000..4d0a52469d --- /dev/null +++ b/src/main/resources/assets/biomesoplenty/models/block/leaf_pile.json @@ -0,0 +1,44 @@ +{ + "ambientocclusion": false, + "textures": { + "particle": "#leaves" + }, + "elements": [ + { + "from": [0, 0, 4], + "to": [16, 0, 20], + "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 16], "rescale": true}, + "faces": { + "up": {"uv": [0, 0, 16, 16], "texture": "#leaves"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#leaves"} + } + }, + { + "from": [-4, 0, 0], + "to": [12, 0, 16], + "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 8], "rescale": true}, + "faces": { + "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"}, + "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"} + } + }, + { + "from": [0, 0, -4], + "to": [16, 0, 12], + "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 0], "rescale": true}, + "faces": { + "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"}, + "down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"} + } + }, + { + "from": [4, 0, 0], + "to": [20, 0, 16], + "rotation": {"angle": -22.5, "axis": "z", "origin": [16, 0, 8], "rescale": true}, + "faces": { + "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"}, + "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/orange_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/block/orange_maple_leaf_pile.json index a5febd8f1a..749a80a576 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/orange_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/block/orange_maple_leaf_pile.json @@ -1,45 +1,6 @@ { - "ambientocclusion": false, + "parent": "biomesoplenty:block/leaf_pile", "textures": { - "leaves": "biomesoplenty:block/orange_maple_leaf_pile", - "particle": "biomesoplenty:block/orange_maple_leaf_pile" - }, - "elements": [ - { - "from": [0, 0, 4], - "to": [16, 0, 20], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 16], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#leaves"} - } - }, - { - "from": [-4, 0, 0], - "to": [12, 0, 16], - "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"} - } - }, - { - "from": [0, 0, -4], - "to": [16, 0, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 0], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"} - } - }, - { - "from": [4, 0, 0], - "to": [20, 0, 16], - "rotation": {"angle": -22.5, "axis": "z", "origin": [16, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"} - } - } - ] + "leaves": "biomesoplenty:block/orange_maple_leaf_pile" + } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/red_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/block/red_maple_leaf_pile.json index a9dc9a5e3c..42a108a70b 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/red_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/block/red_maple_leaf_pile.json @@ -1,45 +1,6 @@ { - "ambientocclusion": false, + "parent": "biomesoplenty:block/leaf_pile", "textures": { - "leaves": "biomesoplenty:block/red_maple_leaf_pile", - "particle": "biomesoplenty:block/red_maple_leaf_pile" - }, - "elements": [ - { - "from": [0, 0, 4], - "to": [16, 0, 20], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 16], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#leaves"} - } - }, - { - "from": [-4, 0, 0], - "to": [12, 0, 16], - "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"} - } - }, - { - "from": [0, 0, -4], - "to": [16, 0, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 0], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"} - } - }, - { - "from": [4, 0, 0], - "to": [20, 0, 16], - "rotation": {"angle": -22.5, "axis": "z", "origin": [16, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"} - } - } - ] + "leaves": "biomesoplenty:block/red_maple_leaf_pile" + } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/block/yellow_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/block/yellow_maple_leaf_pile.json index 47ec2e95db..7a75854d6f 100644 --- a/src/main/resources/assets/biomesoplenty/models/block/yellow_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/block/yellow_maple_leaf_pile.json @@ -1,45 +1,6 @@ { - "ambientocclusion": false, + "parent": "biomesoplenty:block/leaf_pile", "textures": { - "leaves": "biomesoplenty:block/yellow_maple_leaf_pile", - "particle": "biomesoplenty:block/yellow_maple_leaf_pile" - }, - "elements": [ - { - "from": [0, 0, 4], - "to": [16, 0, 20], - "rotation": {"angle": 22.5, "axis": "x", "origin": [8, 0, 16], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "texture": "#leaves"} - } - }, - { - "from": [-4, 0, 0], - "to": [12, 0, 16], - "rotation": {"angle": 22.5, "axis": "z", "origin": [0, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 90, "texture": "#leaves"} - } - }, - { - "from": [0, 0, -4], - "to": [16, 0, 12], - "rotation": {"angle": -22.5, "axis": "x", "origin": [8, 0, 0], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 180, "texture": "#leaves"} - } - }, - { - "from": [4, 0, 0], - "to": [20, 0, 16], - "rotation": {"angle": -22.5, "axis": "z", "origin": [16, 0, 8], "rescale": true}, - "faces": { - "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"}, - "down": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#leaves"} - } - } - ] + "leaves": "biomesoplenty:block/yellow_maple_leaf_pile" + } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/item/orange_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/item/orange_maple_leaf_pile.json index 7cd2f50a3d..11db806f03 100644 --- a/src/main/resources/assets/biomesoplenty/models/item/orange_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/item/orange_maple_leaf_pile.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "biomesoplenty:block/orange_maple_leaf_pile" + "layer0": "biomesoplenty:item/orange_maple_leaf_pile" } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/item/red_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/item/red_maple_leaf_pile.json index 6517ba79e1..6d2ba4c990 100644 --- a/src/main/resources/assets/biomesoplenty/models/item/red_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/item/red_maple_leaf_pile.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "biomesoplenty:block/red_maple_leaf_pile" + "layer0": "biomesoplenty:item/red_maple_leaf_pile" } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/models/item/yellow_maple_leaf_pile.json b/src/main/resources/assets/biomesoplenty/models/item/yellow_maple_leaf_pile.json index f998684561..83e2aba244 100644 --- a/src/main/resources/assets/biomesoplenty/models/item/yellow_maple_leaf_pile.json +++ b/src/main/resources/assets/biomesoplenty/models/item/yellow_maple_leaf_pile.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "biomesoplenty:block/yellow_maple_leaf_pile" + "layer0": "biomesoplenty:item/yellow_maple_leaf_pile" } } \ No newline at end of file diff --git a/src/main/resources/assets/biomesoplenty/textures/block/burning_blossom.png b/src/main/resources/assets/biomesoplenty/textures/block/burning_blossom.png index 12451fd178d54ef47bf0ce916fcaf281f1b3a279..6225bbd55f836b569b187ccb34639234026f28ea 100644 GIT binary patch delta 211 zcmcc4+`%+KQk0p2fk8u;KNv_c76-XIF|0c$^Kzo1u&rExPl)SUbD3NIDtFQ~em9AK zoU8ipnq_tkOMj2X>Xo`c4b$Guv;tCGB|(0{|6zb((;1!f6AdMbVm)0PLo|Y8d!qRc zC~&Y;p1$}0P%f*Fvb=?Lq)JRNi|JKo1-l=-!olI+)B+P9KFZ&?s#8mz(J*{^uj-k* zZ}k%{RbkZF*zeu+P|iTZvd z6bcvkycj8fgaG)M99m7^i2&!pzE5|(UW*gr_;z}rIA!RZ^MAKyOCL<$Nq~Gdo7rAG za1fe4z%0uwLcF}*GmtZEuGt@?EeN=Jn-R0V4Ft zUBEfG>5%(~MR0*D$S%agc1Qq{M<-Kbn}34b(J34dAR^#o?%V(1K&Ob|B19J%!eG-s emjB4AD&MfZ&k=f7Z9b#`0000Vtyth(!pQjRVxyy( zv%IoM<2!4OuIu_wEdP2iKAyR>LE83#hh(1H=Ziuu?|;U5+eXNIV!D;Zp4$Uv0{#M!83+ad001BJ|6!3KAb$yPNLh0L01mPM01mPNF*QE70003KNkl}6jrS{<55hN7Wq(mz zfi(GVXT569J*Q;NI?vNiDAQ7z2H4T6CSe0!YW`oY>ggf zXafOO1GW}iXZ-r)H&_$53@cO=)jwbuz#5GbwXFYNH2($%7)TSy5Ric&gTV@r0lJ@% ku~)ywf8;R043GZ|0J#_D8YBQISO5S307*qoM6N<$f=Hu=_y7O^ diff --git a/src/main/resources/assets/biomesoplenty/textures/block/orange_maple_sapling.png b/src/main/resources/assets/biomesoplenty/textures/block/orange_maple_sapling.png index 7aa075b25f39af8697d8ce4515f6217fa6af4ed7..7b2bf101c33a35eca89172c668d2a5f7d2303b20 100644 GIT binary patch delta 163 zcmV;U09^l@0-yqrg@3;Q01m$aI0aKA0001aNklY>D)&F}(Eeq~ zG%@Y7K;ggh1DJY1<&rdCumI5O(c%Rql!auPD7c$-8&f84py3Zo=0Twd0yC#^b!L?;P|6cAo^>{s8{R1%ElQ R5e)zU002ovPDHLkV1g*8MDhRt delta 158 zcmV;P0Ac^20-FMmg@3^S01m+cxRGn^0001VNkl&m@de4KazZx@iH4>n;1>AfJeE&u=k M07*qoM6N<$f+mkb761SM diff --git a/src/main/resources/assets/biomesoplenty/textures/block/red_maple_sapling.png b/src/main/resources/assets/biomesoplenty/textures/block/red_maple_sapling.png index ebf9d23d74f17297ac617de390b204614a4ccc2b..3ad86af663818fc160d855380387bed56b4a0d9e 100644 GIT binary patch delta 163 zcmV;U09^l@0-yqrg@3>R01m(bYSxJf0001aNklY>D)&F}(Eeq~ zG%@Y7K;ggh1DJY1<&rdCumI5O(c%Rql!auPD7c$-8&f84py3Zo=0Twd0yC#^b!L?;P|6cAo^>{s8{R1%ElQ R5e)zU002ovPDHLkV1m$tMiKx3 delta 158 zcmV;P0Ac^20-FMmg@3{T01m&m@de4KazZx@iH4>n;1>AfJeE&u=k M07*qoM6N<$fY>D)&F}(Eeq~ zG%@Y7K;ggh1DJY1<&rdCumI5O(c%Rql!auPD7c$-8&f84py3Zo=0Twd0yC#^b!L?;P|6cAo^>{s8{R1%ElQ R5e)zU002ovPDHLkV1g*8MDhRt delta 158 zcmV;P0Ac^20-FMmg@3^S01m+cxRGn^0001VNkl&m@de4KazZx@iH4>n;1>AfJeE&u=k M07*qoM6N<$f+mkb761SM diff --git a/src/main/resources/assets/biomesoplenty/textures/item/orange_maple_leaf_pile.png b/src/main/resources/assets/biomesoplenty/textures/item/orange_maple_leaf_pile.png new file mode 100644 index 0000000000000000000000000000000000000000..b260ccdffac0e8b075f65ae5a5f121c27ff10130 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G~10G|-oC=KEHK8nq@(&_r5Kryw3eFZ>@wIs+d_&*RZ{NBa~GKjOlBeIx* zf$tCqGm2_>H2?*(JzX3_G=gpW8HElga2$?!_&+~RDepmIGbpbM71tV zp13evZt~&)MzbZNmF`)UyM(JeJQmE7Sk8Q9Ua5oQH;dQhET>B?nD=?De^62FlJ{CS s{r6>~)_32g|CGOQ^S})+of(ykB6FF9jpp-30Ig;4boFyt=akR{0MQFmC;$Ke literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/biomesoplenty/textures/item/red_maple_leaf_pile.png b/src/main/resources/assets/biomesoplenty/textures/item/red_maple_leaf_pile.png new file mode 100644 index 0000000000000000000000000000000000000000..59d44175fa9160d3c29aaa925aa93bc257db4cf9 GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G~10G|-oAbI)8Ru&cddT}Z$K(U>-ob7=WYe|q_@P8m+_`Qt}WDsY8M`SSr z1K%MKW)#)%Y5)pmd%8G=Xaw8#GYTD0;5Z!d@PB@sQr?5aXzq4X>HD<~zE^{FVdQ&MBb@0PRy#QUCw| literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/biomesoplenty/textures/item/waterlily.png b/src/main/resources/assets/biomesoplenty/textures/item/waterlily.png index df2c9b900f1a794f13ca88031745d135971196e1..492fb5b9fce79c83a1fd198b83e6ae79451a4771 100644 GIT binary patch delta 212 zcmbQww2^6oBctv_CyjcMAb9}?2?hp+H#cT70xABIAiv=MD1hP0of!*(Qk(@Ik;M!Q zeEUI|(SkKt1t?hL>Ealo5gdCakne~B2TQ<|q=j1F?eo}I{N6aZ#A=_*$^S(Sb&KnI zS6pQ};^$E7pvw^NxcJ)7T|1Ih3dAM9d)T^Isau>r!EufuwE9P&>r5?%T*K9mx^5mh zk~r(C^t%}k=5S{Fr>tkr{@vxZQoD01bNrq7*H5@a<2)*Zfz~s4y85}Sb4q9e029_& AMgRZ+ delta 194 zcmdnUG@ogLBcu96Cyjar28K-~FYf~>-jX1{;QvT~!S;nx8&HC?z$3Dlfr0NJ2s7@O znEe(gnBnQ-7@`qe+SAB&K!L->baTni|Mz!$A7?wrXEUF_>(Pnz3&gVw1;rh6{2HrR zK8no{^0~95JhMUMQpoW+&RadZ1Y{+T@+O)+n;w&nX5yF| ip(Gacr9;2HV+Z48J5J7!WR(D*r3{{~elF{r5}E*>^iDSb diff --git a/src/main/resources/assets/biomesoplenty/textures/item/yellow_maple_leaf_pile.png b/src/main/resources/assets/biomesoplenty/textures/item/yellow_maple_leaf_pile.png new file mode 100644 index 0000000000000000000000000000000000000000..d6680f5d5cc814622bc45b0da73583312021695c GIT binary patch literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJV{wqX6T`Z5GB1G~mUKs7M+SzC z{oH>NS%G~10G|-o3@3)2bqq7o7|MNtLJZ$NtX~JDSWANZg8u^n!|!c;AcHsyJR*x3 z82Ao>Fr%o3R|8Nm+tbA{L?hU?pHb+50>|NqhyU~Al=2=VMsv5DO5d+_@Vy#*O;qc` z