From 7c917397844310e205dbf2126f4497dd29eb7ff3 Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Sun, 25 Jun 2023 21:20:10 +0300 Subject: [PATCH] Building a better tomorrow --- README.md | 11 ++--------- src/main/java/su/a71/new_soviet/NSE_Blocks.java | 13 ++++++++----- .../blockstates/herringbone_parquet.json | 7 +++++++ .../new_soviet/blockstates/metal_plating.json | 7 +++++++ .../models/block/herringbone_parquet.json | 9 +++++++++ .../models/block/industrial_warning.json | 4 ++-- .../new_soviet/models/block/metal_plating.json | 9 +++++++++ .../new_soviet/models/block/orange_warning.json | 4 ++-- .../new_soviet/models/block/red_warning.json | 4 ++-- .../models/item/herringbone_parquet.json | 4 ++++ .../new_soviet/models/item/metal_plating.json | 4 ++++ .../block/calcite/cracked_calcite_tiles.png | Bin 0 -> 1022 bytes .../block/floor/planks/cross_birch_planks.png | Bin 0 -> 2287 bytes .../block/floor/planks/cross_crimson_planks.png | Bin 0 -> 2161 bytes .../floor/planks/herringbone_birch_planks.png | Bin 0 -> 2290 bytes .../industrial_warning_stripes.png | Bin .../metal_plating.png} | Bin .../orange_warning_stripes.png | Bin .../red_warning_stripes.png | Bin 19 files changed, 56 insertions(+), 20 deletions(-) create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_parquet.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/metal_plating.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_parquet.json create mode 100644 src/main/resources/assets/new_soviet/models/item/metal_plating.json create mode 100644 src/main/resources/assets/new_soviet/textures/block/calcite/cracked_calcite_tiles.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_birch_planks.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_crimson_planks.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/floor/planks/herringbone_birch_planks.png rename src/main/resources/assets/new_soviet/textures/block/{warning_stripes => industrial}/industrial_warning_stripes.png (100%) rename src/main/resources/assets/new_soviet/textures/block/{metalplating.png => industrial/metal_plating.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{warning_stripes => industrial}/orange_warning_stripes.png (100%) rename src/main/resources/assets/new_soviet/textures/block/{warning_stripes => industrial}/red_warning_stripes.png (100%) diff --git a/README.md b/README.md index fd96346..fcb28e0 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,2 @@ -# Fabric Example Mod - -## Setup - -For setup instructions please see the [fabric wiki page](https://fabricmc.net/wiki/tutorial:setup) that relates to the IDE that you are using. - -## License - -This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects. +# New Soviet Era +Minecraft mod to relive the good old days \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/NSE_Blocks.java index ab6f479..962b570 100644 --- a/src/main/java/su/a71/new_soviet/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/NSE_Blocks.java @@ -88,10 +88,11 @@ public class NSE_Blocks { public static final Block SMOOTH_TUFF_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.TUFF)); - // MISC ===================================== + // Industrial ===================================== public static final Block INDUSTRIAL_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); - public static final Block RED_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); - public static final Block ORANGE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE)); + public static final Block RED_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block ORANGE_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); + public static final Block METAL_PLATING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL)); // WOOD/FLOOR ====== public static final Block HERRINGBONE_ACACIA_PLANKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); @@ -111,7 +112,7 @@ public class NSE_Blocks { public static final Block HERRINGBONE_SPRUCE_PLANKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); public static final Block CROSS_SPRUCE_PLANKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); - public static final Block SMALL_HERRINGBONE_PARQUET = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); + public static final Block HERRINGBONE_PARQUET = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); public static final Block STRAIGHT_PARQUET = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); public static final Block SEPARATED_PARQUET = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.WOOD)); @@ -233,6 +234,8 @@ public class NSE_Blocks { register("industrial_warning", () -> INDUSTRIAL_WARNING, NSE_TAB); register("red_warning", () -> RED_WARNING, NSE_TAB); register("orange_warning", () -> ORANGE_WARNING, NSE_TAB); + register("metal_plating", () -> METAL_PLATING, NSE_TAB); + register("herringbone_acacia_planks", () -> HERRINGBONE_ACACIA_PLANKS, NSE_TAB); register("cross_acacia_planks", () -> CROSS_ACACIA_PLANKS, NSE_TAB); @@ -251,7 +254,7 @@ public class NSE_Blocks { register("herringbone_spruce_planks", () -> HERRINGBONE_SPRUCE_PLANKS, NSE_TAB); register("cross_spruce_planks", () -> CROSS_SPRUCE_PLANKS, NSE_TAB); - register("small_herringbone_parquet", () -> SMALL_HERRINGBONE_PARQUET, NSE_TAB); + register("herringbone_parquet", () -> HERRINGBONE_PARQUET, NSE_TAB); register("straight_parquet", () -> STRAIGHT_PARQUET, NSE_TAB); register("separated_parquet", () -> SEPARATED_PARQUET, NSE_TAB); diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet.json new file mode 100644 index 0000000..4964600 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/herringbone_parquet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/metal_plating.json b/src/main/resources/assets/new_soviet/blockstates/metal_plating.json new file mode 100644 index 0000000..2c86ca8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/metal_plating.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/metal_plating" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json new file mode 100644 index 0000000..7ea947f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/floor/planks/herringbone_parquet", + "particle": "new_soviet:block/floor/planks/herringbone_parquet" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/industrial_warning.json b/src/main/resources/assets/new_soviet/models/block/industrial_warning.json index fbd6003..94b7925 100644 --- a/src/main/resources/assets/new_soviet/models/block/industrial_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/industrial_warning.json @@ -1,8 +1,8 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/warning_stripes/industrial_warning_stripes", - "particle": "new_soviet:block/warning_stripes/industrial_warning_stripes" + "all": "new_soviet:block/industrial/industrial_warning_stripes", + "particle": "new_soviet:block/industrial/industrial_warning_stripes" } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating.json b/src/main/resources/assets/new_soviet/models/block/metal_plating.json new file mode 100644 index 0000000..89b1b6b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating.json @@ -0,0 +1,9 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "new_soviet:block/industrial/metal_plating", + "particle": "new_soviet:block/industrial/metal_plating" + + } +} + diff --git a/src/main/resources/assets/new_soviet/models/block/orange_warning.json b/src/main/resources/assets/new_soviet/models/block/orange_warning.json index 394934a..c2dd93c 100644 --- a/src/main/resources/assets/new_soviet/models/block/orange_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/orange_warning.json @@ -1,8 +1,8 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/warning_stripes/orange_warning_stripes", - "particle": "new_soviet:block/warning_stripes/orange_warning_stripes" + "all": "new_soviet:block/industrial/orange_warning_stripes", + "particle": "new_soviet:block/industrial/orange_warning_stripes" } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_warning.json b/src/main/resources/assets/new_soviet/models/block/red_warning.json index e94eaab..fced728 100644 --- a/src/main/resources/assets/new_soviet/models/block/red_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/red_warning.json @@ -1,8 +1,8 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/warning_stripes/red_warning_stripes", - "particle": "new_soviet:block/warning_stripes/red_warning_stripes" + "all": "new_soviet:block/industrial/red_warning_stripes", + "particle": "new_soviet:block/industrial/red_warning_stripes" } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_parquet.json b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet.json new file mode 100644 index 0000000..6b5844a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/herringbone_parquet" +} + diff --git a/src/main/resources/assets/new_soviet/models/item/metal_plating.json b/src/main/resources/assets/new_soviet/models/item/metal_plating.json new file mode 100644 index 0000000..709780a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/metal_plating.json @@ -0,0 +1,4 @@ +{ + "parent": "new_soviet:block/metal_plating" +} + diff --git a/src/main/resources/assets/new_soviet/textures/block/calcite/cracked_calcite_tiles.png b/src/main/resources/assets/new_soviet/textures/block/calcite/cracked_calcite_tiles.png new file mode 100644 index 0000000000000000000000000000000000000000..4ffef6487e2558592e20bcad3b6511b0aa6935dd GIT binary patch literal 1022 zcmVEX>4Tx04R}tkv&MmKpe$iQ>9WWB4!YA$WWauh>D1lRIvyaN?V~-2a`*`ph-iL z;^HW{799LotU9+0Yt2!bCVj!sUBE>hzEnnH^h503ls?%w0>9U#=pOtZSi0Zq5f zWGpIWva3?y6#_&A(T`b~Sw=jyn1<*0x`&UicM+cDeeTcEtL7{Q_$1;vW|%hd2J!T! zZE)Tv7FkhNiO-40Ou8WPBi9v|-#8bVEbvUxOeg1wMPjMY!Ab|SqNx#25ro10006tNkl?Jzqo!A@KKv5D-ED&~+V) z#R34O6vh~;s`^h)LkQ7mjN$9+3#~O}St5iW%QBpE04$fws9S3RNXHIZYrOYNCKJ*$ zWqg=12Im~c7yzczDF+7!ZIdUSD6Mp65A92!TA$(OPqQddhaY<@x!U zVHo0Kwbt<}rMSJl<>~3^X9sm%Gn>sAh5;c2^ZA^*u6cZXq-h%7-rkr@CIAQ_xVX5$ zIY(XBbX|wIxw#4ByhTv}&@>GIpP!!?V>miGiuIx>XxkR&99`FuT5H+ucJzIZQi{vV zOF{^AUB~tHHCIpHa7 zoSdA{G|evuqq*;U%CZDtzu(7nwAQg^ttEs&Q53%%hWVhQ< zRTXKP#!-^dJd$^Ic1GX#v4c{I_xE>}%O%Ih$E0b>_xCs6`yY@(2xM7CQ558P4uF&r z?>$Y^@bK`!cDv>L{QL);Btc5a$WP<|AW4##`D(SIX&U;zXFi{^*=#7wGB#PQR%|w# s9}Y&YN3m^NK0ZF;XBzn!J^$)|0CgxcuQpQMLI3~&07*qoM6N<$g6EamzyJUM literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_birch_planks.png b/src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_birch_planks.png new file mode 100644 index 0000000000000000000000000000000000000000..f5212a5c78ae879b3973ac51f1643d1dd2b0b1c1 GIT binary patch literal 2287 zcmV zaB^>EX>4U6ba`-PAZ2)IW&i+q+O1btlI%7N{O2ir1QH+^jzck2`363|n?Z3jZ=b`c zc1U3$0PIH4s`}TTP5prnk(^7 z)uo>xm-7K{mwda+mCwsgScZ1X%OH2pgiTpNE<;RHZq~huG&jjzjAd88!Z8i)$8ryx zmfXlYegmazM1~H}bd4xP?e+C@!LPLvTC4MP$vOqN+&a{Ll(B>21~?}g4wuKDVDHBj zaRr@p25SXJ-IU&N6Ac0JW~?bDnP%!(v&jh2QYDX-C=(A^U{8@U2rz8>Wg2J8koCSC;2AX7G%nW8PmwF2R?R7KMT2FIhbU3g=T-5UmVRYvDH?%;A zX$w;s_!>1A{rq%d84SvRIpBavZ_~sk=FBY~JhK)BRjX&c7+;nFKm^}{U<`u+?F@@? zMtdS}3~&tKCn0iTOB)z4qJ#>fB+KkTPN41^&v-L*Nob1EUO^fAO3 zQ-afE6Ko~uCkQs$c(a>qZu48%;+8VfC)+I9WuHTiITb2g&;nF(#g|ZGN!3)OQngj8 ztGzwIGteAxmrF3$N>5PFvTMbDw2X`lPUwKnN_n-1cZ_KGq-T%Ry z>eOAB`{eC~wUS1=uZ>T<36N^=S&!@F)r-1^_YiQFlMeFr8 z_O4=3#U2BSl|th@_eq7osm&X}rpGR52Ht%KFdDR`ZjS8MnX(&>rBB+qs;9uE8Bz?n z*lEl>j($Lp+f=VAk#1raNT4%Ja5mIcDf9WDbK|gp3XwOr)WddWin@eyQV_!K zlIl2t#cl<xmzI_o6Qbd`da%({^9WNt|+%Iz7}f10^s$fxD8+ciq8dw52Zon&p-IcKgi(jq?nNx>a5; zysNdho_kB`vz4i{>%KQ#w<!8BWp(|yWh!_Kl zSN$S-&WdAIyZJBmej5$>I8rRzQqMBauYLuz2AI$JNS582;1KOo+CmXGeZ7b(^Y5JolW;}{)sOB zhnv|D4p{4ypp?~ZK)nyNqhj`vh5ys9?@t%{cMo;->l(-&o$JxQ%Slg)`#i>2Gr`Aw1-W_4-iKu zCq)-2@qbC7MT`f>{djlparX`o>Sd;y9TR}6Sw<=z6SKJ$G4P5m1TlzyL?veGiS$AS zp5yBtKEB>Xc$W9MKS!^UHyPj)iD#K^Sj6kZ)0>vgd7n7MHYA1koOs-z3lcwaU3U46 zbJ1aeXNHVSYK}NWEEd~XZezA#sKim?u%c>|FJxU-IB#)Q%T?CACx2luuPvv!PIClt zEFys`9|3*az{Pb-llOqj9bo85mkh~~ z{4|9^0eC;7Z^{7!w?NOT+go!Vrw>4ex>~vc4i15_B4w|6yt})-w|~zx`}+Z(YjU{& z89R*t000JJOGiWi{{a60|De66lK=n!32;bRa{vGf4*&oQ4*`<-1El}}00(qQO+^Rh z1`PorHL4B7wEzGCQAtEWR5;6xk}+$-P!xr~z*`)Wh$Pab?ND?mv~(zR=-Q<}!avi= zpWr{q66oY0WRM6Bii4z-VuJO>!O;$K<4ZJc?{**e-E;0a$C|vq?bA%-doIJ#obF8< z-*W*7!kE{Wdz!67FSS`~0EVMEs@ZaxOcQ+1CExAlErJ1zil>;}H)l4iP~8I6}XcB7by#>*0blEKYdlW%vJCjmS@T$fO#(o7SL zmj?|XADkcB`002ov JPDHLkV1gXgN4Nk0 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_crimson_planks.png b/src/main/resources/assets/new_soviet/textures/block/floor/planks/cross_crimson_planks.png new file mode 100644 index 0000000000000000000000000000000000000000..d48f7a08acf85027bd96277dd7132051f0d18906 GIT binary patch literal 2161 zcmV-%2#)uOP) zaB^>EX>4U6ba`-PAZ2)IW&i+q+O1b>(&H!${Ld-&2uQq-!^>5BgE{^-SlEu^e3{uA zyArShLUc=wqx!FZH}wxLChwJXA^POK#$}UDoY9GTzxI~2o!|1HSLem9jvp8%gVyYi zzRUOwyE`WYEB5kgSD}iZD2|qAacIWMj82mv#gXCNPV%f0@15)~+mVlPyE_sm_h%ab zMsx6ISaCOG^!(<1B{M#3GFp#sGWY>~gTBR6HqOL%{FJ_8cmwe0-SE>@?B;}HceJ+U zZ#apa+%tX?rE5gQ$I5(-$aNj`^}67>)68iecfiM? zALgBKN1b&AYYkg1N*6pNVj#YerAC=H>a(p>5u)YJ0WEW7Gi}iXPFz6%0e;-HaZo0i zW+GUsV9vnIM=UhgO=CSQ7O`?8jAVi{n#^8qbvOLq`^C|=jWj3H@xTgk@yIWPF_;_Q z7zILT6HML2m(MLt^=6+_4gf*T-jd9^*4dxJ*3mS6b z24`T5ErIbc7(hbv;7mudmIrf#Go9EdV;mz&H^^x;7z2a06T6KL?oQ@D@}_|9pYp~} z%&9@$-(XG+>MqQ^^Y*}6%TsR6BxqD2Foi-Ilpm(X%rO_!D(6Plp)wNoHLXLs?C1dA z+I@8M_u6y`qXT9mslBHImK{Atn)b+Zz7Hrczq=}WI)cXDS}wa=oU|mqJnyF1!@y|< zkec_j%wR=Uz{W2NHwU8{ql@0h;(SgLYezE3$OwpctCLM>{obnGf$YG8!2STsI8nzO z9Fi3niaGnfqgi_f{eIc47nExgkZ|Dd&LH>ZdEf!JiVGsQ<``~5TfT3B>eddxkY$2n z29D~m2Y*mi+Zt|-Y}E%8oWxn{N&5jhjw8GFk%a2}M)3|ydzWre4`Th0%Vv(RTrHJO6!#7>X0Kk|FX$&3PT zAi2ms{F!R2DAf15rWa{Aa^#j1>XHnf#ysTBd#hdzKlu8hQtH!o=!@b>x{Z37iKAW$ zW~tN^DLN59qPid-_$4a!L%JRrxGayED2b>c04cxGu=(o&3SRO6Fe(;sS-dJ?HaqgHyE zt8_mrsrp?h{Ygpv%A=zmzO^`mcA#G>Z-zMO*I#7xcT`j@89g%My~2vQ9sNskHC_QX zSwU5(C9Q)!RuNYGsalh4Uz4&v_&<4G9I4A*Y>|}@Cvt}1Z=rznd5C%+^FICFJ`FwI z*zjhU)PE?K{E~M5t%3jm0flKpLr_UWLm+T+Z)Rz1WdHzpoPCi!NW(xJ#a~mkA{7M- zia2DbP8LLqI7$_ZV4<`XT6HkFw6)NrAxUv@6kH1qek@iUT%2`va1{i>4-iKuCq)-2 z@qbC7MT`f>{djlparX`o>Sd;y9TR}6Sw<=z6SKJ$G4P5m1TlzyL?veGiS$ASp5yBt zKEB>Xc$W9MKS!^UHyPj)iD#K^Sj6kZ)0>vgd7n7MHYA1koOs-z3lcwaU3U46bJ1ae zXNHVSYK}NWEEd~XZezA#sKim?u%c>|FJxU-IB#)Q%T?CACx2luuPvv!PICltEFys< zM98S3gfc8dXw^tDk)r*Whkw}dC&?v~s{}@lc~qc6a{S`9|3*az{Pb-llOqj9bo85mkh~~{4|9^ z0eC;7Z^{7!w?NOT+go!Vrw>4ex>~vc4i15_B4w|6yt})-w|~zx`}+Z(YjU{&89R*t z000JJOGiWi{{a60|De66lK=n!32;bRa{vGf4*&oQ4*`<-1El}}00(qQO+^Rh1`Poz zI`V5%EC2ujKS@MER5;6pl0j?2KoEsLVTmD@SfOGM1)-;2g#HEphy6GGfjN2#EO^MG zkZ4W12EiWMNjBT0ozw0x%zN|R8@;dJZpTZ-bR4lg>{#5*n1vGnk}T!*@tHV?aO+f8 z0BjFCR2)R;3yo)PSg_>7n!u=eBI#0QOq93jjhDFbgN- zwrptX!eCU;%;>^&0F(@#>I!?Uk&^^zdB5nOO69gh7v@_7Y4`)-4|1Ol!nkE{X_?5~ zLU%cx_d1beDWlD5eG~O%tNR~9mKpW(@HFVNjFDL3RpIt^nIZ=MzJ6e2xw9a@r n5rENVwZ6G%qO|+>#dCXKK{C;mM6fo(00000NkvXXu0mjfd#46$ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/floor/planks/herringbone_birch_planks.png b/src/main/resources/assets/new_soviet/textures/block/floor/planks/herringbone_birch_planks.png new file mode 100644 index 0000000000000000000000000000000000000000..a67798b9f6f3a7ca529cee979e35eca2be6ce4f4 GIT binary patch literal 2290 zcmV zaB^>EX>4U6ba`-PAZ2)IW&i+q+O1bvvg9ZX{O1&N1SGMD<6yuMbAvhlB#XCN`gKoC zIbIo4LR+RJKhysCdpCdK!))0&A2p;9EIux|#2E{<^E2;c-S}P)_EoLq{8=RU1xlXxz2xP`O+#7}j!l)OH> zh-6d`eZq#Dkl69f(~|T*mW+GAHwk{gTCkR}?IW_ej}Bd;i?>x9?T=z0K&d3kK;5E2txsv4Y@+bjmmua7Fxi ztmC*6F16VfpjHv;X6%NCM2w8@&Ab*9*Xw8)11ianJf6konLUHBiFwn z1wd$DIrSsIWaiDjembxM1pP>}BEW37sbceVaZ3iyV!eT=v$I|()};U`f^83HNPvJ1 zB%T7<$Q+4~M+H6^p0haKfB<>pxx!0!A_3rlIk1g0k%laLp4(_I00PA!5zr*b0LwY= z0_sgcp=`W(=e-X;diBZYAi)J6LWrUFsT?J`=wpa6YD_V!s8g>&qpBv&iIbp>d6Pnl zNmEKW!)SIHx-#T5Ha6a5bDQ777B}6}mJ8@pT=6B8ShS>)D_5y#0j7o;tJYL=qXsH9 z*L({tHf^cp9bDUGce~%i9(Uc-o=?;ks!!Bjk^41jv{2&#RF{hvYS@nPP(i(&_>LJ6 zV@E(db_76Z?wDC6=eQ%+F|&!qhnd#mykQe~KG_Le6yP z{tx6#hwg^lJ8mCPt9i6r836SvL{8Bm1?AUv*k{eVb*+jElpT^<~Qr*8F2H&NbP zKOKTxmhJM=BH7jRwC&&~O^vmvX|mU+d7<}$?kpnl#%Hh*Neu1JMa(U~S_PfepU{SiYUfY&nz#U)T;2x)RLwRONb z>IV+_;HM0r9mz3Z9i=n{Ft+Y~Z8N=mfaHpuKiUs>^W69rQ_B;E;u{K*)aNeGrFJ+t76R1`GJ57D9<)x+s=VkPy-bR*rxw$sLT{daUp&Gp|llRbuhWKwa}y?NpW!$Tni3< zELI&{oON|@6$HT#5Jx8`MHeaYe@UT5j0ea4cz5q{_YM&1Wu}@P6M(8&Mk*c?v$+*9 z@QN-3F^GOdC1&c0^g;%nF%XPItT#OuVm~ z{NR7^yIZp`HR&b=V?gJNZGVgcfnA_cv+eI=+isiy{%7DyYxyg6VCIwbT1yKb0e#!R z#dS-Q_khbCVCYGg49SuFG=)L|ct4|W$^iqnK+me%TXP?$4?u>xTDk!a4uP>EWv_X> zySu%&f6p}g`vIS8a=8E*JBD`=e^fr9(@52En+(D2H|W4K$d^gX*a0&9vUK?t*8g;k5B-xjWgkAr(o#GN+UmnQvf?Cxxbv=-X^=6NB9oCyY0R6!fz|>{*2UDc$FrF-r z5?XJM=BwpVqeXmn-s?6=Qbn!m(H~3^fHCPB>VYIl71DL6_#WYGWgZn;Pm&(B>qe3) z)|qvsN?^=efQ={kr`yK!PruiHF%L6ehIF`g{Xwj?UPXM!VL=cXUh zbfM)sR_}5C;$Ke M07*qoM6N<$g6~CH>i_@% literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/warning_stripes/industrial_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/industrial_warning_stripes.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/warning_stripes/industrial_warning_stripes.png rename to src/main/resources/assets/new_soviet/textures/block/industrial/industrial_warning_stripes.png diff --git a/src/main/resources/assets/new_soviet/textures/block/metalplating.png b/src/main/resources/assets/new_soviet/textures/block/industrial/metal_plating.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/metalplating.png rename to src/main/resources/assets/new_soviet/textures/block/industrial/metal_plating.png diff --git a/src/main/resources/assets/new_soviet/textures/block/warning_stripes/orange_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/orange_warning_stripes.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/warning_stripes/orange_warning_stripes.png rename to src/main/resources/assets/new_soviet/textures/block/industrial/orange_warning_stripes.png diff --git a/src/main/resources/assets/new_soviet/textures/block/warning_stripes/red_warning_stripes.png b/src/main/resources/assets/new_soviet/textures/block/industrial/red_warning_stripes.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/warning_stripes/red_warning_stripes.png rename to src/main/resources/assets/new_soviet/textures/block/industrial/red_warning_stripes.png