From 57c72c08de1900a89606c49b126a928f6fe42b1e Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Sat, 26 Aug 2023 13:45:36 +0300 Subject: [PATCH 1/9] Improve cigarette code and fix lamp inversion --- media/{NSElogo.png => NSE_logo.png} | Bin .../{nse_scr3.png => NSE_scr_appliances.png} | Bin media/{nse_scr2.png => NSE_scr_minefield.png} | Bin media/{nse_scr1.png => NSE_scr_samosbor.png} | Bin .../su/a71/new_soviet/blocks/LampBlock.java | 2 +- .../a71/new_soviet/items/CigaretteItem.java | 24 ++++++++---------- .../new_soviet/registration/NSE_Items.java | 2 -- 7 files changed, 12 insertions(+), 16 deletions(-) rename media/{NSElogo.png => NSE_logo.png} (100%) rename media/{nse_scr3.png => NSE_scr_appliances.png} (100%) rename media/{nse_scr2.png => NSE_scr_minefield.png} (100%) rename media/{nse_scr1.png => NSE_scr_samosbor.png} (100%) diff --git a/media/NSElogo.png b/media/NSE_logo.png similarity index 100% rename from media/NSElogo.png rename to media/NSE_logo.png diff --git a/media/nse_scr3.png b/media/NSE_scr_appliances.png similarity index 100% rename from media/nse_scr3.png rename to media/NSE_scr_appliances.png diff --git a/media/nse_scr2.png b/media/NSE_scr_minefield.png similarity index 100% rename from media/nse_scr2.png rename to media/NSE_scr_minefield.png diff --git a/media/nse_scr1.png b/media/NSE_scr_samosbor.png similarity index 100% rename from media/nse_scr1.png rename to media/NSE_scr_samosbor.png diff --git a/src/main/java/su/a71/new_soviet/blocks/LampBlock.java b/src/main/java/su/a71/new_soviet/blocks/LampBlock.java index 65b4787..13380bf 100644 --- a/src/main/java/su/a71/new_soviet/blocks/LampBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/LampBlock.java @@ -35,7 +35,7 @@ public class LampBlock extends Block implements Waterloggable { public LampBlock(AbstractBlock.Settings settings) { super(settings.luminance((BlockState state) -> { - if (!state.get(INVERTED)) { + if (state.get(INVERTED)) { return state.get(ON) ? 12 : 0; } else { return state.get(ON) ? 0 : 12; diff --git a/src/main/java/su/a71/new_soviet/items/CigaretteItem.java b/src/main/java/su/a71/new_soviet/items/CigaretteItem.java index 4d53020..8136ee2 100644 --- a/src/main/java/su/a71/new_soviet/items/CigaretteItem.java +++ b/src/main/java/su/a71/new_soviet/items/CigaretteItem.java @@ -30,8 +30,8 @@ import su.a71.new_soviet.registration.NSE_Sounds; import java.util.List; import java.util.Objects; -public class CigaretteItem - extends Item { +// FIXME: 26.08.2023 This whole class is making my head hurt, fix!!! +public class CigaretteItem extends Item { private final int durationInTicks; private final Item returnedItem; private final String local_tooltip; @@ -82,20 +82,18 @@ public class CigaretteItem @Override public void usageTick(World world, LivingEntity user, ItemStack stack, int remainingUseTicks) { user.setMovementSpeed(1.1f); - if (stack.getDamage() < durationInTicks - 1) { - stack.damage(1, user, e -> e.sendEquipmentBreakStatus(EquipmentSlot.MAINHAND));} + if (stack.getDamage() < durationInTicks - 1) + stack.damage(1, user, e -> e.sendEquipmentBreakStatus(EquipmentSlot.MAINHAND)); + + double d = user.getX(); + double e = user.getY() + user.getHeight(); + double f = user.getZ(); + if (NewSoviet.RANDOM.nextBetween(1, 2) == 1) { - float pitch = NewSoviet.RANDOM.nextBetween(8, 10) * 0.1f; - double d = user.getX(); - double e = user.getY() + 1.5; - double f = user.getZ(); world.addParticle(ParticleTypes.SMOKE, d, e, f, 0, 0, 0); + float pitch = NewSoviet.RANDOM.nextBetween(8, 10) * 0.1f; world.playSound(user, BlockPos.ofFloored(user.getPos()), NSE_Sounds.SMOKING, SoundCategory.PLAYERS, 1.0f, pitch); - } - if (NewSoviet.RANDOM.nextBetween(1, 6) == 1) { - double d = user.getX(); - double e = user.getY() + 1.5; - double f = user.getZ(); + } else if (NewSoviet.RANDOM.nextBetween(1, 6) == 1) { world.addParticle(ParticleTypes.LARGE_SMOKE, d, e, f, 0, 0, 0); float pitch = NewSoviet.RANDOM.nextBetween(9, 10) * 0.1f; world.playSound(user, BlockPos.ofFloored(user.getPos()), NSE_Sounds.CIGARETTE_RANDOM, SoundCategory.PLAYERS, 1.0f, pitch); diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Items.java b/src/main/java/su/a71/new_soviet/registration/NSE_Items.java index c456bcd..0ff37c3 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Items.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Items.java @@ -33,9 +33,7 @@ public class NSE_Items extends NSE_BaseRegistration { public static final Item LIGHT_BULB = new Item(new Item.Settings()); public static final Item CIGARETTE_BUTT = new Item(new Item.Settings()); - //cigarettes public static final CigaretteItem CIGARETTE = new CigaretteItem(200, NSE_Items.CIGARETTE_BUTT, "item.new_soviet.tooltip.salute", new Item.Settings()); - // private static final ItemGroup NSE_ITEMS_TAB = FabricItemGroup.builder() .icon(() -> new ItemStack(SICKLE)) From b54f6f4a31f79d87ed2d2ccf43da688a79cae7df Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Mon, 28 Aug 2023 13:15:53 +0300 Subject: [PATCH 2/9] Move files around and add textures --- .../new_soviet/blockstates/red_matress.json | 7 +++ .../new_soviet/models/block/mattress.json | 43 ++++++++++++++++++ .../new_soviet/models/block/red_mattress.json | 8 ++++ .../block/custom/furniture/ceiling_lamp.png | Bin 1316 -> 0 bytes .../furniture/mattress/mattress_black.png | Bin 0 -> 1220 bytes .../furniture/mattress/mattress_blue.png | Bin 0 -> 1243 bytes .../furniture/mattress/mattress_cyan.png | Bin 0 -> 1266 bytes .../furniture/mattress/mattress_gray.png | Bin 0 -> 1219 bytes .../furniture/mattress/mattress_green.png | Bin 0 -> 1205 bytes .../mattress/mattress_light_blue.png | Bin 0 -> 1226 bytes .../furniture/mattress/mattress_lime.png | Bin 0 -> 1243 bytes .../furniture/mattress/mattress_magenta.png | Bin 0 -> 1261 bytes .../furniture/mattress/mattress_orange.png | Bin 0 -> 1206 bytes .../furniture/mattress/mattress_pink.png | Bin 0 -> 1247 bytes .../furniture/mattress/mattress_purple.png | Bin 0 -> 1234 bytes .../furniture/mattress/mattress_red.png | Bin 0 -> 1222 bytes .../furniture/mattress/mattress_silver.png | Bin 0 -> 1243 bytes .../furniture/mattress/mattress_white.png | Bin 0 -> 1129 bytes .../furniture/mattress/mattress_yellow.png | Bin 0 -> 1221 bytes .../big_lamp_base.png | Bin .../big_lamp_off.json | 0 .../big_lamp_off_l.png | Bin .../big_lamp_on.json | 0 .../big_lamp_on_l.png | Bin .../diff_lamp_off.json | 0 .../diff_lamp_off.png | Bin .../diff_lamp_on.json | 0 .../diff_lamp_on.png | Bin .../inc_lamp_off.json | 0 .../inc_lamp_off.png | Bin .../inc_lamp_on.json | 0 .../inc_lamp_on.png | Bin .../lamp_broken.json | 0 .../{industrial lamps => lamps}/lamp_off.png | Bin .../lamp_off_without_cover.json | 0 .../{industrial lamps => lamps}/lamp_on.png | Bin .../lamp_on_1.json | 0 .../lamp_on_1_without_cover.json | 0 .../lamp_on_2.json | 0 .../{industrial lamps => lamps}/lamp_on_2.png | Bin .../lamp_on_2_without_cover.json | 0 .../lamp_smashed.json | 0 .../uf_lamp_break.json | 0 .../uf_lamp_off.json | 0 .../uf_lamp_on.json | 0 45 files changed, 58 insertions(+) create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_matress.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mattress.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_mattress.json delete mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/ceiling_lamp.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_black.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_blue.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_cyan.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_gray.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_green.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_light_blue.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_lime.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_magenta.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_orange.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_pink.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_purple.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_red.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_silver.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_white.png create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_yellow.png rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/big_lamp_base.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/big_lamp_off.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/big_lamp_off_l.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/big_lamp_on.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/big_lamp_on_l.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/diff_lamp_off.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/diff_lamp_off.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/diff_lamp_on.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/diff_lamp_on.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/inc_lamp_off.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/inc_lamp_off.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/inc_lamp_on.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/inc_lamp_on.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_broken.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_off.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_off_without_cover.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on_1.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on_1_without_cover.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on_2.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on_2.png (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_on_2_without_cover.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_smashed.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/uf_lamp_break.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/uf_lamp_off.json (100%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/uf_lamp_on.json (100%) diff --git a/src/main/resources/assets/new_soviet/blockstates/red_matress.json b/src/main/resources/assets/new_soviet/blockstates/red_matress.json new file mode 100644 index 0000000..b91655e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_matress.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "new_soviet:block/red_mattress" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mattress.json b/src/main/resources/assets/new_soviet/models/block/mattress.json new file mode 100644 index 0000000..29bc260 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mattress.json @@ -0,0 +1,43 @@ +{ + "credit": "Made by Feulim (karoter2)", + "texture_size": [64, 64], + "textures": { + "1": "mattress_white", + "particle": "mattress_black" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 3, 32], + "faces": { + "north": {"uv": [0, 8.75, 4, 9.5], "texture": "#1"}, + "east": {"uv": [8, 9.5, 0, 10.25], "texture": "#1"}, + "south": {"uv": [0, 0.75, 4, 0], "texture": "#1"}, + "west": {"uv": [0, 9.5, 8, 10.25], "texture": "#1"}, + "up": {"uv": [0, 8.75, 4, 0.75], "texture": "#1"}, + "down": {"uv": [0, 0.75, 4, 8.75], "texture": "#1"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 3, 32], + "faces": { + "north": {"uv": [4.75, 8.75, 8.75, 9.5], "texture": "#1"}, + "east": {"uv": [8, 10.25, 0, 11], "texture": "#1"}, + "south": {"uv": [4.75, 0.75, 8.75, 0], "texture": "#1"}, + "west": {"uv": [0, 10.25, 8, 11], "texture": "#1"}, + "up": {"uv": [4.75, 8.75, 8.75, 0.75], "texture": "#1"}, + "down": {"uv": [4.75, 0.75, 8.75, 8.75], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "nbt": "{}", + "children": [0, 1] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_mattress.json b/src/main/resources/assets/new_soviet/models/block/red_mattress.json new file mode 100644 index 0000000..4b440ea --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_mattress.json @@ -0,0 +1,8 @@ +{ + "parent": "new_soviet/block/mattress", + "textures": { + "11": "minecraft:block/custom/mattress/mattress_red", + "particle": "minecraft:block/custom/mattress/mattress_red" + } +} + diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/ceiling_lamp.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/ceiling_lamp.png deleted file mode 100644 index 159d7d2e94186c4a4f02ca46addc7dc2ffcff115..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1316 zcmV+<1>5?GP)T#C~*fsk$sH`}_@)+raO9Q3;?#W$v0Oa zZtY67GH(95d8+07L@4=eJ9{}ESy7Vka6g9p;bSaII#Dmq7v`wlpjzJmU>XE44Zf=E zgnld4%1dnkGE6+Ox~3%}$jNZ<9i^IvYJI~}0Dv`>ZPVYyE!^sP87(XsQIf0?N|I`Q z!=`MhR$f-_$?wJTmiZ@1R@qsHWtFU`WD}9%0XtHpjIL?V%DX7yGy>a(0$>ueAj8uI zoGZaP!rcYP_W^ThW0yC;98Kpl_BY#iM|)OwRJgkUU@G!(KekQxB}0sFSI(GK21`P5 zg1Z4&_aX&Z1)R#TM)0afc}rZfW?*qoLgHY`{$h2M?Xa0JnXczGqO77kViorp@c#Gr z0OF;>rJ8@L9Tn~d_~Y{@K@tl9fI>b801%6B008>r(JK4F*3~DE0D$Rij&@5nG<}Lr zwDr%y77^_+R;+Sa9AT(WLUP!h1RC9!~dr3e5Rj3ziaQzMO7(!9tF z0PLfd-J-IBQ)fh$V0VJOXp>oh(-*f-iO*>{?^ zTe88$9sD}TQ*Kb@2_8ns0A^;Eq!E;6!|==Yj+9+P?GHok2~N(`!~>%MJa;(Gwvq@U z>qyx(ZnYng|CiEi7+caiBoPxV0VLEd7zLr-l8r(>2QTH~?%$pLjcWw!I;_*}3Deme z^-2+8{E}$5WTRdwVmh01SDyNNtNn=7SC*xYkRoCB>_OTjsXPn0T+~_X+S#B+h+?pH z!nMQXV_yCoqz-X+eYLRe3SE*aUDL3+vzG}|*IPY*JUi_b(ZjAB>c#nj{qDT#Cgcwv zGyjhIi?@|+PvwHt34-T#xYO+klpoMk2h1})O`nEZHrYFV_Lhi!meiGZ7GlK~ z>BG}Y;qdfQpu>$Q0gbN839oB&PdNeV1R>BAs#l6jyEK{&L9yNuaJ&;h-2x`H<3V7=?T;vH~Y(sxTN$P{`*JJznF@PdO4>Cj=fHeoaQm z07$%}oo-K9ryJmul$4Z|l$4Z|l$4Z|loT8P0c6CYb>#IlD*ylh4rN$LW=%~1DgXcg a2mk;800000(o>TF0000Px(en~_@RCt{2nml35X6JpMncczrw{Lm? z@c!+a9+y9VeAh#t&mZ5ZYrP&cmX?-#rgF8q)~i<6j6N>ACRm6f0KoG7N zK73NXfByPY*>`ug0RS&wy`GW*I6FI2{#L7@%C*|}#6M;qw^>?R?j0S~rhc+tHzv3^ zJ_iuT_GQ1*mGxCT%@3yc#^#oq0rQJx%=HID&lNy2);Z2Al_~&?%n!@Uzd6kZ!Te$w zK%4{S`Z-NvoDthx6dC<8Lvp#i@gF^Ul(XIhx9N1+H@ov&BA7E|asYTdQ#RVU^R~QT z;>VBfcz5QA;F4lp=ysa8HrV*Djc&JdTleM!l>_SEzNpxa2W2oYk|+nhn6LW>LqBMn z!dF)fqh0s4+iqt{Ald$K{{Rb7JQx?p=Lr>veUb7Br-s>6ubWkX?YfUU&2|?gR)VYo z6|AaCx@zX(`?|UsjC3{vQ&X-RsqiZHWe6!O$P5P0bg8S#qph{ z0(x1;rULg?1|^eEq5}W!{XO)9JcT*VbrrDrGE;$z<8zhaU8{htjSG|tRMuC=-U}>5 z5hRJq?@Xcswl*$EsKClvMV0j=Xi@=bo2d7bdx1j1UhghYdx6I@Wt9X0B+BgL!3kHY zs?I1G9LMJpr2^Mi=hpQ;`{a6D(o`VJ{e#*J4XeNaRsp@tNfAh9^qZ;xD~EFxIPA;d zBr0%d*bM!WD!^}oe`yu4y%FMTUOL~F3NV?e0ASt(0mCXFunLUg-Y$hr#!)I@LUIOY zbUmKad|5HJ3UoV7a2s6(CfN(P-U2gYs{ns9xC<4~>)kce(y{r)vPx?6i)B1pAG{HI zw!Uig@wY)Khv5@ti=Q%-JN*Lk5QsB+ z{6zI9%h_I62q1Y)sN8QKQFJHaB(G3?0ITQ-nodmIA zJRkuicYUTczl}*`%(e6}Y6hI9#5RY3Def6tc2A4#EEPeW>{y5*RQd~?y$_!tHaQ0* ziBMLBqwIp5JdxiP8QtC4#>VCrinF29m>(j`vpub5J@a!#0gxO7NpL*XIqB&kV5)Cw z$4Ff{W8}$@DIh+X#T$}#yNgz3P)Px(l}SWFRCt{2n$J!XK^(`wki}xLC2i^UBJKfVFobx)Lp^xWgMkO|<_q{1zJo8| z%?E&JqS1JegCqtyNQgZkiAjN$Ky9URsE6%u`kU#@_K$TIbUv5P&TnSBGduJB?(7a; zzj)pPfY&dcw|IK%?aLP0Y`uLcj@5Edn7jR?rAsdspSBi@Pqi_gwvCtfeE`7n{d*#_ zxUwo0nqR&n(!3niwBu)VPU63e&kj1kRf^ZF)KvU?PzM zAa@Lrnhv`1dNE9$Q8BK|1Auz1(yG@gE!}ju40x6O5&&RheN7DMz3m+w9vp~5 zn{VEW*ynezME=J58UWzIqsL>^0Y~3IiTGKgEYjs~AEZC#F)F^JwySTv z<8l>1IJZyRjSiL;FrVlQ@8Zg;7y+3=7U_0ps9FKYbDhug>+=r*0Hv*GT`^v#aO18h zV*@W!$N~s8Al=q9n&TYGOZ&byP9tREN?Q9zSCccwi{N$6ejfLCX@q(#r*Oqk-Q|)dhGgP8S&GF2I%F42F;g8ING>pYD-dZ_ z1a&Szb)|BDxE4rE4JW?CBGv-QYgr+J0HidJ@y^N3cKo}S4Gt2siEx3&kE-!`pU3EU zP@-HQ&h>*>40XFe2kruDnu{VJD|){!z@5Xo3+%RSa2OZZ)hveoNf%hYfA9Zr0n-~H ze#{@8N96*X*jxb6FM@z>7a+I`^y0!k3hOd^xquGR46f+ve2$96#lS9b-mHPwQC(n| zwSes-<@s&u6ufJa%%_Ilpxgq(rFb;T=`)ELVHgApm)&2p`&#(jS$KF`l;hWf))` zpzikI;;6>>@qzS)KD;#JRVp zUaQ2uugC-BP9TBfL!FDBIt6s)b@ez@mi8DqVq^>mcV_VgNwZ$XS)<&wfT8@!WI?ht zQ~u=D49ed=81rp=zQf^gI2;a#!{Kl^91e%W;c)!-{00-90OFVW(=q@6002ovPDHLk FV1jtvU(Emj literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_cyan.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_cyan.png new file mode 100644 index 0000000000000000000000000000000000000000..6ff7591fa8a23a24e974e93933e59d51b54e124d GIT binary patch literal 1266 zcmVPx(tVu*cRCt{2n#*fbK@`Tn#w($kq%>)6S0(tMw2ST(EP@*gLW{U`SN}J6E=5`t z6h)8ckukt!zKVc zfAp{^?e{OAHqqk!%cuOT=Yz)R-Fr=woq4d_%sf~&`lRiepcsY#fNQsJapL^ql9K7_ zwd-uld{kDFp1zEumVGWi*8WGcvr0bclVx0!qQ;$1XE9bNvE#T=H`-%`63(Zy0Mw4* zAG~zA|4Ix{W>}<5iL$|QX#j9guQm_r)uw4WoCSjFw@(0owbd0K(qA{Wuv4jUru7%E z+4teqGfrPyT>$_r++QA{4*2=*9s7URez4tm^H%xC(kIJ|-o4j6dh&SWAKTS4!R~eq zKs2}aT8%Ev&ERUfJ-p`^mv{t>Pv((pb%q`*0Cld*c|Lk)0RV9H+)%lB- zA^hjdXKN*-@7MQgPZb{)0Y&@r#ukcU)ET?mHAMv?U&uaU$1r*t<#uBf6)3A6AbqmY zGTjBrN>Hjm2{W9j9~F>M{LHC9VJgeEPB#@WjRxgyYAPUoNvc3fs(_6AHWldlgEkpF zr3CWfa6g*gaVntOI#v}ptujcFd=M4*xZYmEGGYkJd9JH~&6k)8>~7aM!n;-hTNxLm zs9~kK8Bjnh&CMtgetvNYrMXBI#wYV^7sC+K!Um!!PUtE?N}&5}Wn7@Bz|?GsZ9NE@ zRDjA#{&g=9OcZ*r{Se^2z=cengCGFKmOj}zg{do?r>hM1;d2SAz~O$)y55&QdhVMT z6-aXbz?-2?6=)+>K(}R31k{M$s|rZvaIOO7mJAM}0%gNy=&Y$gAXUJ2A|y|O;+tJfhB#bfc$1~5-OnQJ84)2WI!9A%q!2d-q(G_Fyzi) z6|j68OixFjzid8Jx(fo?P?`ezsgDel(x)Gt#S!=YPx_pz02#7jaWZIAiZi74H%$-6xV^=jhxiUL6G1PX9+sLPPx(eMv+?RCt{2nn6z+IT(gt(6C{F1SL@h^?oZT2v+^NwRrG9mRq>*o@WKYL<({C%%IW9+P84X#fa( zyV>t_aeWPUQiJJT+APZ%kX^|k(;o~qRsdmNXFvb#-X8#f>P}_I#&vG3-Ud*)Qm5kJ zWmj?lf*6qLw?p_iBl0r7ueFOAl3G~S{?V_$XuWNy&gJFhcrBk2UPcqi0bpS%r_JZi zo8p3wZ~y)muVt3-n&j((Zl{F{O&KsOusX{su~wj@exW4 zKyiI7_Fkai`w&4?+-DLMFx9a^NCj5!7iC%vf;trtb(yQ~1?DoD7|p*raxbv3l#@Xa zKq$>N9-RE@@3PD&8H{7IiBy4$^M-M~&o*%#mnaoTa{nMVL&GXCfK@{;YPAZ7sTw^<`K|~Lp zsQP3%+N%lyging_)aG=nRx{c-ZS%`8Km(wj_Tb>C+W30o`HQg{JeSEJ3%dbs9E=Ne zjt#mszllj?%(nC~at546_%^$M&hHshbdU1wBo#rP>?rs?iv0!8?%VeedEy+92!vu) zI4WNtPM(N+3mL6$Z=tkV#$q~e)#ryu@@!ALRZsj}kq3kaK?FFS>Kyb`7tod0)ni0i zamL7zATvO4GK)7P-DVT#o%YZMM&vK07DH=xQ~vz?JdTe(8}n^zzQf^gI2;a#!{Kl^ h91e%W;c)!){13hz2nN3phzS4y002ovPDHLkV1gwoK{)^b literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_green.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_green.png new file mode 100644 index 0000000000000000000000000000000000000000..818fe788295b19bf6e5b4b356a06f2257544281a GIT binary patch literal 1205 zcmV;m1WNmfP)Px(Z%IT!RCt{2TF*}uNf>=V8-mg!%s7pSVJEs~12K3~BL}^x7x)9b`Nw(l4}iFd z#*G(DmczQlK!{4zY_bf_U}(S);`SbTzM9uHRXxn8)u8n*eEoe@%~W-L@6|6ndGs&= zfG3Y0CTzca_BcTcFP}YD&w4p%n7%odnCu((D#?v|6=RHT*9fXn1OT{p=eBar&dp~E zUA}f**<4QQGNKEESZIHdgNe#w^O7}s%)L22Bn;SgslH5E8Kh>iByN)4xmLjc*1 z5uCp?*z=F*r_Q&6@jr8e^LzlX7dMikDnaQFU$0qKB^zuNr}$6u7a@v3ci#Hh~n&9P+l#ixODyyfUQ9xIi#I zQ3jB5K&i!PlH&~Vm7>TPmk|<{%^z=M)Sl;DXYZ5SObSW{CI^7iqh+I?8*k$U6F%?$ z*V`|1gkXnqU2u31W8dK8zc$3plf{LK0~#ORsN7CFrQIIO9J6Kpe0>@Scg~|I-f!E7_cD#^>Fz30h0=8ITDzLrTR1EK01#ER(K&e1&W~%44KsAaW zBr5OeM+IzkTp*(YlhZY2>m+DW0jbOQ+O@z)si3vM>Cv(xK>!(>W868F$zN5OZZguVbFau#fg;xrYBAKQ0&TDg=r)rgkY)6vssJm8a}`)`$zVS!ux?lk z{g5iaJHbD+3fOjp_?f59-%15C<%&`Pz`O_oI#ocxD$otbb}DRgc2fZpgfp1Y^?c5Y z6@{Kv;P4;@*U?p=pS6JNB`~9B72q?2@1X*Ex$h070!(P*6XneFZ!=TIST%}NXUKbO zXM@p&lmu-tlivjbZm6VyzU#w8$uWKFEDw3-e;jkJ0%CB(@?_Aa6eo5qz$BKp_iu`s zw#EBFp=$y8ay#`pY^OxF9U;?K=ea!Rv))LKeSF{cJ10RgQbtd|sQzV{?RA9!vNuI| zXtVwCy*Jdt;cj4mxM zV0LaEXTnOcCn-hV?b(YPg`cGdK(-Tv;CQGr>FFt8DsQUCkg{^e$fH0E0O`#vS*!r* zWG0TkfPL%_!=cQa-R3_tHh_&+cE4-Q_wexW@bK{P@bK{P@bK{P@bK{P`04RK73K^b TNELnU00000NkvXXu0mjfp7>Ln literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_light_blue.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_light_blue.png new file mode 100644 index 0000000000000000000000000000000000000000..493781de2fcee851334feb4a8f2697a65d37d404 GIT binary patch literal 1226 zcmV;*1U37KP)Px(gh@m}RCt{2n$J%YK@`WoB}@3(5?VVwk(y`>9`J-FB*u%L;1A%2NB;u<7>{_; zKLDbMMq@}wlneGkP!fn2yR{H06bXm*uzl0F)0u6zz%1x|E`2+1W;-)G^S(2?gLkiA z1_1Ex^~-?Un;+f;XtDX>jl5R#L818cMWD0A^H+g*{z~iPwr#wk5CDML$B$&<-26f$ z)9u;&(&qW7ENArA9cgF8gtQAcX8-`c#>dOpW`G(uIF!Xip)4I|rwy$=Q7B_@C<`Fk zF+^r8m$(xBl({GdbcwvdacKZ>+^7e~je4M)4%Y#%{$mFKu)ew?hxA@$3pL-DnKs^k zlD@AW-^%p$)fE81lf|VBbwKmyH|Y=j-_ri|c`fqC+{eolpS}oc%g-|BY*){C2i1K5 z;oLrKHM%@AjoU-*;XOCMAV2i5(E3WPo(eMC(&dYU`i(vC!Wmah7E zqj|awA}c|z0%c6gOi5ILNAYW?0)?rpv{kyPfNnJKr>UwyWCWzB0s~wHc;q*!KsQV> zcvbQEMe`_}-*GCS+A1a$xUw=xk-Q%j_`dO_11t^(b- zvP)rIVmB4gK{10zbag(*`O+e>3Y?ubz{{vA5Vsd-8Wh6z7MPP*1^73E%TNI|-(@3J zfCse6Qa*BhXJ%UKD+(bygYIMcHmH98Gx<_e0iYe>)we!8P;#I8>MV}9?|{p(3g+e)FqSP?o%0=}dA8@cQBVC`kq1OOfdU*K>OAPF zQ$UwrSB^t@>5P#hMKVBmGK+6WP8wAN{_lW>H2?qr07*qoM6N<$g3fn9i2wiq literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_lime.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_lime.png new file mode 100644 index 0000000000000000000000000000000000000000..ad97438eaa35a6a0b6a123d5dc3c71a6a261c609 GIT binary patch literal 1243 zcmV<11SI>3P)Px(l}SWFRCt{2n$JrcK@`Wo%8E;?Hb2Np4CL~xKf!;X z|3Gj31C$n8TD(}Ohqi(QTM_Y4RAR)aL@cC-&6|BQnc0{$&T2cKOWwXWlk7}p-gjnq z@czx~1^~Q&^SZ(9Zy(<_(B#|4x8hnY2Zg7LsfNye@ha7L@k$@#wr#vz5C8zirzeGT zVs2h4^l1E3%h`{AVO>5uF7BDb4 z3_$J};(pF=@wKCyI=!M_=j08J^8vtFt4*$ z9{~vG_DQqRg;EiZ2BYCUF*h$pKzcNTk!EM8xdM>qI-lpWQ=xxzsWryyJfHMM85?-% z(F}kv2aGgx8qIMI`9^|38>bPH_VhpG51DU**QrgG=zU0 znuj)z)sL@sk>O=*27Qb~Wkj)PZTcw=}=tcwoH&qqju_RTXpQ`}R{3aD>he-x+D$?zqpN8{0 zP6bq3#iRl^Rt71PccTJ7*T1xUAs@ngo~tTgiY2B3)%_!p;ccscsg4c$sbPgu5tI-M zrJ|JKC+6l+D21w!9?b|l7X*0BY#_|yL@^)z(Cm~ilt7J{>exV1f&7z#u+=1}Qvs^W z`P;pKpStR;_Xe>SxHFUyNf3Z!^BC`(Z2qAr(@q9EiP=Q-{rTyUalOxDbloX&Dv;#< zL2QOvRUm?^fNJxk2*?@zsw%*h!@3G=HD$0H71+{jhW<$v7@wZ}KUBc)kG9}u3*qRk2rE@sMm(FR8K7xVI( z-Q@SvK0dG3jegsj?{GLA4u`|xa5x+ehr{7;I2`{ye*p2C&yz};inRa$002ovPDHLk FV1h0_SN#A0 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_magenta.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_magenta.png new file mode 100644 index 0000000000000000000000000000000000000000..af8b7c3ce2145c05edb18eb865b919a651c9e808 GIT binary patch literal 1261 zcmVPx(r%6OXRCt{2n$J%ZNfgJwkXF=X8kyPY@iGj_8iH~0ga<<6MNiBh;LW=?PyPqq zy>a*E9{_O^jfTWVwBs;l0& zs=M&=`LhN9ynOzwA?^3CUo_C<{p%Net(Jqr!)uQkI{We1lg8t*C)${_ZR2Hw001y~ z_YOO!W{QzQ*C%hYEz40|$xS~GY=w5p&$4~%VlGln#$+Aa^i$(545ToWDRAKEpsuxt zG6h^1NCAj;3^AG>>G~#msdHNN>zuN|aXtXpt5+I(^-4oG9nJ$@Wpe`nusA=*L;BOo z8p_+-TxjXl0>_r${KNjm`8fcm0Aw%51;=vKslvGA8Rhy!NOuyY;m1 zgzf4WZ>LlR5YFvdv(bf#aa5g&c*D6gfG`L6&74MaTtYrS2()n;Ay)^7wEyU`ciDIovd-7T|2n(#Q^NB# znH&JF45qby*?3c4(DCj2x9;xD5?)Qrb>irtj(v?!{x$J+*X|QMDVzf;n;Sg0!%jKw z7)q4Kv5-$IYb`%$8p0o|pN%&mW1sPVXLo)|c$DqeSJsdX!p_(!RU;}8#sZEJWzFdM zx37?xl@5mKE<|5I~CB42Kh8q6_BwcRiIz0 zfXw_R6=;V^2G1&aaBN={brij8ss0zcmG~3xAz?iUsFpCo@Kg)J;befew zjhX7$Aff{K8wIx2B&bsXsw+9^USI^5y14z5!+U`%gK18J03x=G$v zDY{mHqk}qR9aRN-*$dd-0!zA90r}0~XQ+T$?q|bqgk(Y+&ZQ&Ql{5w>~ma%9#4hpfJ|a>@BVc$ z-D~k)NOUhiPp-DT4bxX5(;Fe(QDjF>_l^0o}Zpn6i7^+)h#v_+&>m2zZ;j^lAa*qjNx%2x(Q=&QH+E6Z&nE z(Z%^WOwAPWM=E1=&bN@{*`B?6CGm4b9uVyWN^o+h%cQ4H0bO}rJqeYiGe(XC=>x)( zS-e?6xR|Ne%8)+kPx;x%n%(5TdT|JEzpNVlwl&}3a5x+ehr{7;I2;a#!{Kl^etUiZ X!mbQEIdWaP00000NkvXXu0mjf=LlX3 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_orange.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_orange.png new file mode 100644 index 0000000000000000000000000000000000000000..163b65541a8c49dfe3480fec07197da4c580b48e GIT binary patch literal 1206 zcmV;n1WEgeP)Px(a7jc#RCt{2n$1rXNf^c-NGsyMp!~ z@w^8BuU|axvHkw-QV)IJzg<$-dOc`7YoKScmmZ5W033GPy~A$1X9|a_fY;vo1OQlRE~+X0Wqkv!ogGza_06*K zt^M^c=-rn{ufFQQ_ z`<<@O&fxY)IKAf^3u*>TS4)`a4~CvAfM~39od0<@nC4HLotTf?JiL{?GgLIW$|ii@=$9EXH8lmG6Z4Ob-LT#Sx7j;LbNlDVn=oW@0Ju3;GM01aZF#}O z@xj08?kp#~eTsGA^rVX;LmB_I(dopW{$)nxfcDlW72Cm}gaadqGV}#}S>K5Lplu3& z{@XqfrIk(LoU3 zNh+Y*IyM!!v@$4}Jc|l^Tzwb&L7u`K=ei2me1)mN-uAA_@Oi6%txX;%6{ye7q}~fu zd>@iT<#)2EfUQj)L{y-5r><;037S+u+A`aHn8ueUN(GJ%cCG7u_Q`cxl2o9`{e#*J#Z@4LRY12nDFV@qepVG=<;YzHHv2M| zMFlnuo1q_41^7+y53K^WH$r^POXrJH0j4k&0L+^pAg%%etH2;G?NZoOI7kIdNY3Dl zuE%qduP9Qh!0AaB+(uV{EPH{xx4=wl72t0M-$MoTdfywR0-VsMtEI^GZ?iK-U&Z&; zV5m1smT!al_dlDjFckp846ncS;Y7(k{nc3#;rG9|LIl2o_5xyX$C6~wrW99pFThDG z>D|A{XL>E3g+liN^5ph+c3}HTWP2lIdg{EE=XlmT$-cE#Xy={;#RxKb@I>_|%h_I6 z2q1b=gr_#!Yc0Ev?L5B>12h2oX%9}0x{t3PJbrSf8?KG!pWx1d@qh#n-SwH){5G=4 zSl-gds2R{oh;0r5Q`|GQ?4A_cMJj?i*-`O*)cXsb)i=wKGC2n%iBMLBgUSUtc_P0p zGP=@S#C&4`KaH1jjrkZwp6xm8whKR3h-9k*~+KKg41EP^1LPx(nMp)JRCt{2n$K?&M-<1ui53OXB=`r}0BYolB5EXZKuslb>7`U^;!_V5H?Exc zgSc`-oD)D0QE^EnjA)ul4N*ZwARtNYSaA{&<=`IHZ~Wcy%sMv7Y(nRA$?SVG&d%(- z_np}tJi2qc0RWHg+-`7r;qmwCNN zeIgh(WO4vFF_<&jx%0NXVB%w~*4>>sBG{l<7j}2**f!YsuZ`NjANT9toS>872wQoQ-My{Wbm*O@Wu9K6yHfIpqF)QDsX6JP%?QhD)4vtY1xhaFasKByeGxS-i0KWAYVmz@(-E zfO!)Hw5x!?D$t2TyA(DVJE?#P$r+r{^>|M5rA5~&u)9+Sx6xIgm%V`NEiluy3h+0B zgHQpz-a*qZ9m|g9R8q^1=5S%W^+xEzc+u$NZ-Y|4RJ@{W`uD#ipULimfHS#-fd1Bp z6D9lfS7%8ieg9*ha}|&RcPvQ;ZAx)u_X3>6lHUEBe5Tjpy^!i&K%U&j>MCqsiEM9# zOi!KH@*K~4C)xMx?F&_Qodi_~L>WDLqWY8NY_BT>5I-rxQ=7}r-oCKb2{8y5X~#FiLPKodmIAJRkwYcYUTczl~mG%(e6}Y6h$RY3Def6t zc2A1!G!;Re>=+3{6q*a1^4t@MP0j&HB9v8OC%YggPvo~nM(1Z|Fgabq7ejfcG2cd- zXM48lmDJA_1wecdB*F1i=cK2HfT_Nz9V2z+jFBfr`he(U7H>%2)mBmc@G7=RVSDcM zx!9WBWPx(j7da6RCt{2n!#=pIT*+PEz_3GHc6W(Qz30PLW@xMP>Dl9^n!%o)I0z;9)V}z z8F&P4JU}Z}0%gUe2YP@lhbjUgC=zO_q@mMhx9y^EnArJ`V^2D1@wDLIrQdv?J@t6( z?{80xXHOn?0N~k^#~rp`SD$v!<#qL`yjIIW;r7&nj?S+54?7kAp*F_0ZM>520{|B8 z+>*}4rAnmGm4)ll=5nGgb18EfXoYrWydeF*Wq%KidVh@T*k)8b+}K1G`C?fHjt&B? zoiCO#HjxDo?HIxA$1?=^A|Gq&)WW8>{?g$-G_a|^rOhc3_0;mSmBcrPwh*h2u#~Iac#nJj4i{P3o{pkwcFH(ARp;qB5~7aSb~Xls1@*F@{(-7X=+cGwSV_*KaJOxCyudQ#OFZ*uDLzw5essg51YAUd^ z)sz|DwhEZ)*g&d4d44YOUZCXr5J^G6@2R*c{`|DbD^O%M6miBr%&v6=?4@jq81miR+}qsX&_h2e}#QSAia^ z0;a->CX#IoqoW0Yp!V@X%)aQ}EFkW83C0!vJ-FdfJ1NqZ;GuyZ7!N ztHF6MA11hzPJ)=w9*_W{yFT5T-^4I7W?T9gIRdt0<~C0O-MnW^**$JO|?WJk&O zQSL5y)}FtB@QHIkA`yyJ;UK?2oIDZt7BafJvW&&03VzKNthdL)cbqeUp>*_J0tTPx(fJsC_RCt{2nz2qBNgT#MxCNYm4YuWlBFKs^I&lSEuAsPUE)_gLy7YO4yh!?V zc>qvON|aL?ila$<1wt2{qND+2o5O|xPT~~n|M;6>X6-d(7jpA!JUjmxYiD-m`(}0r z&!0Z&0>Ja9Pr96b{qk8CJzl?jrmoF$FnCxhcWvoM3k%&x3k%j5r_&~=gdqUn?(e^; z%$3zOtsFH2)A-SB)*AJ>RcA%woGntTpj=%wd&oYR=sPR4%dO8{{AfhU~^+#4e58a zZS3#usX|*XUa8odKmSnqn;Yu@fP42Jj7bOleehAmn`a%Bt~K-y- zY}e2P&D{ooXl@_&8eLsp!kwx9@LpM6QzM`_UqYeR8KzbM`dsIE{%cqO06ZR`56h)| zs(KI<=Su)04Jh<9P3AZwd4({v#$|-e1@?zGdn0GfH|w-NeHre~FNvUFQE~vdIa9Lc zbK_mQVB^1!C&}(CC4xhm>q6(Wg=0$||GGH%biK4tX+Zt`TQ#?%PU&}y2xUJO@vgRg z?hjo<_`}I(=S^_z;N)z$JHI3XQTv_RHY#D%8O_~><^oYHR54-SGJ5_!JW^>^dd@dv z+-S~E18pV9E>OjiDwM^Zb$Pw&IQc0iOU79tPP5ikKzLVZ2fia4|xdlJU3my70b*8n!639@M*h%t4QsP`7%l(7e44rp@KI{T!nne-N6@6G2 zVCP8P1$KHiIEoAGST;l7r3>(z;P2W6TyKQ9LGT)>8C1}nNbpW|X#k=O+~r!83Y|8adAyj_@%60TU*E&%iu-hAuBLdh}n)ma>I-~Tw4x(i5x8y07S zE~mJ*djS@)xOe}ynC-RrC}g@9kSBMzw+Gi(BG(%s+f(PYJkMvdk(xua`)h>MMNkrv zqDN2Ee6p0amF~E=9giBI>0>b!QyDf`1;=c2SeTPTy8QFxQtGM zxUe3O0Q6m-ZO!ju6dOz1`WQ6=_G9KYPXXJ!XI$zYH@CBN1a-2b5{9Vu7Cc)oUP1EY z9FPd1tO^I^3v%*A{#$Hxb7LJVt819fm$UtnlI7W+qgFlhZ|MP`cY+8U4|Ntja|+nX z+v+h=R?ZlCGGq*hPG+gi3ZlhK^Q;5Tec%1y5ia#=*mB2LJ#707*qoM6N<$f*K!1Q2+n{ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_silver.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_silver.png new file mode 100644 index 0000000000000000000000000000000000000000..4366cc41a3ee9b6c44cfa74897353cb39e71211f GIT binary patch literal 1243 zcmV<11SI>3P)Px(l}SWFRCt{2n$J%YK@`WokTpb0m$Xf{MkRaD7}RhQO}Kc`6T};di3blR{$t)u zxEY8h8jTkYazP@Hst1A?ft1EA#Sjkluzk}v)0yoL>MZDdF1(#LQ)Xu8z39faLAGdAe6@vf(Fm?Z)D4d>| zl`37Ex+82}kJ@ssgqMZw=d!}Sd}&;&$9=qwZH8%Z=SH#^D}=&vd{oogV}%gsM&i!% zi6JhQF817se%cI*VO=2~a8eln)N7SSy;f=H!r?67RkpqX0G1XP#FE}z-N4@NuBf#9 z_Ji`9rgM_Z#}bw7qM6;j*n_M)RghRChGOygX)_VL=LEIeG{=APfBZIC{eb2F`KI! zZ9iyQ!asL@8au&#Q51F8^8w*ewlA-4pcurHQQg^>R3P>R!bj|BR?qj%ZDI3F&&yRG zA2ctwf%GKERUpKKsML!J@GO4jRG=`P6}Czz70|5)em7MWkbUW?z%W+n}5ad;5NcajRIwu(swPOS`5ChtcDzAk@k`$4{hd7P^%VDhD=0@a;;k>PEtfT@iQ zhG}5oncCPuQi1Usp|I5? zs8a!I%Q@*@!1w(gx_@%SUf{xLUL-*PlFfa5ath;DMV(GE*o)65LIn;F_KnZ`+(*~F zlB5D@?jOWvs9gnGa1~H(o)iH&qj#$UTsf?(K)ES{{ir}$vl;p)RbcA=z5hc6OmBqv zHGgy-lnQWCQvpD~2?E+xfZ!_7iBtP1tSjuK0y-#X@Qkj;bCNGDdRBqsqZ)V{RR#Ll z3)tQQb9z<*{>|WTsDN7UZzJ9a@r0Hu<)v%N^s28I1Y$DicTC>~)$e~MUur4D|B1r+Y2l52@}2=*~sEyD)tv zGQAPf-gWjY&*NDgB=>Fq*b=t&BuGY_(c?R+-dUdQRfPcLlOodler9j~*fRRKZS%`8 zz$QRF?ZK0y>f_fB9zE%*!@loZPjKC!Js<(dyFT4BzlnZi%(nD##0uC;h;1GMy13_< zvU^f&r>O|yWJfUw#5Q;N?FUd9odcpoNKb{G$_YAoLcdKiy0o}}>6uw%vIVO#-$t5e zd+N1H>gS3)K%N9jaD1urq^E{}uD-4vhw9Q9BS(r10rAN!z9EUC2vN1xwt=B?KbMsx z%~YNp9mD$PHDkGL&38B)4u`|xa5x+ehr{7;I2?}uoPx(BS}O-RCt{2n!8RLK@^66&>|$lMcDFEAs0c26m+DZNfRn~06HFyjt2k{iHIl- z5}_eT2%#Wxskj&r1|&qWDa;xFdpxuD8ocX}`5Mp8nHkT{<@`GrY^*Ft0I;#L9C3Je zb3MWfyPNCgS*L@7<2cM^B&ExmpcIAxfSIpfOyunRLM+k5%x4qkbdr~uoSw4U%M`C| zlggGQz4CH>{X-ZjmW|>0scH?66wB!A9|90>7@;`+F?A){$@5n9+9LUdli~p2p<0O^ zs+B0uVf-3`%GnVBU~6sF49k!dym@P3n^sfq3J?y#tiOYf}mK(luMyP{B*f%N|mr=rS0#H7m2DxKx0>aVsjo z<><0?T5anZ6)27mnXsmr3fOv%i6Tr$|L1pFXUm81eXtZ~`8 zRtCkBx1$3532U?SichP6%a)r8+?-#VKhIhPTzRs<><5&mr%dmar>8K{Utj9Z&M%mu zJvvq}Bc&9E5GQKeSKwaOdkk!Aw#U#(Vk$8Hscgd93EEUZ^4ijAT3rj+%IqX&Eif=x zh&d__vyB^vH!_;ZU>aMN7!`QDzjl7_vrV4Ul9VUU^@CXqHL5@z_R>16y*ArhRe?Ll zXK@w;;(^;y0qxm!+`CZ$_R{ZK1zbBq{LG)uZ>0iEZYlsISDsZsNVA>YwV%Sa$Yv^F zL*_20)AKpWmKUj2;Q6Tv&ZE6{J8OZgm%vPF72q?2PN;yb%uZrdfSu3iSRwYzXLoEX zg`s&7DaUm-sL%ggw%k+zsC#(5>%)$cZRP1Hl+oJ3W|G5XTjnYt0e-P08FVSdKf4xS zCziDLZ?oC9#oHm*wSe@*-Ngl5r$nwDAzLqUgYtaVFUhu(Je^?tj}ICuq${Nr0*K%6 zxO6m-K5=%1Gd&pwHGuZM?2NRHpIfc4R+etTdO-q+59Kr!Z%4+mmOjRe0N0QN(k)kA z_N2L;ry`h}9i=cd7n$TXM=1==Js@#}@>SR@UXYt7QntwG*4ip&=NIr{sF>-TZy?XR zJ$zP}7Xc7&1euSQjzx_guD0~He2k=(J4T)y=>cjZfEOg9^?Cs#@w^q56h9n>=7yOq vK5NbQcsw4D$K&yMJRXn7<5z_00000NkvXXu0mjf+sGR= literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_yellow.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_yellow.png new file mode 100644 index 0000000000000000000000000000000000000000..ac00c6285f8b80cddf11fbbb3d070bcc7d1e1dc7 GIT binary patch literal 1221 zcmV;$1UmbPP)Px(e@R3^RCt{2nn6z!K@`XTC2Lxg1=^-dG--N(D4K8*6S;Vi6MO(~eiRRW1;2qe zKLA7%jm8Tm_JSk?h#W{01)8?V0!lcnhut@QJ3F(b6=y-`cVYIunWZy3@BL?X2X9}! z3;^KmtCs;UufBgBAY%3XYjG{tgGBvVAyAb!UknGEFNT#qUN((W@jL*)?BhqmIJdAE zt28zHK$LksYRkEGrvTs=0Kl!}guOaB7L|S`e7ucmhNyGb@-D{8HQ_ir^_AtZat+t= zE`a#J5I3uZzJJ6ZZ7zx-m63Ni%?1F+ek(ZkTY)MZt^!W0u?+xNSzZ!TdS`6|&Ha5* zss8Sx@O}C4M%Y)DmjD3sPoCyz0Jc_t2*2O#j>-C`gV;ajKHjGOtPspT|CNIwoX%bw zKp5MHQKxG&)0oP4r}x~#qL=~2i4sPm!H{zWK(U^T^ZWDTVd431!pGa(dpHhY_s@HF zPMqRI2|$tL3aDAktwDZpE z@`941PG3LF6wV=wb>i&Q$BDwm|LXX8bWuOe3?c`#8rvea!$Ii|3?<60FJxzJBXL9B z6#m}OPi^k=+o$LIC9 z-S=Lg;(4GXO7|H=1$1pp5L1Eb-I^%NNl>K%)Ryz7djYqU2T7s{#9rX~NJ%6?0I@Rn z@xduqCq8A_@^7p?+wnI}acp3%>%0$e$a ztH4$ygM+BRmSQvXPpSZa6Z}uBfbNYDzvfHli&6njW-0)vH$gyB1qiMJJ-Mt)VU@9$ z3aFr*!85uX&uPA_=vxKOPJQq;vI-2c7cjjA=Jc%s{F}kwPyxB#-$tkaPiV!7QtbNn z%(T*1@jNjYbRXTf!O)HrU(#*@hj)}hKz{4P6D9Y_ug=m)`~Js$##Mj{ykluHs8fn7 zyBFX|EbZOD%BOlQJ_woa1?b5g?(akQl}PtSNcq&+TAs(V+)3_hYVag?0r8gH@1IheY|Y)%P_zOKtAoklcVh8*Yi)Fp6ds@r99jckkv^L z9m)d|Kz!GyTJ!4|M8-@@A4kl9W=d@H5KzTEN0;5xVmnJk5GOk-o`+hr;Hkg+2(r;R zAWDR^D(qz^=;R6An`Crlc?ok1i@4#IvwQr2`ly>Jj{R2Vivb6S4+14PKGk{BlS4pN zU)7F7b?J Date: Tue, 29 Aug 2023 12:36:54 +0300 Subject: [PATCH 3/9] Begin radio evolution --- src/main/java/su/a71/new_soviet/DataGeneration.java | 4 ++-- src/main/java/su/a71/new_soviet/blocks/FUNC_IDEAS | 5 ----- .../blocks/{RadioBlock.java => RadioReceiverBlock.java} | 4 ++-- src/main/java/su/a71/new_soviet/registration/NSE_Custom.java | 5 ++--- .../industrial/{industrial lamps => lamps}/lamp_off.json | 0 5 files changed, 6 insertions(+), 12 deletions(-) delete mode 100644 src/main/java/su/a71/new_soviet/blocks/FUNC_IDEAS rename src/main/java/su/a71/new_soviet/blocks/{RadioBlock.java => RadioReceiverBlock.java} (94%) rename src/main/resources/assets/new_soviet/textures/block/industrial/{industrial lamps => lamps}/lamp_off.json (100%) diff --git a/src/main/java/su/a71/new_soviet/DataGeneration.java b/src/main/java/su/a71/new_soviet/DataGeneration.java index a605f49..90c3ef8 100644 --- a/src/main/java/su/a71/new_soviet/DataGeneration.java +++ b/src/main/java/su/a71/new_soviet/DataGeneration.java @@ -237,7 +237,7 @@ public class DataGeneration implements DataGeneratorEntrypoint { addDrop(NSE_Custom.TV); addDrop(NSE_Custom.RED_TV); addDrop(NSE_Custom.BROWN_TV); - addDrop(NSE_Custom.RADIO); + addDrop(NSE_Custom.RADIO_RECEIVER); addDrop(NSE_Custom.SIREN); addDrop(NSE_Custom.LAMP); addDrop(NSE_Custom.CEILING_FAN); @@ -602,7 +602,7 @@ public class DataGeneration implements DataGeneratorEntrypoint { tvRecipe(exporter, NSE_Custom.TV, Items.ORANGE_DYE); tvRecipe(exporter, NSE_Custom.BROWN_TV, Items.BROWN_DYE); tvRecipe(exporter, NSE_Custom.RED_TV, Items.RED_DYE); - radioRecipe(exporter, NSE_Custom.RADIO); + radioRecipe(exporter, NSE_Custom.RADIO_RECEIVER); ceilingFanRecipe(exporter, NSE_Custom.CEILING_FAN); lampRecipe(exporter, NSE_Custom.LAMP); sickleRecipe(exporter, NSE_Items.SICKLE); diff --git a/src/main/java/su/a71/new_soviet/blocks/FUNC_IDEAS b/src/main/java/su/a71/new_soviet/blocks/FUNC_IDEAS deleted file mode 100644 index 43672b2..0000000 --- a/src/main/java/su/a71/new_soviet/blocks/FUNC_IDEAS +++ /dev/null @@ -1,5 +0,0 @@ -Ideas for block functionality - -Radio: Like a jukebox on steroids. Maybe container for disks, maybe a way to connect to real radio. Who knows. -TV: CC compatible peripheral which combines a speaker and an 8x8 monitor -Crate: Like a shulker box but much smaller (but cheaper!) \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/blocks/RadioBlock.java b/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java similarity index 94% rename from src/main/java/su/a71/new_soviet/blocks/RadioBlock.java rename to src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java index 0ab24be..40827b3 100644 --- a/src/main/java/su/a71/new_soviet/blocks/RadioBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java @@ -13,8 +13,8 @@ import net.minecraft.util.shape.VoxelShape; import net.minecraft.util.shape.VoxelShapes; import net.minecraft.world.BlockView; -public class RadioBlock extends HorizontalFacingBlock { - public RadioBlock() { +public class RadioReceiverBlock extends HorizontalFacingBlock { + public RadioReceiverBlock() { super(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL).notSolid().pistonBehavior(PistonBehavior.DESTROY).strength(1f, 2f).mapColor(MapColor.PALE_YELLOW)); setDefaultState(getDefaultState().with(Properties.HORIZONTAL_FACING, Direction.NORTH)); } diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java b/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java index bc531ef..2215919 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java @@ -18,7 +18,6 @@ import net.minecraft.text.Text; import net.minecraft.util.DyeColor; import net.minecraft.util.Identifier; -import net.minecraft.util.shape.VoxelShape; import net.minecraft.util.shape.VoxelShapes; import su.a71.new_soviet.NewSoviet; import su.a71.new_soviet.blocks.*; @@ -30,7 +29,7 @@ public class NSE_Custom extends NSE_BaseRegistration { public static final TVBlock BROWN_TV = new TVBlock(FabricBlockSettings.create().mapColor(MapColor.TERRACOTTA_BROWN)); public static final BlockEntityType TV_BLOCK_ENTITY = registerBlockEntity("tv_block_entity", TVBlockEntity::new, TV, RED_TV, BROWN_TV); - public static final RadioBlock RADIO = new RadioBlock(); + public static final RadioReceiverBlock RADIO_RECEIVER = new RadioReceiverBlock(); public static final SwitchBlock SWITCH = new SwitchBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL).notSolid().pistonBehavior(PistonBehavior.DESTROY).strength(1f, 2f).mapColor(MapColor.TERRACOTTA_WHITE)); public static final LampBlock LAMP = new LampBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.LANTERN).strength(1f, 1.5f).mapColor(MapColor.WHITE)); @@ -72,7 +71,7 @@ public class NSE_Custom extends NSE_BaseRegistration { registerBlock("tv", () -> TV, NSE_CUSTOM_TAB); registerBlock("red_tv", () -> RED_TV, NSE_CUSTOM_TAB); registerBlock("brown_tv", () -> BROWN_TV, NSE_CUSTOM_TAB); - registerBlock("radio", () -> RADIO, NSE_CUSTOM_TAB); + registerBlock("radio_receiver", () -> RADIO_RECEIVER, NSE_CUSTOM_TAB); registerBlock("lamp", () -> LAMP, NSE_CUSTOM_TAB); registerBlock("light_bulb", () -> LIGHT_BULB, NSE_CUSTOM_TAB); registerBlock("ceiling_fan", () -> CEILING_FAN, NSE_CUSTOM_TAB); diff --git a/src/main/resources/assets/new_soviet/textures/block/industrial/industrial lamps/lamp_off.json b/src/main/resources/assets/new_soviet/textures/block/industrial/lamps/lamp_off.json similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/industrial/industrial lamps/lamp_off.json rename to src/main/resources/assets/new_soviet/textures/block/industrial/lamps/lamp_off.json From 04b8143ff7f6ca73797385cd65e36764c610c76b Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Tue, 29 Aug 2023 13:24:13 +0300 Subject: [PATCH 4/9] Rename radio to radio receiver --- .../{radio.json => radio_receiver.json} | 4 ++-- .../blocks/{radio.json => radio_receiver.json} | 2 +- .../recipes/{radio.json => radio_receiver.json} | 2 +- .../a71/new_soviet/registration/NSE_Custom.java | 1 - .../custom/furniture/mattress/mattress_brown.png | Bin 0 -> 1216 bytes 5 files changed, 4 insertions(+), 5 deletions(-) rename src/main/generated/data/new_soviet/advancements/recipes/decorations/{radio.json => radio_receiver.json} (93%) rename src/main/generated/data/new_soviet/loot_tables/blocks/{radio.json => radio_receiver.json} (86%) rename src/main/generated/data/new_soviet/recipes/{radio.json => radio_receiver.json} (89%) create mode 100644 src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_brown.png diff --git a/src/main/generated/data/new_soviet/advancements/recipes/decorations/radio.json b/src/main/generated/data/new_soviet/advancements/recipes/decorations/radio_receiver.json similarity index 93% rename from src/main/generated/data/new_soviet/advancements/recipes/decorations/radio.json rename to src/main/generated/data/new_soviet/advancements/recipes/decorations/radio_receiver.json index 9cbfe69..1d416ac 100644 --- a/src/main/generated/data/new_soviet/advancements/recipes/decorations/radio.json +++ b/src/main/generated/data/new_soviet/advancements/recipes/decorations/radio_receiver.json @@ -39,7 +39,7 @@ }, "has_the_recipe": { "conditions": { - "recipe": "new_soviet:radio" + "recipe": "new_soviet:radio_receiver" }, "trigger": "minecraft:recipe_unlocked" } @@ -54,7 +54,7 @@ ], "rewards": { "recipes": [ - "new_soviet:radio" + "new_soviet:radio_receiver" ] }, "sends_telemetry_event": false diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/radio.json b/src/main/generated/data/new_soviet/loot_tables/blocks/radio_receiver.json similarity index 86% rename from src/main/generated/data/new_soviet/loot_tables/blocks/radio.json rename to src/main/generated/data/new_soviet/loot_tables/blocks/radio_receiver.json index 4816f0a..853909b 100644 --- a/src/main/generated/data/new_soviet/loot_tables/blocks/radio.json +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/radio_receiver.json @@ -11,7 +11,7 @@ "entries": [ { "type": "minecraft:item", - "name": "new_soviet:radio" + "name": "new_soviet:radio_receiver" } ], "rolls": 1.0 diff --git a/src/main/generated/data/new_soviet/recipes/radio.json b/src/main/generated/data/new_soviet/recipes/radio_receiver.json similarity index 89% rename from src/main/generated/data/new_soviet/recipes/radio.json rename to src/main/generated/data/new_soviet/recipes/radio_receiver.json index 8710c06..cd08558 100644 --- a/src/main/generated/data/new_soviet/recipes/radio.json +++ b/src/main/generated/data/new_soviet/recipes/radio_receiver.json @@ -18,7 +18,7 @@ "III" ], "result": { - "item": "new_soviet:radio" + "item": "new_soviet:radio_receiver" }, "show_notification": true } \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java b/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java index 2215919..ef8326a 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Custom.java @@ -2,7 +2,6 @@ package su.a71.new_soviet.registration; import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; -import net.fabricmc.fabric.api.object.builder.v1.block.entity.FabricBlockEntityTypeBuilder; import net.minecraft.block.AbstractBlock; import net.minecraft.block.Block; import net.minecraft.block.MapColor; diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_brown.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/mattress/mattress_brown.png new file mode 100644 index 0000000000000000000000000000000000000000..e019b68ff170dd705e2c2ff0c4e64b3ba64f4fca GIT binary patch literal 1216 zcmV;x1V8(UP)Px(dPzh%^`c3*m=gWCx2)?E%%!qG;59$J2LSBUw&j%muvf>?;i0Uw z`|6GKz5C;ZEZ?bZ0{}L*p3I2>`0H~^`rAQI+VwBTkw0c1x2fK{)vxV;o%_aqO^nxW zgnz#F=pjx9oi49da5pua-s{y(IRmoA9F_-zq2>x88tWYAzyDeU0Mz!sj`+Au<);-{ z#|B=um;(^zfaO6>6EV(+vSr`b`o#>%Ev2-7l)iq=coE#@^q>DGyYh3wTh?T909ahg zY0J6uro5md_}6a7CdE6USQqrV9h_;(_}4`1w0mCHW(Ao8nxEdw*bWC}I4~kn4t*gX z_Ua=iG)>`;N9KWJU(oFt>s@d-u=1I9FA`Aezx9RRLBG z>nds>Tb1vsH)i@C`0 zFRK-;ui*P~FvNLG-v-t1eKy!zIM6D9l9S7&j=eg9*hbrlc>cPvf@O-gZP z*8-fx;@Fzo|%X2)don&9*IFPpWBq)q9qlb4? zy|bL{RfPbeJ4JYEv)wojj6Sw)ei;U60My+coE%jjA8%|undpMksRio^ZW6Q`B!K9u zPxs7kVip;*Eq#of0Y@>h%^{$Rd&ZRA<6=8WMUXo?3cio>;DKlN)f Date: Tue, 29 Aug 2023 16:34:50 +0300 Subject: [PATCH 5/9] Fix brick filenames and improve block model files --- build.gradle | 4 +--- .../new_soviet/registration/NSE_Blocks.java | 19 ++++++++++++++---- .../new_soviet/registration/NSE_Items.java | 3 ++- .../models/block/aquamarine_tiles.json | 4 +--- .../models/block/beige_wallpaper.json | 4 +--- .../models/block/big_diorite_tiles.json | 4 +--- .../models/block/big_granite_tiles.json | 4 +--- .../models/block/big_green_tiles.json | 4 +--- .../block/big_green_tiles_cracked_1.json | 4 +--- .../block/big_green_tiles_cracked_2.json | 4 +--- .../block/big_green_tiles_cracked_3.json | 4 +--- .../models/block/big_sand_bricks.json | 3 +-- .../models/block/big_sand_tiles.json | 4 +--- .../models/block/big_tuff_tiles.json | 4 +--- .../new_soviet/models/block/blue_warning.json | 1 - .../new_soviet/models/block/brick_tiles.json | 8 +++----- .../models/block/brown_linoleum.json | 1 - .../models/block/brown_wallpaper.json | 4 +--- .../models/block/calcite_tiles.json | 4 +--- .../block/cracked_aquamarine_tiles.json | 4 +--- .../models/block/cracked_brick_tiles.json | 8 +++----- .../models/block/cracked_calcite_tiles.json | 4 +--- .../block/cracked_dark_brick_tiles.json | 8 +++----- .../models/block/cracked_deepslate_tiles.json | 4 +--- .../models/block/cracked_diorite_bricks.json | 4 +--- .../models/block/cracked_diorite_tiles.json | 4 +--- .../models/block/cracked_dripstone_tiles.json | 4 +--- .../cracked_glazed_aquamarine_tiles.json | 4 +--- .../block/cracked_glazed_brick_tiles.json | 4 +--- .../cracked_glazed_light_blue_tiles.json | 3 +-- .../block/cracked_glazed_teal_tiles.json | 4 +--- .../models/block/cracked_green_bricks.json | 4 +--- .../models/block/cracked_green_bricks_2.json | 4 +--- .../block/cracked_green_white_tiles.json | 1 - .../block/cracked_light_blue_bricks_1.json | 3 +-- .../block/cracked_light_blue_bricks_2.json | 3 +-- .../block/cracked_light_blue_bricks_3.json | 3 +-- .../block/cracked_light_blue_tiles.json | 3 +-- .../models/block/cracked_nii_wall_1.json | 4 +--- .../models/block/cracked_red_bricks.json | 4 +--- .../models/block/cracked_sand_bricks.json | 3 +-- .../models/block/cracked_sand_tiles.json | 1 - .../models/block/cracked_teal_tiles.json | 1 - .../models/block/cracked_tuff_bricks.json | 4 +--- .../models/block/cracked_tuff_tiles.json | 4 +--- .../models/block/cracked_whitewash.json | 4 +--- .../models/block/cross_acacia_planks.json | 1 - .../models/block/cross_birch_planks.json | 1 - .../models/block/cross_brown_linoleum.json | 1 - .../models/block/cross_crimson_planks.json | 1 - .../models/block/cross_dark_oak_planks.json | 1 - .../models/block/cross_jungle_planks.json | 1 - .../models/block/cross_mangrove_planks.json | 1 - .../models/block/cross_oak_planks.json | 1 - .../models/block/cross_orange_linoleum.json | 1 - .../models/block/cross_sand_tiles.json | 6 ++---- .../models/block/cross_spruce_planks.json | 1 - .../models/block/cyan_linoleum.json | 1 - .../new_soviet/models/block/cyan_warning.json | 1 - .../models/block/dark_brick_tiles.json | 8 +++----- .../models/block/deepslate_tiles.json | 4 +--- .../models/block/diagonal_calcite_tiles.json | 4 +--- .../block/diagonal_deepslate_tiles.json | 4 +--- .../models/block/diorite_bricks.json | 4 +--- .../models/block/diorite_tiles.json | 4 +--- .../models/block/dirty_aquamarine_tiles.json | 4 +--- .../models/block/dirty_brick_tiles.json | 8 +++----- .../models/block/dirty_dark_brick_tiles.json | 8 +++----- .../models/block/dripstone_bricks.json | 4 +--- .../models/block/dripstone_tiles.json | 4 +--- .../models/block/glazed_aquamarine_tiles.json | 4 +--- .../models/block/glazed_brick_tiles.json | 4 +--- .../models/block/glazed_light_blue_tiles.json | 3 +-- .../models/block/glazed_teal_tiles.json | 4 +--- .../models/block/gray_linoleum.json | 1 - .../new_soviet/models/block/gray_warning.json | 1 - .../new_soviet/models/block/green_bricks.json | 4 +--- .../models/block/green_bricks_2.json | 4 +--- .../models/block/green_linoleum.json | 1 - .../models/block/green_wallpaper.json | 4 +--- .../models/block/green_warning.json | 1 - .../models/block/green_white_tiles.json | 1 - .../block/herringbone_acacia_planks.json | 1 - .../block/herringbone_birch_planks.json | 1 - .../block/herringbone_crimson_planks.json | 1 - .../block/herringbone_dark_oak_planks.json | 1 - .../block/herringbone_jungle_planks.json | 1 - .../block/herringbone_mangrove_planks.json | 1 - .../models/block/herringbone_oak_planks.json | 1 - .../models/block/herringbone_parquet.json | 4 +--- .../models/block/herringbone_sand_tiles.json | 4 +--- .../block/herringbone_spruce_planks.json | 1 - .../models/block/industrial_warning.json | 1 - .../models/block/light_blue_bricks.json | 3 +-- .../models/block/light_blue_tiles.json | 3 +-- .../models/block/light_blue_warning.json | 1 - .../new_soviet/models/block/lime_warning.json | 1 - .../models/block/magenta_warning.json | 1 - .../new_soviet/models/block/meat_1.json | 4 +--- .../new_soviet/models/block/meat_2.json | 4 +--- .../new_soviet/models/block/meat_3.json | 4 +--- .../new_soviet/models/block/meat_eye.json | 4 +--- .../new_soviet/models/block/meat_teeth.json | 4 +--- .../models/block/metal_plating.json | 4 +--- .../models/block/mossy_aquamarine_tiles.json | 4 +--- .../models/block/mossy_brick_tiles.json | 8 +++----- .../models/block/mossy_calcite_tiles.json | 4 +--- .../models/block/mossy_dark_brick_tiles.json | 8 +++----- .../models/block/mossy_deepslate_tiles.json | 4 +--- .../models/block/mossy_diorite_bricks.json | 4 +--- .../models/block/mossy_diorite_tiles.json | 4 +--- .../models/block/mossy_dripstone_tiles.json | 4 +--- .../models/block/mossy_green_bricks.json | 4 +--- .../models/block/mossy_green_bricks_2.json | 4 +--- .../models/block/mossy_green_white_tiles.json | 1 - .../models/block/mossy_light_blue_bricks.json | 3 +-- .../models/block/mossy_light_blue_tiles.json | 3 +-- .../models/block/mossy_red_bricks.json | 4 +--- .../models/block/mossy_sand_bricks.json | 3 +-- .../models/block/mossy_sand_tiles.json | 4 +--- .../models/block/mossy_teal_tiles.json | 4 +--- .../models/block/mossy_tuff_bricks.json | 4 +--- .../models/block/mossy_tuff_tiles.json | 4 +--- .../new_soviet/models/block/nii_floor.json | 4 +--- .../new_soviet/models/block/nii_wall_1.json | 4 +--- .../new_soviet/models/block/nii_wall_2.json | 4 +--- .../new_soviet/models/block/nii_wall_3.json | 4 +--- .../models/block/orange_linoleum.json | 1 - .../models/block/orange_warning.json | 1 - .../models/block/purple_warning.json | 1 - .../new_soviet/models/block/red_bricks.json | 4 +--- .../new_soviet/models/block/red_linoleum.json | 1 - .../new_soviet/models/block/red_mattress.json | 3 +-- .../new_soviet/models/block/red_warning.json | 1 - .../new_soviet/models/block/sand_bricks.json | 3 +-- .../new_soviet/models/block/sand_tiles.json | 4 +--- .../models/block/separated_parquet.json | 4 +--- .../models/block/small_aquamarine_tiles.json | 4 +--- .../block/small_cracked_aquamarine_tiles.json | 4 +--- .../block/small_cracked_deepslate_tiles.json | 4 +--- .../block/small_cracked_diorite_tiles.json | 4 +--- .../block/small_cracked_granite_tiles.json | 4 +--- .../block/small_cracked_light_blue_tiles.json | 3 +-- .../block/small_cracked_sand_tiles.json | 4 +--- .../block/small_cracked_teal_tiles.json | 4 +--- .../block/small_cracked_yellow_tiles.json | 4 +--- .../models/block/small_deepslate_tiles.json | 4 +--- .../models/block/small_diorite_tiles.json | 4 +--- .../models/block/small_granite_tiles.json | 4 +--- .../models/block/small_light_blue_tiles.json | 3 +-- .../models/block/small_sand_tiles.json | 4 +--- .../models/block/small_teal_tiles.json | 4 +--- .../models/block/small_white_tiles.json | 3 +-- .../models/block/small_yellow_tiles.json | 4 +--- .../models/block/straight_parquet.json | 4 +--- .../new_soviet/models/block/teal_tiles.json | 4 +--- .../new_soviet/models/block/tuff_bricks.json | 4 +--- .../new_soviet/models/block/tuff_tiles.json | 4 +--- .../block/variated_light_blue_tiles.json | 3 +-- .../models/block/variated_teal_tiles.json | 4 +--- .../models/block/very_cracked_whitewash.json | 4 +--- .../new_soviet/models/block/whitewash.json | 4 +--- .../models/block/yellow_warning.json | 1 - .../brown_tiles.png => brick/brick_tiles.png} | Bin .../cracked_brick_tiles.png} | Bin .../cracked_dark_brick_tiles.png} | Bin .../dark_brick_tiles.png} | Bin .../dirty_brick_tiles.png} | Bin .../dirty_dark_brick_tiles.png} | Bin .../mossy_brick_tiles.png} | Bin .../mossy_dark_brick_tiles.png} | Bin 171 files changed, 154 insertions(+), 404 deletions(-) rename src/main/resources/assets/new_soviet/textures/block/{brown/brown_tiles.png => brick/brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/cracked_brown_tiles.png => brick/cracked_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/cracked_dark_brown_tiles.png => brick/cracked_dark_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/dark_brown_tiles.png => brick/dark_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/dirty_brown_tiles.png => brick/dirty_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/dirty_dark_brown_tiles.png => brick/dirty_dark_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/mossy_brown_tiles.png => brick/mossy_brick_tiles.png} (100%) rename src/main/resources/assets/new_soviet/textures/block/{brown/mossy_dark_brown_tiles.png => brick/mossy_dark_brick_tiles.png} (100%) diff --git a/build.gradle b/build.gradle index f6111f4..d8ee55f 100644 --- a/build.gradle +++ b/build.gradle @@ -88,8 +88,6 @@ publishing { from components.java } } - - // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. repositories { } } @@ -100,7 +98,7 @@ modrinth { projectId = mod_id versionNumber = mod_version versionType = "beta" // `release`, `beta`, `alpha` - uploadFile = remapJar // With Loom, this MUST be set to `remapJar` instead of `jar`! + uploadFile = remapJar gameVersions = ["1.20", "1.20.1"] loaders = ["fabric"] dependencies { diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java index c02eda3..13b69a9 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java @@ -20,6 +20,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { // BUILDING BRICKS/TILES ==================== public static final Block SAND_TILES = new Block(FabricBlockSettings.create().sounds(NSE_Sounds.SAND_TILES_SOUNDS).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.TERRACOTTA_BROWN)); public static final StairsBlock SAND_TILES_STAIRS = new StairsBlock(SAND_TILES.getDefaultState(), FabricBlockSettings.copy(SAND_TILES)); + public static final SlabBlock SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(SAND_TILES)); public static final Block CRACKED_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); public static final Block MOSSY_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); public static final Block SMALL_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); @@ -227,7 +228,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final Block MEAT = new Block(FabricBlockSettings.create().velocityMultiplier(0.8f).sounds(NSE_Sounds.MEAT_SOUNDS).nonOpaque().mapColor(MapColor.DARK_RED).hardness(8f)); public static final Block MEAT_EYE = new Block(FabricBlockSettings.copy(MEAT)); public static final Block MEAT_TEETH = new Block(FabricBlockSettings.copy(MEAT)); - public static final SnowBlock PURPLE_GOO = new SnowBlock(FabricBlockSettings.copy(MEAT).hardness(1.2f).nonOpaque()); + public static final SnowBlock PURPLE_GOO = new SnowBlock(FabricBlockSettings.copy(MEAT).mapColor(MapColor.PURPLE).hardness(1.2f).nonOpaque()); public static final HandrailBlock HANDRAIL = new HandrailBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.COPPER).hardness(4f).nonOpaque()); @@ -240,6 +241,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { Registry.register(Registries.ITEM_GROUP, new Identifier("new_soviet", "building_blocks"), NSE_BUILDING_TAB); registerBlock("sand_tiles", () -> SAND_TILES, NSE_BUILDING_TAB); registerBlock("sand_tiles_stairs", () -> SAND_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("sand_tiles_slab", () -> SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_sand_tiles", () -> CRACKED_SAND_TILES, NSE_BUILDING_TAB); registerBlock("mossy_sand_tiles", () -> MOSSY_SAND_TILES, NSE_BUILDING_TAB); registerBlock("small_sand_tiles", () -> SMALL_SAND_TILES, NSE_BUILDING_TAB); @@ -251,7 +253,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("cracked_sand_bricks", () -> CRACKED_SAND_BRICKS, NSE_BUILDING_TAB); registerBlock("mossy_sand_bricks", () -> MOSSY_SAND_BRICKS, NSE_BUILDING_TAB); registerBlock("big_sand_bricks", () -> BIG_SAND_BRICKS, NSE_BUILDING_TAB); - //brick + registerBlock("brick_tiles", () -> BRICK_TILES, NSE_BUILDING_TAB); registerBlock("cracked_brick_tiles", () -> CRACKED_BRICK_TILES, NSE_BUILDING_TAB); registerBlock("mossy_brick_tiles", () -> MOSSY_BRICK_TILES, NSE_BUILDING_TAB); @@ -265,6 +267,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("red_bricks", () -> RED_BRICKS, NSE_BUILDING_TAB); registerBlock("cracked_red_bricks", () -> CRACKED_RED_BRICKS, NSE_BUILDING_TAB); registerBlock("mossy_red_bricks", () -> MOSSY_RED_BRICKS, NSE_BUILDING_TAB); + registerBlock("teal_tiles", () -> TEAL_TILES, NSE_BUILDING_TAB); registerBlock("cracked_teal_tiles", () -> CRACKED_TEAL_TILES, NSE_BUILDING_TAB); registerBlock("mossy_teal_tiles", () -> MOSSY_TEAL_TILES, NSE_BUILDING_TAB); @@ -291,32 +294,36 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("small_cracked_aquamarine_tiles", () -> SMALL_CRACKED_AQUAMARINE_TILES, NSE_BUILDING_TAB); registerBlock("glazed_aquamarine_tiles", () -> GLAZED_AQUAMARINE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_glazed_aquamarine_tiles", () -> CRACKED_GLAZED_AQUAMARINE_TILES, NSE_BUILDING_TAB); + registerBlock("small_diorite_tiles", () -> SMALL_DIORITE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_diorite_tiles", () -> SMALL_CRACKED_DIORITE_TILES, NSE_BUILDING_TAB); registerBlock("big_diorite_tiles", () -> BIG_DIORITE_TILES, NSE_BUILDING_TAB); registerBlock("diorite_bricks", () -> DIORITE_BRICKS, NSE_BUILDING_TAB); registerBlock("cracked_diorite_bricks", () -> CRACKED_DIORITE_BRICKS, NSE_BUILDING_TAB); registerBlock("mossy_diorite_bricks", () -> MOSSY_DIORITE_BRICKS, NSE_BUILDING_TAB); + registerBlock("calcite_tiles", () -> CALCITE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_calcite_tiles", () -> CRACKED_CALCITE_TILES, NSE_BUILDING_TAB); registerBlock("mossy_calcite_tiles", () -> MOSSY_CALCITE_TILES, NSE_BUILDING_TAB); registerBlock("diagonal_calcite_tiles", () -> DIAGONAL_CALCITE_TILES, NSE_BUILDING_TAB); - //nii walls + registerBlock("nii_wall_1", () -> NII_WALL_1, NSE_BUILDING_TAB); registerBlock("cracked_nii_wall_1", () -> CRACKED_NII_WALL_1, NSE_BUILDING_TAB); registerBlock("nii_wall_2", () -> NII_WALL_2, NSE_BUILDING_TAB); registerBlock("nii_wall_3", () -> NII_WALL_3, NSE_BUILDING_TAB); - //dripstone + registerBlock("dripstone_tiles", () -> DRIPSTONE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_dripstone_tiles", () -> CRACKED_DRIPSTONE_TILES, NSE_BUILDING_TAB); registerBlock("mossy_dripstone_tiles", () -> MOSSY_DRIPSTONE_TILES, NSE_BUILDING_TAB); registerBlock("dripstone_bricks", () -> DRIPSTONE_BRICKS, NSE_BUILDING_TAB); + registerBlock("deepslate_tiles", () -> DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_deepslate_tiles", () -> CRACKED_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("mossy_deepslate_tiles", () -> MOSSY_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("small_deepslate_tiles", () -> SMALL_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_deepslate_tiles", () -> SMALL_CRACKED_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("diagonal_deepslate_tiles", () -> DIAGONAL_DEEPSLATE_TILES, NSE_BUILDING_TAB); + registerBlock("light_blue_tiles", () -> LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_light_blue_tiles", () -> CRACKED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("mossy_light_blue_tiles", () -> MOSSY_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); @@ -328,12 +335,15 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("light_blue_bricks", () -> LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); registerBlock("cracked_light_blue_bricks", () -> CRACKED_LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); registerBlock("mossy_light_blue_bricks", () -> MOSSY_LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); + registerBlock("big_granite_tiles", () -> BIG_GRANITE_TILES, NSE_BUILDING_TAB); registerBlock("small_granite_tiles", () -> SMALL_GRANITE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_granite_tiles", () -> SMALL_CRACKED_GRANITE_TILES, NSE_BUILDING_TAB); + registerBlock("green_white_tiles", () -> GREEN_WHITE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_green_white_tiles", () -> CRACKED_GREEN_WHITE_TILES, NSE_BUILDING_TAB); registerBlock("mossy_green_white_tiles", () -> MOSSY_GREEN_WHITE_TILES, NSE_BUILDING_TAB); + registerBlock("tuff_tiles", () -> TUFF_TILES, NSE_BUILDING_TAB); registerBlock("cracked_tuff_tiles", () -> CRACKED_TUFF_TILES, NSE_BUILDING_TAB); registerBlock("mossy_tuff_tiles", () -> MOSSY_TUFF_TILES, NSE_BUILDING_TAB); @@ -341,6 +351,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("tuff_bricks", () -> TUFF_BRICKS, NSE_BUILDING_TAB); registerBlock("cracked_tuff_bricks", () -> CRACKED_TUFF_BRICKS, NSE_BUILDING_TAB); registerBlock("mossy_tuff_bricks", () -> MOSSY_TUFF_BRICKS, NSE_BUILDING_TAB); + registerBlock("small_white_tiles", () -> SMALL_WHITE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_white_tiles", () -> SMALL_CRACKED_WHITE_TILES, NSE_BUILDING_TAB); registerBlock("glazed_white_tiles", () -> GLAZED_WHITE_TILES, NSE_BUILDING_TAB); diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Items.java b/src/main/java/su/a71/new_soviet/registration/NSE_Items.java index 0ff37c3..7e22dcf 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Items.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Items.java @@ -31,9 +31,10 @@ public class NSE_Items extends NSE_BaseRegistration { public static final DiceItem DICE_D20 = new DiceItem(20, "item.new_soviet.dice_d20.tooltip", new Item.Settings().maxCount(6)); public static final Item LIGHT_BULB = new Item(new Item.Settings()); - public static final Item CIGARETTE_BUTT = new Item(new Item.Settings()); + public static final Item CIGARETTE_BUTT = new Item(new Item.Settings()); public static final CigaretteItem CIGARETTE = new CigaretteItem(200, NSE_Items.CIGARETTE_BUTT, "item.new_soviet.tooltip.salute", new Item.Settings()); +// public static final MusicDiscItem BATTLE_IS_GOING_AGAIN = new MusicDiscItem(1, NSE_Sounds.MUSIC_LENIN, 123) private static final ItemGroup NSE_ITEMS_TAB = FabricItemGroup.builder() .icon(() -> new ItemStack(SICKLE)) diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles.json index b631648..2293fc5 100644 --- a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/aquamarine_tiles", "particle": "new_soviet:block/aquamarine/aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_wallpaper.json b/src/main/resources/assets/new_soviet/models/block/beige_wallpaper.json index 87ee53b..f152810 100644 --- a/src/main/resources/assets/new_soviet/models/block/beige_wallpaper.json +++ b/src/main/resources/assets/new_soviet/models/block/beige_wallpaper.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/wallpapers/beige_wallpaper", "particle": "new_soviet:block/wallpapers/beige_wallpaper" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_diorite_tiles.json index cd7d784..b7b7401 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/big_diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/big_diorite_tiles", "particle": "new_soviet:block/diorite/big_diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json index 45313b9..0253a1a 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/big_granite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/granite/big_granite_tiles", "particle": "new_soviet:block/granite/big_granite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_green_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_green_tiles.json index a471471..6af1ea7 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_green_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/big_green_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/big_green_tiles", "particle": "new_soviet:block/green/big_green_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_1.json b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_1.json index fc927fb..3639fb5 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_1.json +++ b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_1.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/variated/big_green_tiles_cracked_1", "particle": "new_soviet:block/green/variated/big_green_tiles_cracked_1" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_2.json b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_2.json index bf7aba5..c3ccaf2 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_2.json +++ b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/variated/big_green_tiles_cracked_2", "particle": "new_soviet:block/green/variated/big_green_tiles_cracked_2" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_3.json b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_3.json index 0bfdd74..a69430f 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_3.json +++ b/src/main/resources/assets/new_soviet/models/block/big_green_tiles_cracked_3.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/variated/big_green_tiles_cracked_3", "particle": "new_soviet:block/green/variated/big_green_tiles_cracked_3" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks.json index ded4c3a..ec556f1 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/sand/big_sand_bricks", "particle": "new_soviet:block/sand/big_sand_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_sand_tiles.json index 972c70f..dade456 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/big_sand_tiles", "particle": "new_soviet:block/sand/big_sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json index 55b3656..6bf7207 100644 --- a/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/big_tuff_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/big_tuff_tiles", "particle": "new_soviet:block/tuff/big_tuff_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_warning.json b/src/main/resources/assets/new_soviet/models/block/blue_warning.json index 83393e6..7331daf 100644 --- a/src/main/resources/assets/new_soviet/models/block/blue_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/blue_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/blue_warning_stripes", "particle": "new_soviet:block/industrial/blue_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles.json index 10a019f..41590a1 100644 --- a/src/main/resources/assets/new_soviet/models/block/brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/brown_tiles", - "particle": "new_soviet:block/brown/brown_tiles" - + "all": "new_soviet:block/brick/brick_tiles", + "particle": "new_soviet:block/brick/brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum.json index a57a9a0..33c9df0 100644 --- a/src/main/resources/assets/new_soviet/models/block/brown_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/brown_linoleum", "particle": "new_soviet:block/floor/linoleum/brown_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_wallpaper.json b/src/main/resources/assets/new_soviet/models/block/brown_wallpaper.json index d2d6526..addb585 100644 --- a/src/main/resources/assets/new_soviet/models/block/brown_wallpaper.json +++ b/src/main/resources/assets/new_soviet/models/block/brown_wallpaper.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/wallpapers/brown_wallpaper", "particle": "new_soviet:block/wallpapers/brown_wallpaper" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles.json index c89fc86..e4a2c60 100644 --- a/src/main/resources/assets/new_soviet/models/block/calcite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/calcite/calcite_tiles", "particle": "new_soviet:block/calcite/calcite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles.json index 3dabb54..881b679 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles.json index f7893de..b7141aa 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/cracked_brown_tiles", - "particle": "new_soviet:block/brown/cracked_brown_tiles" - + "all": "new_soviet:block/brick/cracked_brick_tiles", + "particle": "new_soviet:block/brick/cracked_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles.json index b2c23f9..d7da786 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/calcite/cracked_calcite_tiles", "particle": "new_soviet:block/calcite/cracked_calcite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles.json index 7e9cac2..855e0d3 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/cracked_dark_brown_tiles", - "particle": "new_soviet:block/brown/cracked_dark_brown_tiles" - + "all": "new_soviet:block/brick/cracked_dark_brick_tiles", + "particle": "new_soviet:block/brick/cracked_dark_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles.json index 006c2cb..d95b582 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/cracked_deepslate_tiles", "particle": "new_soviet:block/deepslate/cracked_deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks.json index c128af6..a926138 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/cracked_diorite_bricks", "particle": "new_soviet:block/diorite/cracked_diorite_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_tiles.json index 22ea328..3ce543c 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/cracked_diorite_tiles", "particle": "new_soviet:block/diorite/cracked_diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles.json index 21f7f18..2753e4a 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/dripstone/cracked_dripstone_tiles", "particle": "new_soviet:block/dripstone/cracked_dripstone_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_aquamarine_tiles.json index f94a700..86f2b6a 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/cracked_glazed_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/cracked_glazed_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_brick_tiles.json index 72e1c48..ce475d0 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_brick_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/red/cracked_glazed_red_tiles", "particle": "new_soviet:block/red/cracked_glazed_red_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json index d4a97c3..8edea10 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/cracked_glazed_light_blue_tiles", "particle": "new_soviet:block/light_blue/cracked_glazed_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_teal_tiles.json index 900b962..a7968af 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_glazed_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_glazed_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/cracked_glazed_teal_tiles", "particle": "new_soviet:block/teal/cracked_glazed_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks.json index aa72e0d..ac27b9c 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/cracked_green_bricks", "particle": "new_soviet:block/green/cracked_green_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json index cf89a41..eb62ad2 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/green_bricks_with_any_cracked", "particle": "new_soviet:block/green/green_bricks_with_any_cracked" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles.json index 830129e..7ae8a80 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/green_white/cracked_green_white_tiles", "particle": "new_soviet:block/green_white/cracked_green_white_tiles" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json index e6dd6ae..31f4878 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_1.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json index 981e292..5d4879a 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_2.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_2", "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_2" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json index ee23764..96ecffb 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_3.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_3", "particle": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_3" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles.json index dd7dafd..c57c6fe 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/cracked_light_blue_tiles", "particle": "new_soviet:block/light_blue/cracked_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_nii_wall_1.json b/src/main/resources/assets/new_soviet/models/block/cracked_nii_wall_1.json index c8d89d2..cb3bfd7 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_nii_wall_1.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_nii_wall_1.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/research_institute/cracked_nii_wall_1", "particle": "new_soviet:block/research_institute/cracked_nii_wall_1" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks.json index 2ade537..089d415 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/red/cracked_red_bricks", "particle": "new_soviet:block/red/cracked_red_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks.json index c39d9fe..8bba23d 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/sand/cracked_sand_bricks", "particle": "new_soviet:block/sand/cracked_sand_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles.json index 9f14ed2..2746be4 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/sand/cracked_sand_tiles", "particle": "new_soviet:block/sand/cracked_sand_tiles" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles.json index da1c2d2..3519d9b 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/teal/cracked_teal_tiles", "particle": "new_soviet:block/teal/cracked_teal_tiles" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json index aa41cbb..3f34310 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/cracked_tuff_bricks", "particle": "new_soviet:block/tuff/cracked_tuff_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json index fdc35c7..5683595 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/cracked_tuff_tiles", "particle": "new_soviet:block/tuff/cracked_tuff_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_whitewash.json b/src/main/resources/assets/new_soviet/models/block/cracked_whitewash.json index 0fa8c38..b0ca783 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_whitewash.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_whitewash.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/whitewash/cracked_whitewash", "particle": "new_soviet:block/whitewash/cracked_whitewash" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks.json index 6082957..5061298 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_acacia_planks", "particle": "new_soviet:block/floor/planks/cross_acacia_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks.json index decb003..334edaf 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_birch_planks", "particle": "new_soviet:block/floor/planks/cross_birch_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_brown_linoleum.json b/src/main/resources/assets/new_soviet/models/block/cross_brown_linoleum.json index 0c86ac6..baf7441 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_brown_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_brown_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/cross_brown_linoleum", "particle": "new_soviet:block/floor/linoleum/cross_brown_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks.json index 0656e63..2c4ff46 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_crimson_planks", "particle": "new_soviet:block/floor/planks/cross_crimson_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks.json index ce09cf3..6bca8ff 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_dark_oak_planks", "particle": "new_soviet:block/floor/planks/cross_dark_oak_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks.json index 885b129..f7b8537 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_jungle_planks", "particle": "new_soviet:block/floor/planks/cross_jungle_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks.json index b07685c..37a4355 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_mangrove_planks", "particle": "new_soviet:block/floor/planks/cross_mangrove_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks.json index 7cc3112..90a2020 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_oak_planks", "particle": "new_soviet:block/floor/planks/cross_oak_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_orange_linoleum.json b/src/main/resources/assets/new_soviet/models/block/cross_orange_linoleum.json index 3a9cd75..9b966f4 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_orange_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_orange_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/cross_orange_linoleum", "particle": "new_soviet:block/floor/linoleum/cross_orange_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles.json index 7bfb9ef..f19eda0 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles.json @@ -2,8 +2,6 @@ "parent": "block/cube_all", "textures": { "all": "new_soviet:block/sand/cross_sand_tiles", - "particle": "new_soviet:block/sand/cross_sand_tiles" - + "prticle": "new_soviet:block/sand/cross_sand_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks.json index b5f6489..a282b74 100644 --- a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/cross_spruce_planks", "particle": "new_soviet:block/floor/planks/cross_spruce_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum.json index 520f2b4..d28af8e 100644 --- a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/cyan_linoleum", "particle": "new_soviet:block/floor/linoleum/cyan_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_warning.json b/src/main/resources/assets/new_soviet/models/block/cyan_warning.json index cee0e8d..c2b1ace 100644 --- a/src/main/resources/assets/new_soviet/models/block/cyan_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/cyan_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/cyan_warning_stripes", "particle": "new_soviet:block/industrial/cyan_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles.json index 616f6d4..9aa4b08 100644 --- a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/dark_brown_tiles", - "particle": "new_soviet:block/brown/dark_brown_tiles" - + "all": "new_soviet:block/brick/dark_brick_tiles", + "particle": "new_soviet:block/brick/dark_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles.json index e80e9c8..3d04145 100644 --- a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/deepslate_tiles", "particle": "new_soviet:block/deepslate/deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diagonal_calcite_tiles.json b/src/main/resources/assets/new_soviet/models/block/diagonal_calcite_tiles.json index ce12a60..641237b 100644 --- a/src/main/resources/assets/new_soviet/models/block/diagonal_calcite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/diagonal_calcite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/calcite/diagonal_calcite_tiles", "particle": "new_soviet:block/calcite/diagonal_calcite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diagonal_deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/diagonal_deepslate_tiles.json index 7e1e782..500dbd0 100644 --- a/src/main/resources/assets/new_soviet/models/block/diagonal_deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/diagonal_deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/diagonal_deepslate_tiles", "particle": "new_soviet:block/deepslate/diagonal_deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks.json index 08d9be5..a39cb37 100644 --- a/src/main/resources/assets/new_soviet/models/block/diorite_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/diorite_bricks", "particle": "new_soviet:block/diorite/diorite_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/diorite_tiles.json index 7db3d0c..eb7eac2 100644 --- a/src/main/resources/assets/new_soviet/models/block/diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/diorite_tiles", "particle": "new_soviet:block/diorite/diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles.json index 92617b7..bccf2a0 100644 --- a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles.json index 9a93e9f..cda9e6a 100644 --- a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/dirty_brown_tiles", - "particle": "new_soviet:block/brown/dirty_brown_tiles" - + "all": "new_soviet:block/brick/dirty_brick_tiles", + "particle": "new_soviet:block/brick/dirty_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles.json index 39c6af1..b0e59e8 100644 --- a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/dirty_dark_brown_tiles", - "particle": "new_soviet:block/brown/dirty_dark_brown_tiles" - + "all": "new_soviet:block/brick/dirty_dark_brick_tiles", + "particle": "new_soviet:block/brick/dirty_dark_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_bricks.json b/src/main/resources/assets/new_soviet/models/block/dripstone_bricks.json index 2ebeadf..107f336 100644 --- a/src/main/resources/assets/new_soviet/models/block/dripstone_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/dripstone/dripstone_bricks", "particle": "new_soviet:block/dripstone/dripstone_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles.json index ef0db01..9c06414 100644 --- a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/dripstone/dripstone_tiles", "particle": "new_soviet:block/dripstone/dripstone_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/glazed_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/glazed_aquamarine_tiles.json index 6682e4d..87a656f 100644 --- a/src/main/resources/assets/new_soviet/models/block/glazed_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/glazed_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/glazed_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/glazed_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/glazed_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/glazed_brick_tiles.json index 97ceea5..dd60ed2 100644 --- a/src/main/resources/assets/new_soviet/models/block/glazed_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/glazed_brick_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/red/glazed_red_tiles", "particle": "new_soviet:block/red/glazed_red_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json index e44044b..19b79dc 100644 --- a/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/glazed_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/glazed_light_blue_tiles", "particle": "new_soviet:block/light_blue/glazed_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/glazed_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/glazed_teal_tiles.json index dd8414a..2ec440d 100644 --- a/src/main/resources/assets/new_soviet/models/block/glazed_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/glazed_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/glazed_teal_tiles", "particle": "new_soviet:block/teal/glazed_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum.json index 4e0a48c..c056e35 100644 --- a/src/main/resources/assets/new_soviet/models/block/gray_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/gray_linoleum", "particle": "new_soviet:block/floor/linoleum/gray_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_warning.json b/src/main/resources/assets/new_soviet/models/block/gray_warning.json index 4ee1337..9b6bc7b 100644 --- a/src/main/resources/assets/new_soviet/models/block/gray_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/gray_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/gray_warning_stripes", "particle": "new_soviet:block/industrial/gray_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks.json b/src/main/resources/assets/new_soviet/models/block/green_bricks.json index e2de718..5181e26 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/green_bricks", "particle": "new_soviet:block/green/green_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2.json index a745589..7498cb2 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_bricks_2.json +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/green_bricks_with_any", "particle": "new_soviet:block/green/green_bricks_with_any" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum.json index 64631ff..161179c 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/green_linoleum", "particle": "new_soviet:block/floor/linoleum/green_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_wallpaper.json b/src/main/resources/assets/new_soviet/models/block/green_wallpaper.json index d7b2e0b..ace0fb4 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_wallpaper.json +++ b/src/main/resources/assets/new_soviet/models/block/green_wallpaper.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/wallpapers/green_wallpaper", "particle": "new_soviet:block/wallpapers/green_wallpaper" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_warning.json b/src/main/resources/assets/new_soviet/models/block/green_warning.json index 4cb1280..402128e 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/green_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/green_warning_stripes", "particle": "new_soviet:block/industrial/green_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles.json index 49ad735..ec3e5b0 100644 --- a/src/main/resources/assets/new_soviet/models/block/green_white_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/green_white/green_white_tiles", "particle": "new_soviet:block/green_white/green_white_tiles" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks.json index 26f2b97..f6232c3 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_acacia_planks", "particle": "new_soviet:block/floor/planks/herringbone_acacia_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks.json index 8b732cb..7b83aed 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_birch_planks", "particle": "new_soviet:block/floor/planks/herringbone_birch_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks.json index 576344d..5c1101a 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_crimson_planks", "particle": "new_soviet:block/floor/planks/herringbone_crimson_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks.json index fbdc7a2..ac7f92c 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", "particle": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks.json index 7369196..5acc306 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_jungle_planks", "particle": "new_soviet:block/floor/planks/herringbone_jungle_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks.json index a0c50b2..efc02b1 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_mangrove_planks", "particle": "new_soviet:block/floor/planks/herringbone_mangrove_planks" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks.json index 1ecdc6a..b00298a 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_oak_planks", "particle": "new_soviet:block/floor/planks/herringbone_oak_planks" - } } \ 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 index 7ea947f..38a96c0 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_parquet", "particle": "new_soviet:block/floor/planks/herringbone_parquet" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles.json index c91c278..5df1c5b 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/herringbone_sand_tiles", "particle": "new_soviet:block/sand/herringbone_sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks.json index d0dd1f4..3463081 100644 --- a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks.json +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/herringbone_spruce_planks", "particle": "new_soviet:block/floor/planks/herringbone_spruce_planks" - } } \ No newline at end of file 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 94b7925..ef7f5f0 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 @@ -3,6 +3,5 @@ "textures": { "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/light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json index 129b2f0..93c7867 100644 --- a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/light_blue_bricks", "particle": "new_soviet:block/light_blue/light_blue_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles.json index e9717fb..dc8562f 100644 --- a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/light_blue_tiles", "particle": "new_soviet:block/light_blue/light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json b/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json index a1a8df0..b70d761 100644 --- a/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/light_blue_warning_stripes", "particle": "new_soviet:block/industrial/light_blue_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/lime_warning.json b/src/main/resources/assets/new_soviet/models/block/lime_warning.json index da721ad..7621685 100644 --- a/src/main/resources/assets/new_soviet/models/block/lime_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/lime_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/lime_warning_stripes", "particle": "new_soviet:block/industrial/lime_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/magenta_warning.json b/src/main/resources/assets/new_soviet/models/block/magenta_warning.json index 33d256c..926e5b9 100644 --- a/src/main/resources/assets/new_soviet/models/block/magenta_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/magenta_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/magenta_warning_stripes", "particle": "new_soviet:block/industrial/magenta_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/meat_1.json b/src/main/resources/assets/new_soviet/models/block/meat_1.json index b9e9bd2..89037c3 100644 --- a/src/main/resources/assets/new_soviet/models/block/meat_1.json +++ b/src/main/resources/assets/new_soviet/models/block/meat_1.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/meat/meat", "particle": "new_soviet:block/meat/meat" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/meat_2.json b/src/main/resources/assets/new_soviet/models/block/meat_2.json index 9f77014..4c050fd 100644 --- a/src/main/resources/assets/new_soviet/models/block/meat_2.json +++ b/src/main/resources/assets/new_soviet/models/block/meat_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/meat/meat2", "particle": "new_soviet:block/meat/meat2" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/meat_3.json b/src/main/resources/assets/new_soviet/models/block/meat_3.json index b6ffea9..8c3a731 100644 --- a/src/main/resources/assets/new_soviet/models/block/meat_3.json +++ b/src/main/resources/assets/new_soviet/models/block/meat_3.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/meat/meat3", "particle": "new_soviet:block/meat/meat3" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/meat_eye.json b/src/main/resources/assets/new_soviet/models/block/meat_eye.json index c72c72b..698cd93 100644 --- a/src/main/resources/assets/new_soviet/models/block/meat_eye.json +++ b/src/main/resources/assets/new_soviet/models/block/meat_eye.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/meat/meat_eye", "particle": "new_soviet:block/meat/meat" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/meat_teeth.json b/src/main/resources/assets/new_soviet/models/block/meat_teeth.json index bff691b..50269a8 100644 --- a/src/main/resources/assets/new_soviet/models/block/meat_teeth.json +++ b/src/main/resources/assets/new_soviet/models/block/meat_teeth.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/meat/meat_teeth", "particle": "new_soviet:block/meat/meat" - } -} - +} \ 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 index 89b1b6b..56f04cb 100644 --- a/src/main/resources/assets/new_soviet/models/block/metal_plating.json +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/metal_plating", "particle": "new_soviet:block/industrial/metal_plating" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles.json index 0b6e3a6..d085b22 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles.json index b713511..b5bf8ba 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/mossy_brown_tiles", - "particle": "new_soviet:block/brown/mossy_brown_tiles" - + "all": "new_soviet:block/brick/mossy_brick_tiles", + "particle": "new_soviet:block/brick/mossy_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles.json index 5c67a25..b538b0d 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/calcite/mossy_calcite_tiles", "particle": "new_soviet:block/calcite/mossy_calcite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles.json index 0acdb96..a79436c 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles.json @@ -1,9 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/brown/mossy_dark_brown_tiles", - "particle": "new_soviet:block/brown/mossy_dark_brown_tiles" - + "all": "new_soviet:block/brick/mossy_dark_brick_tiles", + "particle": "new_soviet:block/brick/mossy_dark_brick_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles.json index 27cf575..fa97bb4 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/mossy_deepslate_tiles", "particle": "new_soviet:block/deepslate/mossy_deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks.json index 7332ea9..ea13138 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/mossy_diorite_bricks", "particle": "new_soviet:block/diorite/mossy_diorite_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_tiles.json index 8d885da..9d39d19 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/mossy_diorite_tiles", "particle": "new_soviet:block/diorite/mossy_diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles.json index 236d1af..dba19cf 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/dripstone/mossy_dripstone_tiles", "particle": "new_soviet:block/dripstone/mossy_dripstone_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks.json index 28b99ac..8843b6d 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/mossy_green_bricks", "particle": "new_soviet:block/green/mossy_green_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2.json index 79f564a..1187969 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/green/mossy_green_bricks_with_any", "particle": "new_soviet:block/green/mossy_green_bricks_with_any" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles.json index f1b48d8..f7c4f0f 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/green_white/mossy_green_white_tiles", "particle": "new_soviet:block/green_white/mossy_green_white_tiles" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json index 7ebb7f7..f924725 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/mossy_light_blue_bricks", "particle": "new_soviet:block/light_blue/mossy_light_blue_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles.json index e0d79c6..f4ab9c7 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/mossy_light_blue_tiles", "particle": "new_soviet:block/light_blue/mossy_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks.json index ba6caa1..fd41582 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/red/mossy_red_bricks", "particle": "new_soviet:block/red/mossy_red_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks.json index c93517b..4813200 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/sand/mossy_sand_bricks", "particle": "new_soviet:block/sand/mossy_sand_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles.json index 81dff76..4f7c1d4 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/mossy_sand_tiles", "particle": "new_soviet:block/sand/mossy_sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles.json index 0807cda..b118219 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/mossy_teal_tiles", "particle": "new_soviet:block/teal/mossy_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json index 346bfe7..d84f65b 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/mossy_tuff_bricks", "particle": "new_soviet:block/tuff/mossy_tuff_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json index 449b067..cfb2de1 100644 --- a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/mossy_tuff_tiles", "particle": "new_soviet:block/tuff/mossy_tuff_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor.json b/src/main/resources/assets/new_soviet/models/block/nii_floor.json index c287156..e82adcf 100644 --- a/src/main/resources/assets/new_soviet/models/block/nii_floor.json +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/research_institute/nii_floor", "particle": "new_soviet:block/research_institute/nii_floor" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_wall_1.json b/src/main/resources/assets/new_soviet/models/block/nii_wall_1.json index 52d519c..71929b2 100644 --- a/src/main/resources/assets/new_soviet/models/block/nii_wall_1.json +++ b/src/main/resources/assets/new_soviet/models/block/nii_wall_1.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/research_institute/nii_wall_1", "particle": "new_soviet:block/research_institute/nii_wall_1" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_wall_2.json b/src/main/resources/assets/new_soviet/models/block/nii_wall_2.json index 3b2a4f8..221cd79 100644 --- a/src/main/resources/assets/new_soviet/models/block/nii_wall_2.json +++ b/src/main/resources/assets/new_soviet/models/block/nii_wall_2.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/research_institute/nii_wall2", "particle": "new_soviet:block/research_institute/nii_wall2" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_wall_3.json b/src/main/resources/assets/new_soviet/models/block/nii_wall_3.json index 24ef7ca..3c5b5c1 100644 --- a/src/main/resources/assets/new_soviet/models/block/nii_wall_3.json +++ b/src/main/resources/assets/new_soviet/models/block/nii_wall_3.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/research_institute/nii_wall3", "particle": "new_soviet:block/research_institute/nii_wall3" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum.json index bc8c6bb..77d8969 100644 --- a/src/main/resources/assets/new_soviet/models/block/orange_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/orange_linoleum", "particle": "new_soviet:block/floor/linoleum/orange_linoleum" - } } \ No newline at end of file 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 c2dd93c..92cff7f 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 @@ -3,6 +3,5 @@ "textures": { "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/purple_warning.json b/src/main/resources/assets/new_soviet/models/block/purple_warning.json index 39c2822..b657cff 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/purple_warning_stripes", "particle": "new_soviet:block/industrial/purple_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks.json b/src/main/resources/assets/new_soviet/models/block/red_bricks.json index 82bf01c..8a2c928 100644 --- a/src/main/resources/assets/new_soviet/models/block/red_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/red/red_bricks", "particle": "new_soviet:block/red/red_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum.json index c4b4820..0f72e9c 100644 --- a/src/main/resources/assets/new_soviet/models/block/red_linoleum.json +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/floor/linoleum/red_linoleum", "particle": "new_soviet:block/floor/linoleum/red_linoleum" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_mattress.json b/src/main/resources/assets/new_soviet/models/block/red_mattress.json index 4b440ea..91cce47 100644 --- a/src/main/resources/assets/new_soviet/models/block/red_mattress.json +++ b/src/main/resources/assets/new_soviet/models/block/red_mattress.json @@ -4,5 +4,4 @@ "11": "minecraft:block/custom/mattress/mattress_red", "particle": "minecraft:block/custom/mattress/mattress_red" } -} - +} \ 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 fced728..c4e626d 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 @@ -3,6 +3,5 @@ "textures": { "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/block/sand_bricks.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks.json index b6658fb..42f8b3f 100644 --- a/src/main/resources/assets/new_soviet/models/block/sand_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/sand/sand_bricks", "particle": "new_soviet:block/sand/sand_bricks" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles.json index 06989d7..d72b41b 100644 --- a/src/main/resources/assets/new_soviet/models/block/sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/sand_tiles", "particle": "new_soviet:block/sand/sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet.json index 182813d..c3b59cc 100644 --- a/src/main/resources/assets/new_soviet/models/block/separated_parquet.json +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/separated_parquet", "particle": "new_soviet:block/floor/planks/separated_parquet" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_aquamarine_tiles.json index 3790ee8..6edfb1d 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/small_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/small_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_aquamarine_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_aquamarine_tiles.json index c429a27..1b36356 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_aquamarine_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_aquamarine_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/aquamarine/small_cracked_aquamarine_tiles", "particle": "new_soviet:block/aquamarine/small_cracked_aquamarine_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_deepslate_tiles.json index 95ffe4f..5a1a60d 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/small_cracked_deepslate_tiles", "particle": "new_soviet:block/deepslate/small_cracked_deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_diorite_tiles.json index dd003c5..461b0c9 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/small_cracked_diorite_tiles", "particle": "new_soviet:block/diorite/small_cracked_diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json index b24af4b..1c0bdfe 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_granite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/granite/small_cracked_granite_tiles", "particle": "new_soviet:block/granite/small_cracked_granite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_light_blue_tiles.json index 02296d1..73d4951 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/small_cracked_light_blue_tiles", "particle": "new_soviet:block/light_blue/small_cracked_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_sand_tiles.json index 63a49d5..6da1b2c 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/small_cracked_sand_tiles", "particle": "new_soviet:block/sand/small_cracked_sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_teal_tiles.json index dee3b22..003f5e7 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/small_cracked_teal_tiles", "particle": "new_soviet:block/teal/small_cracked_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_cracked_yellow_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_cracked_yellow_tiles.json index 39f87f2..eb2547c 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_cracked_yellow_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_cracked_yellow_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/yellow/small_cracked_yellow_tiles", "particle": "new_soviet:block/yellow/small_cracked_yellow_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_deepslate_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_deepslate_tiles.json index 1f92cf2..bb994a0 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_deepslate_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_deepslate_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/deepslate/small_deepslate_tiles", "particle": "new_soviet:block/deepslate/small_deepslate_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_diorite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_diorite_tiles.json index 6cd9044..b4dbd95 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_diorite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_diorite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/diorite/small_diorite_tiles", "particle": "new_soviet:block/diorite/small_diorite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json index 9a56680..1def467 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_granite_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/granite/small_granite_tiles", "particle": "new_soviet:block/granite/small_granite_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_light_blue_tiles.json index ab46e13..f158f77 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/small_light_blue_tiles", "particle": "new_soviet:block/light_blue/small_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_sand_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_sand_tiles.json index 985716f..3da1acf 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_sand_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_sand_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/sand/small_sand_tiles", "particle": "new_soviet:block/sand/small_sand_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_teal_tiles.json index 80c59fa..1110c27 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/small_teal_tiles", "particle": "new_soviet:block/teal/small_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_white_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_white_tiles.json index 6d34608..a0382d8 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_white_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_white_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/white/small_white_tiles", "particle": "new_soviet:block/white/small_white_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/small_yellow_tiles.json b/src/main/resources/assets/new_soviet/models/block/small_yellow_tiles.json index f87ea2b..babdcb9 100644 --- a/src/main/resources/assets/new_soviet/models/block/small_yellow_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/small_yellow_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/yellow/small_yellow_tiles", "particle": "new_soviet:block/yellow/small_yellow_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet.json index 85eeaa3..ba95815 100644 --- a/src/main/resources/assets/new_soviet/models/block/straight_parquet.json +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/floor/planks/straight_parquet", "particle": "new_soviet:block/floor/planks/straight_parquet" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles.json index fb500ca..c182b40 100644 --- a/src/main/resources/assets/new_soviet/models/block/teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/teal_tiles", "particle": "new_soviet:block/teal/teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json index 2eadd31..2999360 100644 --- a/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/tuff_bricks", "particle": "new_soviet:block/tuff/tuff_bricks" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json index c331a44..9114d44 100644 --- a/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/tuff/tuff_tiles", "particle": "new_soviet:block/tuff/tuff_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles.json index 1c49917..0f378c4 100644 --- a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles.json @@ -4,5 +4,4 @@ "all": "new_soviet:block/light_blue/variated_light_blue_tiles", "particle": "new_soviet:block/light_blue/variated_light_blue_tiles" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles.json index 66ad9ae..29eb490 100644 --- a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles.json +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/teal/variated_teal_tiles", "particle": "new_soviet:block/teal/variated_teal_tiles" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/very_cracked_whitewash.json b/src/main/resources/assets/new_soviet/models/block/very_cracked_whitewash.json index f637daf..7d859bb 100644 --- a/src/main/resources/assets/new_soviet/models/block/very_cracked_whitewash.json +++ b/src/main/resources/assets/new_soviet/models/block/very_cracked_whitewash.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/whitewash/very_cracked_whitewash", "particle": "new_soviet:block/whitewash/very_cracked_whitewash" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/whitewash.json b/src/main/resources/assets/new_soviet/models/block/whitewash.json index 8afa0c4..75b7e13 100644 --- a/src/main/resources/assets/new_soviet/models/block/whitewash.json +++ b/src/main/resources/assets/new_soviet/models/block/whitewash.json @@ -3,7 +3,5 @@ "textures": { "all": "new_soviet:block/whitewash/whitewash", "particle": "new_soviet:block/whitewash/whitewash" - } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_warning.json b/src/main/resources/assets/new_soviet/models/block/yellow_warning.json index f5920c5..a8d2339 100644 --- a/src/main/resources/assets/new_soviet/models/block/yellow_warning.json +++ b/src/main/resources/assets/new_soviet/models/block/yellow_warning.json @@ -3,6 +3,5 @@ "textures": { "all": "new_soviet:block/industrial/yellow_warning_stripes", "particle": "new_soviet:block/industrial/yellow_warning_stripes" - } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/cracked_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/cracked_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/cracked_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/cracked_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/cracked_dark_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/cracked_dark_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/cracked_dark_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/cracked_dark_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dark_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/dark_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dark_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/dark_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dirty_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/dirty_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dirty_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/dirty_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/dirty_dark_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/dirty_dark_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/dirty_dark_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/dirty_dark_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/mossy_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/mossy_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/mossy_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/mossy_brick_tiles.png diff --git a/src/main/resources/assets/new_soviet/textures/block/brown/mossy_dark_brown_tiles.png b/src/main/resources/assets/new_soviet/textures/block/brick/mossy_dark_brick_tiles.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/brown/mossy_dark_brown_tiles.png rename to src/main/resources/assets/new_soviet/textures/block/brick/mossy_dark_brick_tiles.png From fc5097e35446b38b7ec9f69baaffc7eac148a76f Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Tue, 29 Aug 2023 17:05:30 +0300 Subject: [PATCH 6/9] Improve dice, fix models and lang --- src/main/java/su/a71/new_soviet/Config.java | 5 +++++ src/main/java/su/a71/new_soviet/items/DiceItem.java | 4 +++- .../resources/assets/new_soviet/blockstates/radio.json | 8 -------- .../assets/new_soviet/blockstates/radio_receiver.json | 8 ++++++++ src/main/resources/assets/new_soviet/lang/en_us.json | 9 +++++++-- .../models/block/{radio.json => radio_receiver.json} | 0 6 files changed, 23 insertions(+), 11 deletions(-) delete mode 100644 src/main/resources/assets/new_soviet/blockstates/radio.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/radio_receiver.json rename src/main/resources/assets/new_soviet/models/block/{radio.json => radio_receiver.json} (100%) diff --git a/src/main/java/su/a71/new_soviet/Config.java b/src/main/java/su/a71/new_soviet/Config.java index 2bf1ac9..2ece446 100644 --- a/src/main/java/su/a71/new_soviet/Config.java +++ b/src/main/java/su/a71/new_soviet/Config.java @@ -4,6 +4,7 @@ import java.io.*; public class Config { private boolean invert_lamps = false; + private boolean announce_dice = false; public static Config INSTANCE; @@ -14,9 +15,13 @@ public class Config { public boolean shouldInvertLamps() { return invert_lamps; } + public boolean shouldAnnounceDice() { + return announce_dice; + } private static void generateDefault() { + NewSoviet.LOG.info("Generated config file at config/new_soviet.json"); File file = new File("config/new_soviet.json"); if(!file.getParentFile().exists()) { file.getParentFile().mkdirs(); diff --git a/src/main/java/su/a71/new_soviet/items/DiceItem.java b/src/main/java/su/a71/new_soviet/items/DiceItem.java index d5bcf22..727d953 100644 --- a/src/main/java/su/a71/new_soviet/items/DiceItem.java +++ b/src/main/java/su/a71/new_soviet/items/DiceItem.java @@ -13,6 +13,8 @@ import net.minecraft.world.World; import org.jetbrains.annotations.Nullable; import java.util.List; + +import su.a71.new_soviet.Config; import su.a71.new_soviet.NewSoviet; import su.a71.new_soviet.registration.NSE_Sounds; @@ -35,7 +37,7 @@ public class DiceItem extends Item { world.playSound((PlayerEntity)null, user.getX(), user.getY(), user.getZ(), NSE_Sounds.DICE_SOUND, SoundCategory.NEUTRAL, 0.5F, 0.4F / (world.getRandom().nextFloat() * 0.4F + 0.8F)); output.append(NewSoviet.RANDOM.nextBetween(1, this.getSides())).append(", "); } - user.sendMessage(Text.translatable(itemStack.getCount() == 1 ? "item.new_soviet.dice.thrown" : "item.new_soviet.dice.thrown_multiple").append(" " + output.subSequence(0, output.length() - 2))); + user.sendMessage(Text.translatable(itemStack.getCount() == 1 ? "item.new_soviet.dice.thrown" : "item.new_soviet.dice.thrown_multiple").append(" " + output.subSequence(0, output.length() - 2)), Config.INSTANCE.shouldAnnounceDice()); } user.increaseStat(Stats.USED.getOrCreateStat(this), itemStack.getCount()); diff --git a/src/main/resources/assets/new_soviet/blockstates/radio.json b/src/main/resources/assets/new_soviet/blockstates/radio.json deleted file mode 100644 index 0545cb2..0000000 --- a/src/main/resources/assets/new_soviet/blockstates/radio.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "variants": { - "facing=north": { "model": "new_soviet:block/radio", "uvlock": true }, - "facing=east": { "model": "new_soviet:block/radio", "y": 90, "uvlock": false }, - "facing=south": { "model": "new_soviet:block/radio", "y": 180, "uvlock": false }, - "facing=west": { "model": "new_soviet:block/radio", "y": 270, "uvlock": false } - } -} diff --git a/src/main/resources/assets/new_soviet/blockstates/radio_receiver.json b/src/main/resources/assets/new_soviet/blockstates/radio_receiver.json new file mode 100644 index 0000000..55c7bd4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/radio_receiver.json @@ -0,0 +1,8 @@ +{ + "variants": { + "facing=north": { "model": "new_soviet:block/radio_receiver", "uvlock": true }, + "facing=east": { "model": "new_soviet:block/radio_receiver", "y": 90, "uvlock": false }, + "facing=south": { "model": "new_soviet:block/radio_receiver", "y": 180, "uvlock": false }, + "facing=west": { "model": "new_soviet:block/radio_receiver", "y": 270, "uvlock": false } + } +} diff --git a/src/main/resources/assets/new_soviet/lang/en_us.json b/src/main/resources/assets/new_soviet/lang/en_us.json index 79a1599..0ff90b7 100644 --- a/src/main/resources/assets/new_soviet/lang/en_us.json +++ b/src/main/resources/assets/new_soviet/lang/en_us.json @@ -146,7 +146,7 @@ "block.new_soviet.tv": "TV", "block.new_soviet.red_tv": "Red TV", "block.new_soviet.brown_tv": "Brown TV", - "block.new_soviet.radio": "Radio", + "block.new_soviet.radio_receiver": "Radio", "block.new_soviet.lamp": "Lamp", "block.new_soviet.ceiling_fan": "Ceiling Fan", "block.new_soviet.siren": "Siren", @@ -223,5 +223,10 @@ "block.new_soviet.black_queen": "Black Queen", "block.new_soviet.black_pawn": "Black Pawn", "block.new_soviet.handrail": "Handrail", - "subtitles.new_soviet.smoking": "Cigarette smoking" + "subtitles.new_soviet.smoking": "Cigarette smoking", + "block.new_soviet.small_white_tiles": "Small White Tiles", + "block.new_soviet.small_cracked_white_tiles": "Small Cracked White Tiles", + "block.new_soviet.glazed_white_tiles": "Glazed White Tiles", + "block.new_soviet.crackedglazed_white_tiles": "Cracked Glazed White Tiles" + } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/radio.json b/src/main/resources/assets/new_soviet/models/block/radio_receiver.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/radio.json rename to src/main/resources/assets/new_soviet/models/block/radio_receiver.json From 259eaaa1c08c7515c75dba0fad00686ec838d82b Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Tue, 29 Aug 2023 17:37:57 +0300 Subject: [PATCH 7/9] Move flammable reg out of init --- .../java/su/a71/new_soviet/registration/NSE_Blocks.java | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java index 13b69a9..cebd5d1 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java @@ -436,7 +436,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("metal_plating", () -> METAL_PLATING, NSE_BUILDING_TAB); registerBlock("crate", () -> CRATE, NSE_BUILDING_TAB); - registerBlock("concrete_wall", () -> CONCRETE_WALL, NSE_BUILDING_TAB); // TODO: Broken + registerBlock("concrete_wall", () -> CONCRETE_WALL, NSE_BUILDING_TAB); // FIXME: 29.08.2023 This wall's top texture is a bit broken registerBlock("green_wallpaper", () -> GREEN_WALLPAPER, NSE_BUILDING_TAB); registerBlock("brown_wallpaper", () -> BROWN_WALLPAPER, NSE_BUILDING_TAB); @@ -448,7 +448,10 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("purple_goo", () -> PURPLE_GOO, NSE_BUILDING_TAB); registerBlock("handrail", () -> HANDRAIL, NSE_BUILDING_TAB); - // Flammable blocks! + flammableInit(); + } + + public static void flammableInit() { FlammableBlockRegistry flammableBlockRegistry = FlammableBlockRegistry.getDefaultInstance(); flammableBlockRegistry.add(HERRINGBONE_ACACIA_PLANKS, 20, 5); flammableBlockRegistry.add(CROSS_ACACIA_PLANKS, 20, 5); From cef9c6a5783a33266e2edbc98df63ac8bc3c4b76 Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Tue, 29 Aug 2023 18:47:05 +0300 Subject: [PATCH 8/9] Add stairs and slabs --- .../minecraft/tags/blocks/mineable/axe.json | 54 +- .../tags/blocks/mineable/pickaxe.json | 154 +++- .../aquamarine_tiles_slab.json | 35 + .../aquamarine_tiles_stairs.json | 35 + .../building_blocks/beige_concrete_slab.json | 35 + .../beige_concrete_stairs.json | 35 + .../building_blocks/big_sand_bricks_slab.json | 35 + .../big_sand_bricks_stairs.json | 35 + .../building_blocks/blue_concrete_slab.json | 35 + .../building_blocks/blue_concrete_stairs.json | 35 + .../building_blocks/blue_linoleum_slab.json | 35 + .../building_blocks/blue_linoleum_stairs.json | 35 + .../building_blocks/brick_tiles_slab.json | 35 + .../building_blocks/brick_tiles_stairs.json | 35 + .../building_blocks/brown_linoleum_slab.json | 35 + .../brown_linoleum_stairs.json | 35 + .../building_blocks/calcite_tiles_slab.json | 35 + .../building_blocks/calcite_tiles_stairs.json | 35 + .../cracked_aquamarine_tiles_slab.json | 35 + .../cracked_aquamarine_tiles_stairs.json | 35 + .../cracked_beige_concrete_slab.json | 35 + .../cracked_beige_concrete_stairs.json | 35 + .../cracked_blue_concrete_slab.json | 35 + .../cracked_blue_concrete_stairs.json | 35 + .../cracked_brick_tiles_slab.json | 35 + .../cracked_brick_tiles_stairs.json | 35 + .../cracked_calcite_tiles_slab.json | 35 + .../cracked_calcite_tiles_stairs.json | 35 + .../cracked_dark_brick_tiles_slab.json | 35 + .../cracked_dark_brick_tiles_stairs.json | 35 + .../cracked_deepslate_tiles_slab.json | 35 + .../cracked_deepslate_tiles_stairs.json | 35 + .../cracked_diorite_bricks_slab.json | 35 + .../cracked_diorite_bricks_stairs.json | 35 + .../cracked_dripstone_tiles_slab.json | 35 + .../cracked_dripstone_tiles_stairs.json | 35 + .../cracked_green_bricks_2_slab.json | 35 + .../cracked_green_bricks_2_stairs.json | 35 + .../cracked_green_bricks_slab.json | 35 + .../cracked_green_bricks_stairs.json | 35 + .../cracked_green_concrete_slab.json | 35 + .../cracked_green_concrete_stairs.json | 35 + .../cracked_green_white_tiles_slab.json | 35 + .../cracked_green_white_tiles_stairs.json | 35 + .../cracked_light_blue_bricks_slab.json | 35 + .../cracked_light_blue_bricks_stairs.json | 35 + .../cracked_light_blue_tiles_slab.json | 35 + .../cracked_light_blue_tiles_stairs.json | 35 + .../cracked_red_bricks_slab.json | 35 + .../cracked_red_bricks_stairs.json | 35 + .../cracked_red_concrete_slab.json | 35 + .../cracked_red_concrete_stairs.json | 35 + .../cracked_sand_bricks_slab.json | 35 + .../cracked_sand_bricks_stairs.json | 35 + .../cracked_sand_tiles_slab.json | 35 + .../cracked_sand_tiles_stairs.json | 35 + .../cracked_teal_tiles_slab.json | 35 + .../cracked_teal_tiles_stairs.json | 35 + .../cracked_tuff_bricks_slab.json | 35 + .../cracked_tuff_bricks_stairs.json | 35 + .../cracked_tuff_tiles_slab.json | 35 + .../cracked_tuff_tiles_stairs.json | 35 + .../cracked_white_concrete_slab.json | 35 + .../cracked_white_concrete_stairs.json | 35 + .../cracked_yellow_concrete_slab.json | 35 + .../cracked_yellow_concrete_stairs.json | 35 + .../cross_acacia_planks_slab.json | 35 + .../cross_acacia_planks_stairs.json | 35 + .../cross_birch_planks_slab.json | 35 + .../cross_birch_planks_stairs.json | 35 + .../cross_crimson_planks_slab.json | 35 + .../cross_crimson_planks_stairs.json | 35 + .../cross_dark_oak_planks_slab.json | 35 + .../cross_dark_oak_planks_stairs.json | 35 + .../cross_jungle_planks_slab.json | 35 + .../cross_jungle_planks_stairs.json | 35 + .../cross_mangrove_planks_slab.json | 35 + .../cross_mangrove_planks_stairs.json | 35 + .../cross_oak_planks_slab.json | 35 + .../cross_oak_planks_stairs.json | 35 + .../cross_sand_tiles_slab.json | 35 + .../cross_sand_tiles_stairs.json | 35 + .../cross_spruce_planks_slab.json | 35 + .../cross_spruce_planks_stairs.json | 35 + .../building_blocks/cyan_linoleum_slab.json | 35 + .../building_blocks/cyan_linoleum_stairs.json | 35 + .../dark_brick_tiles_slab.json | 35 + .../dark_brick_tiles_stairs.json | 35 + .../building_blocks/deepslate_tiles_slab.json | 35 + .../deepslate_tiles_stairs.json | 35 + .../building_blocks/diorite_bricks_slab.json | 35 + .../diorite_bricks_stairs.json | 35 + .../dirty_aquamarine_tiles_slab.json | 35 + .../dirty_aquamarine_tiles_stairs.json | 35 + .../dirty_brick_tiles_slab.json | 35 + .../dirty_brick_tiles_stairs.json | 35 + .../dirty_dark_brick_tiles_slab.json | 35 + .../dirty_dark_brick_tiles_stairs.json | 35 + .../building_blocks/dripstone_tiles_slab.json | 35 + .../dripstone_tiles_stairs.json | 35 + .../building_blocks/gray_linoleum_slab.json | 35 + .../building_blocks/gray_linoleum_stairs.json | 35 + .../building_blocks/green_bricks_2_slab.json | 35 + .../green_bricks_2_stairs.json | 35 + .../building_blocks/green_bricks_slab.json | 35 + .../building_blocks/green_bricks_stairs.json | 35 + .../building_blocks/green_concrete_slab.json | 35 + .../green_concrete_stairs.json | 35 + .../building_blocks/green_linoleum_slab.json | 35 + .../green_linoleum_stairs.json | 35 + .../green_white_tiles_slab.json | 35 + .../green_white_tiles_stairs.json | 35 + .../herringbone_acacia_planks_slab.json | 35 + .../herringbone_acacia_planks_stairs.json | 35 + .../herringbone_birch_planks_slab.json | 35 + .../herringbone_birch_planks_stairs.json | 35 + .../herringbone_crimson_planks_slab.json | 35 + .../herringbone_crimson_planks_stairs.json | 35 + .../herringbone_dark_oak_planks_slab.json | 35 + .../herringbone_dark_oak_planks_stairs.json | 35 + .../herringbone_jungle_planks_slab.json | 35 + .../herringbone_jungle_planks_stairs.json | 35 + .../herringbone_mangrove_planks_slab.json | 35 + .../herringbone_mangrove_planks_stairs.json | 35 + .../herringbone_oak_planks_slab.json | 35 + .../herringbone_oak_planks_stairs.json | 35 + .../herringbone_parquet_slab.json | 35 + .../herringbone_parquet_stairs.json | 35 + .../herringbone_sand_tiles_slab.json | 35 + .../herringbone_sand_tiles_stairs.json | 35 + .../herringbone_spruce_planks_slab.json | 35 + .../herringbone_spruce_planks_stairs.json | 35 + .../light_blue_bricks_slab.json | 35 + .../light_blue_bricks_stairs.json | 35 + .../light_blue_tiles_slab.json | 35 + .../light_blue_tiles_stairs.json | 35 + .../building_blocks/metal_plating_slab.json | 35 + .../building_blocks/metal_plating_stairs.json | 35 + .../mossy_aquamarine_tiles_slab.json | 35 + .../mossy_aquamarine_tiles_stairs.json | 35 + .../mossy_brick_tiles_slab.json | 35 + .../mossy_brick_tiles_stairs.json | 35 + .../mossy_calcite_tiles_slab.json | 35 + .../mossy_calcite_tiles_stairs.json | 35 + .../mossy_dark_brick_tiles_slab.json | 35 + .../mossy_dark_brick_tiles_stairs.json | 35 + .../mossy_deepslate_tiles_slab.json | 35 + .../mossy_deepslate_tiles_stairs.json | 35 + .../mossy_diorite_bricks_slab.json | 35 + .../mossy_diorite_bricks_stairs.json | 35 + .../mossy_dripstone_tiles_slab.json | 35 + .../mossy_dripstone_tiles_stairs.json | 35 + .../mossy_green_bricks_2_slab.json | 35 + .../mossy_green_bricks_2_stairs.json | 35 + .../mossy_green_bricks_slab.json | 35 + .../mossy_green_bricks_stairs.json | 35 + .../mossy_green_white_tiles_slab.json | 35 + .../mossy_green_white_tiles_stairs.json | 35 + .../mossy_light_blue_bricks_slab.json | 35 + .../mossy_light_blue_bricks_stairs.json | 35 + .../mossy_light_blue_tiles_slab.json | 35 + .../mossy_light_blue_tiles_stairs.json | 35 + .../mossy_red_bricks_slab.json | 35 + .../mossy_red_bricks_stairs.json | 35 + .../mossy_sand_bricks_slab.json | 35 + .../mossy_sand_bricks_stairs.json | 35 + .../mossy_sand_tiles_slab.json | 35 + .../mossy_sand_tiles_stairs.json | 35 + .../mossy_teal_tiles_slab.json | 35 + .../mossy_teal_tiles_stairs.json | 35 + .../mossy_tuff_bricks_slab.json | 35 + .../mossy_tuff_bricks_stairs.json | 35 + .../mossy_tuff_tiles_slab.json | 35 + .../mossy_tuff_tiles_stairs.json | 35 + .../building_blocks/nii_floor_slab.json | 35 + .../building_blocks/nii_floor_stairs.json | 35 + .../building_blocks/orange_linoleum_slab.json | 35 + .../orange_linoleum_stairs.json | 35 + .../building_blocks/red_bricks_slab.json | 35 + .../building_blocks/red_bricks_stairs.json | 35 + .../building_blocks/red_concrete_slab.json | 35 + .../building_blocks/red_concrete_stairs.json | 35 + .../building_blocks/red_linoleum_slab.json | 35 + .../building_blocks/red_linoleum_stairs.json | 35 + .../building_blocks/sand_bricks_slab.json | 35 + .../building_blocks/sand_bricks_stairs.json | 35 + .../building_blocks/sand_tiles_slab.json | 35 + .../separated_parquet_slab.json | 35 + .../separated_parquet_stairs.json | 35 + .../straight_parquet_slab.json | 35 + .../straight_parquet_stairs.json | 35 + .../building_blocks/teal_tiles_slab.json | 35 + .../building_blocks/teal_tiles_stairs.json | 35 + .../building_blocks/tuff_bricks_slab.json | 35 + .../building_blocks/tuff_bricks_stairs.json | 35 + .../building_blocks/tuff_tiles_slab.json | 35 + .../building_blocks/tuff_tiles_stairs.json | 35 + .../variated_light_blue_tiles_slab.json | 35 + .../variated_light_blue_tiles_stairs.json | 35 + .../variated_teal_tiles_slab.json | 35 + .../variated_teal_tiles_stairs.json | 35 + .../building_blocks/white_concrete_slab.json | 35 + .../white_concrete_stairs.json | 35 + .../building_blocks/yellow_concrete_slab.json | 35 + .../yellow_concrete_stairs.json | 35 + .../blocks/aquamarine_tiles_slab.json | 20 + .../blocks/aquamarine_tiles_stairs.json | 20 + .../blocks/beige_concrete_slab.json | 20 + .../blocks/beige_concrete_stairs.json | 20 + .../blocks/big_sand_bricks_slab.json | 20 + .../blocks/big_sand_bricks_stairs.json | 20 + .../blocks/blue_concrete_slab.json | 20 + .../blocks/blue_concrete_stairs.json | 20 + .../blocks/blue_linoleum_slab.json | 20 + .../blocks/blue_linoleum_stairs.json | 20 + .../loot_tables/blocks/brick_tiles_slab.json | 20 + .../blocks/brick_tiles_stairs.json | 20 + .../blocks/brown_linoleum_slab.json | 20 + .../blocks/brown_linoleum_stairs.json | 20 + .../blocks/calcite_tiles_slab.json | 20 + .../blocks/calcite_tiles_stairs.json | 20 + .../blocks/cracked_aquamarine_tiles_slab.json | 20 + .../cracked_aquamarine_tiles_stairs.json | 20 + .../blocks/cracked_beige_concrete_slab.json | 20 + .../blocks/cracked_beige_concrete_stairs.json | 20 + .../blocks/cracked_blue_concrete_slab.json | 20 + .../blocks/cracked_blue_concrete_stairs.json | 20 + .../blocks/cracked_brick_tiles_slab.json | 20 + .../blocks/cracked_brick_tiles_stairs.json | 20 + .../blocks/cracked_calcite_tiles_slab.json | 20 + .../blocks/cracked_calcite_tiles_stairs.json | 20 + .../blocks/cracked_dark_brick_tiles_slab.json | 20 + .../cracked_dark_brick_tiles_stairs.json | 20 + .../blocks/cracked_deepslate_tiles_slab.json | 20 + .../cracked_deepslate_tiles_stairs.json | 20 + .../blocks/cracked_diorite_bricks_slab.json | 20 + .../blocks/cracked_diorite_bricks_stairs.json | 20 + .../blocks/cracked_dripstone_tiles_slab.json | 20 + .../cracked_dripstone_tiles_stairs.json | 20 + .../blocks/cracked_green_bricks_2_slab.json | 20 + .../blocks/cracked_green_bricks_2_stairs.json | 20 + .../blocks/cracked_green_bricks_slab.json | 20 + .../blocks/cracked_green_bricks_stairs.json | 20 + .../blocks/cracked_green_concrete_slab.json | 20 + .../blocks/cracked_green_concrete_stairs.json | 20 + .../cracked_green_white_tiles_slab.json | 20 + .../cracked_green_white_tiles_stairs.json | 20 + .../cracked_light_blue_bricks_slab.json | 20 + .../cracked_light_blue_bricks_stairs.json | 20 + .../blocks/cracked_light_blue_tiles_slab.json | 20 + .../cracked_light_blue_tiles_stairs.json | 20 + .../blocks/cracked_red_bricks_slab.json | 20 + .../blocks/cracked_red_bricks_stairs.json | 20 + .../blocks/cracked_red_concrete_slab.json | 20 + .../blocks/cracked_red_concrete_stairs.json | 20 + .../blocks/cracked_sand_bricks_slab.json | 20 + .../blocks/cracked_sand_bricks_stairs.json | 20 + .../blocks/cracked_sand_tiles_slab.json | 20 + .../blocks/cracked_sand_tiles_stairs.json | 20 + .../blocks/cracked_teal_tiles_slab.json | 20 + .../blocks/cracked_teal_tiles_stairs.json | 20 + .../blocks/cracked_tuff_bricks_slab.json | 20 + .../blocks/cracked_tuff_bricks_stairs.json | 20 + .../blocks/cracked_tuff_tiles_slab.json | 20 + .../blocks/cracked_tuff_tiles_stairs.json | 20 + .../blocks/cracked_white_concrete_slab.json | 20 + .../blocks/cracked_white_concrete_stairs.json | 20 + .../blocks/cracked_yellow_concrete_slab.json | 20 + .../cracked_yellow_concrete_stairs.json | 20 + .../blocks/cross_acacia_planks_slab.json | 20 + .../blocks/cross_acacia_planks_stairs.json | 20 + .../blocks/cross_birch_planks_slab.json | 20 + .../blocks/cross_birch_planks_stairs.json | 20 + .../blocks/cross_crimson_planks_slab.json | 20 + .../blocks/cross_crimson_planks_stairs.json | 20 + .../blocks/cross_dark_oak_planks_slab.json | 20 + .../blocks/cross_dark_oak_planks_stairs.json | 20 + .../blocks/cross_jungle_planks_slab.json | 20 + .../blocks/cross_jungle_planks_stairs.json | 20 + .../blocks/cross_mangrove_planks_slab.json | 20 + .../blocks/cross_mangrove_planks_stairs.json | 20 + .../blocks/cross_oak_planks_slab.json | 20 + .../blocks/cross_oak_planks_stairs.json | 20 + .../blocks/cross_sand_tiles_slab.json | 20 + .../blocks/cross_sand_tiles_stairs.json | 20 + .../blocks/cross_spruce_planks_slab.json | 20 + .../blocks/cross_spruce_planks_stairs.json | 20 + .../blocks/cyan_linoleum_slab.json | 20 + .../blocks/cyan_linoleum_stairs.json | 20 + .../blocks/dark_brick_tiles_slab.json | 20 + .../blocks/dark_brick_tiles_stairs.json | 20 + .../blocks/deepslate_tiles_slab.json | 20 + .../blocks/deepslate_tiles_stairs.json | 20 + .../blocks/diorite_bricks_slab.json | 20 + .../blocks/diorite_bricks_stairs.json | 20 + .../blocks/dirty_aquamarine_tiles_slab.json | 20 + .../blocks/dirty_aquamarine_tiles_stairs.json | 20 + .../blocks/dirty_brick_tiles_slab.json | 20 + .../blocks/dirty_brick_tiles_stairs.json | 20 + .../blocks/dirty_dark_brick_tiles_slab.json | 20 + .../blocks/dirty_dark_brick_tiles_stairs.json | 20 + .../blocks/dripstone_tiles_slab.json | 20 + .../blocks/dripstone_tiles_stairs.json | 20 + .../blocks/gray_linoleum_slab.json | 20 + .../blocks/gray_linoleum_stairs.json | 20 + .../blocks/green_bricks_2_slab.json | 20 + .../blocks/green_bricks_2_stairs.json | 20 + .../loot_tables/blocks/green_bricks_slab.json | 20 + .../blocks/green_bricks_stairs.json | 20 + .../blocks/green_concrete_slab.json | 20 + .../blocks/green_concrete_stairs.json | 20 + .../blocks/green_linoleum_slab.json | 20 + .../blocks/green_linoleum_stairs.json | 20 + .../blocks/green_white_tiles_slab.json | 20 + .../blocks/green_white_tiles_stairs.json | 20 + .../herringbone_acacia_planks_slab.json | 20 + .../herringbone_acacia_planks_stairs.json | 20 + .../blocks/herringbone_birch_planks_slab.json | 20 + .../herringbone_birch_planks_stairs.json | 20 + .../herringbone_crimson_planks_slab.json | 20 + .../herringbone_crimson_planks_stairs.json | 20 + .../herringbone_dark_oak_planks_slab.json | 20 + .../herringbone_dark_oak_planks_stairs.json | 20 + .../herringbone_jungle_planks_slab.json | 20 + .../herringbone_jungle_planks_stairs.json | 20 + .../herringbone_mangrove_planks_slab.json | 20 + .../herringbone_mangrove_planks_stairs.json | 20 + .../blocks/herringbone_oak_planks_slab.json | 20 + .../blocks/herringbone_oak_planks_stairs.json | 20 + .../blocks/herringbone_parquet_slab.json | 20 + .../blocks/herringbone_parquet_stairs.json | 20 + .../blocks/herringbone_sand_tiles_slab.json | 20 + .../blocks/herringbone_sand_tiles_stairs.json | 20 + .../herringbone_spruce_planks_slab.json | 20 + .../herringbone_spruce_planks_stairs.json | 20 + .../blocks/light_blue_bricks_slab.json | 20 + .../blocks/light_blue_bricks_stairs.json | 20 + .../blocks/light_blue_tiles_slab.json | 20 + .../blocks/light_blue_tiles_stairs.json | 20 + .../blocks/metal_plating_slab.json | 20 + .../blocks/metal_plating_stairs.json | 20 + .../blocks/mossy_aquamarine_tiles_slab.json | 20 + .../blocks/mossy_aquamarine_tiles_stairs.json | 20 + .../blocks/mossy_brick_tiles_slab.json | 20 + .../blocks/mossy_brick_tiles_stairs.json | 20 + .../blocks/mossy_calcite_tiles_slab.json | 20 + .../blocks/mossy_calcite_tiles_stairs.json | 20 + .../blocks/mossy_dark_brick_tiles_slab.json | 20 + .../blocks/mossy_dark_brick_tiles_stairs.json | 20 + .../blocks/mossy_deepslate_tiles_slab.json | 20 + .../blocks/mossy_deepslate_tiles_stairs.json | 20 + .../blocks/mossy_diorite_bricks_slab.json | 20 + .../blocks/mossy_diorite_bricks_stairs.json | 20 + .../blocks/mossy_dripstone_tiles_slab.json | 20 + .../blocks/mossy_dripstone_tiles_stairs.json | 20 + .../blocks/mossy_green_bricks_2_slab.json | 20 + .../blocks/mossy_green_bricks_2_stairs.json | 20 + .../blocks/mossy_green_bricks_slab.json | 20 + .../blocks/mossy_green_bricks_stairs.json | 20 + .../blocks/mossy_green_white_tiles_slab.json | 20 + .../mossy_green_white_tiles_stairs.json | 20 + .../blocks/mossy_light_blue_bricks_slab.json | 20 + .../mossy_light_blue_bricks_stairs.json | 20 + .../blocks/mossy_light_blue_tiles_slab.json | 20 + .../blocks/mossy_light_blue_tiles_stairs.json | 20 + .../blocks/mossy_red_bricks_slab.json | 20 + .../blocks/mossy_red_bricks_stairs.json | 20 + .../blocks/mossy_sand_bricks_slab.json | 20 + .../blocks/mossy_sand_bricks_stairs.json | 20 + .../blocks/mossy_sand_tiles_slab.json | 20 + .../blocks/mossy_sand_tiles_stairs.json | 20 + .../blocks/mossy_teal_tiles_slab.json | 20 + .../blocks/mossy_teal_tiles_stairs.json | 20 + .../blocks/mossy_tuff_bricks_slab.json | 20 + .../blocks/mossy_tuff_bricks_stairs.json | 20 + .../blocks/mossy_tuff_tiles_slab.json | 20 + .../blocks/mossy_tuff_tiles_stairs.json | 20 + .../loot_tables/blocks/nii_floor_slab.json | 20 + .../loot_tables/blocks/nii_floor_stairs.json | 20 + .../blocks/orange_linoleum_slab.json | 20 + .../blocks/orange_linoleum_stairs.json | 20 + .../loot_tables/blocks/red_bricks_slab.json | 20 + .../loot_tables/blocks/red_bricks_stairs.json | 20 + .../loot_tables/blocks/red_concrete_slab.json | 20 + .../blocks/red_concrete_stairs.json | 20 + .../loot_tables/blocks/red_linoleum_slab.json | 20 + .../blocks/red_linoleum_stairs.json | 20 + .../loot_tables/blocks/sand_bricks_slab.json | 20 + .../blocks/sand_bricks_stairs.json | 20 + .../loot_tables/blocks/sand_tiles_slab.json | 20 + .../loot_tables/blocks/sand_tiles_stairs.json | 20 + .../blocks/separated_parquet_slab.json | 20 + .../blocks/separated_parquet_stairs.json | 20 + .../blocks/straight_parquet_slab.json | 20 + .../blocks/straight_parquet_stairs.json | 20 + .../loot_tables/blocks/teal_tiles_slab.json | 20 + .../loot_tables/blocks/teal_tiles_stairs.json | 20 + .../loot_tables/blocks/tuff_bricks_slab.json | 20 + .../blocks/tuff_bricks_stairs.json | 20 + .../loot_tables/blocks/tuff_tiles_slab.json | 20 + .../loot_tables/blocks/tuff_tiles_stairs.json | 20 + .../variated_light_blue_tiles_slab.json | 20 + .../variated_light_blue_tiles_stairs.json | 20 + .../blocks/variated_teal_tiles_slab.json | 20 + .../blocks/variated_teal_tiles_stairs.json | 20 + .../blocks/white_concrete_slab.json | 20 + .../blocks/white_concrete_stairs.json | 20 + .../blocks/yellow_concrete_slab.json | 20 + .../blocks/yellow_concrete_stairs.json | 20 + .../recipes/aquamarine_tiles_slab.json | 17 + .../recipes/aquamarine_tiles_stairs.json | 19 + .../recipes/beige_concrete_slab.json | 17 + .../recipes/beige_concrete_stairs.json | 19 + .../recipes/big_sand_bricks_slab.json | 17 + .../recipes/big_sand_bricks_stairs.json | 19 + .../recipes/blue_concrete_slab.json | 17 + .../recipes/blue_concrete_stairs.json | 19 + .../recipes/blue_linoleum_slab.json | 17 + .../recipes/blue_linoleum_stairs.json | 19 + .../new_soviet/recipes/brick_tiles_slab.json | 17 + .../recipes/brick_tiles_stairs.json | 19 + .../recipes/brown_linoleum_slab.json | 17 + .../recipes/brown_linoleum_stairs.json | 19 + .../recipes/calcite_tiles_slab.json | 17 + .../recipes/calcite_tiles_stairs.json | 19 + .../cracked_aquamarine_tiles_slab.json | 17 + .../cracked_aquamarine_tiles_stairs.json | 19 + .../recipes/cracked_beige_concrete_slab.json | 17 + .../cracked_beige_concrete_stairs.json | 19 + .../recipes/cracked_blue_concrete_slab.json | 17 + .../recipes/cracked_blue_concrete_stairs.json | 19 + .../recipes/cracked_brick_tiles_slab.json | 17 + .../recipes/cracked_brick_tiles_stairs.json | 19 + .../recipes/cracked_calcite_tiles_slab.json | 17 + .../recipes/cracked_calcite_tiles_stairs.json | 19 + .../cracked_dark_brick_tiles_slab.json | 17 + .../cracked_dark_brick_tiles_stairs.json | 19 + .../recipes/cracked_deepslate_tiles_slab.json | 17 + .../cracked_deepslate_tiles_stairs.json | 19 + .../recipes/cracked_diorite_bricks_slab.json | 17 + .../cracked_diorite_bricks_stairs.json | 19 + .../recipes/cracked_dripstone_tiles_slab.json | 17 + .../cracked_dripstone_tiles_stairs.json | 19 + .../recipes/cracked_green_bricks_2_slab.json | 17 + .../cracked_green_bricks_2_stairs.json | 19 + .../recipes/cracked_green_bricks_slab.json | 17 + .../recipes/cracked_green_bricks_stairs.json | 19 + .../recipes/cracked_green_concrete_slab.json | 17 + .../cracked_green_concrete_stairs.json | 19 + .../cracked_green_white_tiles_slab.json | 17 + .../cracked_green_white_tiles_stairs.json | 19 + .../cracked_light_blue_bricks_slab.json | 17 + .../cracked_light_blue_bricks_stairs.json | 19 + .../cracked_light_blue_tiles_slab.json | 17 + .../cracked_light_blue_tiles_stairs.json | 19 + .../recipes/cracked_red_bricks_slab.json | 17 + .../recipes/cracked_red_bricks_stairs.json | 19 + .../recipes/cracked_red_concrete_slab.json | 17 + .../recipes/cracked_red_concrete_stairs.json | 19 + .../recipes/cracked_sand_bricks_slab.json | 17 + .../recipes/cracked_sand_bricks_stairs.json | 19 + .../recipes/cracked_sand_tiles_slab.json | 17 + .../recipes/cracked_sand_tiles_stairs.json | 19 + .../recipes/cracked_teal_tiles_slab.json | 17 + .../recipes/cracked_teal_tiles_stairs.json | 19 + .../recipes/cracked_tuff_bricks_slab.json | 17 + .../recipes/cracked_tuff_bricks_stairs.json | 19 + .../recipes/cracked_tuff_tiles_slab.json | 17 + .../recipes/cracked_tuff_tiles_stairs.json | 19 + .../recipes/cracked_white_concrete_slab.json | 17 + .../cracked_white_concrete_stairs.json | 19 + .../recipes/cracked_yellow_concrete_slab.json | 17 + .../cracked_yellow_concrete_stairs.json | 19 + .../recipes/cross_acacia_planks_slab.json | 17 + .../recipes/cross_acacia_planks_stairs.json | 19 + .../recipes/cross_birch_planks_slab.json | 17 + .../recipes/cross_birch_planks_stairs.json | 19 + .../recipes/cross_crimson_planks_slab.json | 17 + .../recipes/cross_crimson_planks_stairs.json | 19 + .../recipes/cross_dark_oak_planks_slab.json | 17 + .../recipes/cross_dark_oak_planks_stairs.json | 19 + .../recipes/cross_jungle_planks_slab.json | 17 + .../recipes/cross_jungle_planks_stairs.json | 19 + .../recipes/cross_mangrove_planks_slab.json | 17 + .../recipes/cross_mangrove_planks_stairs.json | 19 + .../recipes/cross_oak_planks_slab.json | 17 + .../recipes/cross_oak_planks_stairs.json | 19 + .../recipes/cross_sand_tiles_slab.json | 17 + .../recipes/cross_sand_tiles_stairs.json | 19 + .../recipes/cross_spruce_planks_slab.json | 17 + .../recipes/cross_spruce_planks_stairs.json | 19 + .../recipes/cyan_linoleum_slab.json | 17 + .../recipes/cyan_linoleum_stairs.json | 19 + .../recipes/dark_brick_tiles_slab.json | 17 + .../recipes/dark_brick_tiles_stairs.json | 19 + .../recipes/deepslate_tiles_slab.json | 17 + .../recipes/deepslate_tiles_stairs.json | 19 + .../recipes/diorite_bricks_slab.json | 17 + .../recipes/diorite_bricks_stairs.json | 19 + .../recipes/dirty_aquamarine_tiles_slab.json | 17 + .../dirty_aquamarine_tiles_stairs.json | 19 + .../recipes/dirty_brick_tiles_slab.json | 17 + .../recipes/dirty_brick_tiles_stairs.json | 19 + .../recipes/dirty_dark_brick_tiles_slab.json | 17 + .../dirty_dark_brick_tiles_stairs.json | 19 + .../recipes/dripstone_tiles_slab.json | 17 + .../recipes/dripstone_tiles_stairs.json | 19 + .../recipes/gray_linoleum_slab.json | 17 + .../recipes/gray_linoleum_stairs.json | 19 + .../recipes/green_bricks_2_slab.json | 17 + .../recipes/green_bricks_2_stairs.json | 19 + .../new_soviet/recipes/green_bricks_slab.json | 17 + .../recipes/green_bricks_stairs.json | 19 + .../recipes/green_concrete_slab.json | 17 + .../recipes/green_concrete_stairs.json | 19 + .../recipes/green_linoleum_slab.json | 17 + .../recipes/green_linoleum_stairs.json | 19 + .../recipes/green_white_tiles_slab.json | 17 + .../recipes/green_white_tiles_stairs.json | 19 + .../herringbone_acacia_planks_slab.json | 17 + .../herringbone_acacia_planks_stairs.json | 19 + .../herringbone_birch_planks_slab.json | 17 + .../herringbone_birch_planks_stairs.json | 19 + .../herringbone_crimson_planks_slab.json | 17 + .../herringbone_crimson_planks_stairs.json | 19 + .../herringbone_dark_oak_planks_slab.json | 17 + .../herringbone_dark_oak_planks_stairs.json | 19 + .../herringbone_jungle_planks_slab.json | 17 + .../herringbone_jungle_planks_stairs.json | 19 + .../herringbone_mangrove_planks_slab.json | 17 + .../herringbone_mangrove_planks_stairs.json | 19 + .../recipes/herringbone_oak_planks_slab.json | 17 + .../herringbone_oak_planks_stairs.json | 19 + .../recipes/herringbone_parquet_slab.json | 17 + .../recipes/herringbone_parquet_stairs.json | 19 + .../recipes/herringbone_sand_tiles_slab.json | 17 + .../herringbone_sand_tiles_stairs.json | 19 + .../herringbone_spruce_planks_slab.json | 17 + .../herringbone_spruce_planks_stairs.json | 19 + .../recipes/light_blue_bricks_slab.json | 17 + .../recipes/light_blue_bricks_stairs.json | 19 + .../recipes/light_blue_tiles_slab.json | 17 + .../recipes/light_blue_tiles_stairs.json | 19 + .../recipes/metal_plating_slab.json | 17 + .../recipes/metal_plating_stairs.json | 19 + .../recipes/mossy_aquamarine_tiles_slab.json | 17 + .../mossy_aquamarine_tiles_stairs.json | 19 + .../recipes/mossy_brick_tiles_slab.json | 17 + .../recipes/mossy_brick_tiles_stairs.json | 19 + .../recipes/mossy_calcite_tiles_slab.json | 17 + .../recipes/mossy_calcite_tiles_stairs.json | 19 + .../recipes/mossy_dark_brick_tiles_slab.json | 17 + .../mossy_dark_brick_tiles_stairs.json | 19 + .../recipes/mossy_deepslate_tiles_slab.json | 17 + .../recipes/mossy_deepslate_tiles_stairs.json | 19 + .../recipes/mossy_diorite_bricks_slab.json | 17 + .../recipes/mossy_diorite_bricks_stairs.json | 19 + .../recipes/mossy_dripstone_tiles_slab.json | 17 + .../recipes/mossy_dripstone_tiles_stairs.json | 19 + .../recipes/mossy_green_bricks_2_slab.json | 17 + .../recipes/mossy_green_bricks_2_stairs.json | 19 + .../recipes/mossy_green_bricks_slab.json | 17 + .../recipes/mossy_green_bricks_stairs.json | 19 + .../recipes/mossy_green_white_tiles_slab.json | 17 + .../mossy_green_white_tiles_stairs.json | 19 + .../recipes/mossy_light_blue_bricks_slab.json | 17 + .../mossy_light_blue_bricks_stairs.json | 19 + .../recipes/mossy_light_blue_tiles_slab.json | 17 + .../mossy_light_blue_tiles_stairs.json | 19 + .../recipes/mossy_red_bricks_slab.json | 17 + .../recipes/mossy_red_bricks_stairs.json | 19 + .../recipes/mossy_sand_bricks_slab.json | 17 + .../recipes/mossy_sand_bricks_stairs.json | 19 + .../recipes/mossy_sand_tiles_slab.json | 17 + .../recipes/mossy_sand_tiles_stairs.json | 19 + .../recipes/mossy_teal_tiles_slab.json | 17 + .../recipes/mossy_teal_tiles_stairs.json | 19 + .../recipes/mossy_tuff_bricks_slab.json | 17 + .../recipes/mossy_tuff_bricks_stairs.json | 19 + .../recipes/mossy_tuff_tiles_slab.json | 17 + .../recipes/mossy_tuff_tiles_stairs.json | 19 + .../new_soviet/recipes/nii_floor_slab.json | 17 + .../new_soviet/recipes/nii_floor_stairs.json | 19 + .../recipes/orange_linoleum_slab.json | 17 + .../recipes/orange_linoleum_stairs.json | 19 + .../new_soviet/recipes/red_bricks_slab.json | 17 + .../new_soviet/recipes/red_bricks_stairs.json | 19 + .../new_soviet/recipes/red_concrete_slab.json | 17 + .../recipes/red_concrete_stairs.json | 19 + .../new_soviet/recipes/red_linoleum_slab.json | 17 + .../recipes/red_linoleum_stairs.json | 19 + .../new_soviet/recipes/sand_bricks_slab.json | 17 + .../recipes/sand_bricks_stairs.json | 19 + .../new_soviet/recipes/sand_tiles_slab.json | 17 + .../recipes/separated_parquet_slab.json | 17 + .../recipes/separated_parquet_stairs.json | 19 + .../recipes/straight_parquet_slab.json | 17 + .../recipes/straight_parquet_stairs.json | 19 + .../new_soviet/recipes/teal_tiles_slab.json | 17 + .../new_soviet/recipes/teal_tiles_stairs.json | 19 + .../new_soviet/recipes/tuff_bricks_slab.json | 17 + .../recipes/tuff_bricks_stairs.json | 19 + .../new_soviet/recipes/tuff_tiles_slab.json | 17 + .../new_soviet/recipes/tuff_tiles_stairs.json | 19 + .../variated_light_blue_tiles_slab.json | 17 + .../variated_light_blue_tiles_stairs.json | 19 + .../recipes/variated_teal_tiles_slab.json | 17 + .../recipes/variated_teal_tiles_stairs.json | 19 + .../recipes/white_concrete_slab.json | 17 + .../recipes/white_concrete_stairs.json | 19 + .../recipes/yellow_concrete_slab.json | 17 + .../recipes/yellow_concrete_stairs.json | 19 + .../su/a71/new_soviet/DataGeneration.java | 825 +++++++++++++++++- .../new_soviet/registration/NSE_Blocks.java | 484 +++++++++- .../blockstates/aquamarine_tiles_slab.json | 13 + .../blockstates/aquamarine_tiles_stairs.json | 209 +++++ .../blockstates/beige_concrete_slab.json | 13 + .../blockstates/beige_concrete_stairs.json | 209 +++++ .../blockstates/big_sand_bricks_slab.json | 13 + .../blockstates/big_sand_bricks_stairs.json | 209 +++++ .../blockstates/blue_concrete_slab.json | 13 + .../blockstates/blue_concrete_stairs.json | 209 +++++ .../blockstates/blue_linoleum_slab.json | 13 + .../blockstates/blue_linoleum_stairs.json | 209 +++++ .../blockstates/brick_tiles_slab.json | 13 + .../blockstates/brick_tiles_stairs.json | 209 +++++ .../blockstates/brown_linoleum_slab.json | 13 + .../blockstates/brown_linoleum_stairs.json | 209 +++++ .../blockstates/calcite_tiles_slab.json | 13 + .../blockstates/calcite_tiles_stairs.json | 209 +++++ .../cracked_aquamarine_tiles_slab.json | 13 + .../cracked_aquamarine_tiles_stairs.json | 209 +++++ .../cracked_beige_concrete_slab.json | 13 + .../cracked_beige_concrete_stairs.json | 209 +++++ .../cracked_blue_concrete_slab.json | 13 + .../cracked_blue_concrete_stairs.json | 209 +++++ .../blockstates/cracked_brick_tiles_slab.json | 13 + .../cracked_brick_tiles_stairs.json | 209 +++++ .../cracked_calcite_tiles_slab.json | 13 + .../cracked_calcite_tiles_stairs.json | 209 +++++ .../cracked_dark_brick_tiles_slab.json | 13 + .../cracked_dark_brick_tiles_stairs.json | 209 +++++ .../cracked_deepslate_tiles_slab.json | 13 + .../cracked_deepslate_tiles_stairs.json | 209 +++++ .../cracked_diorite_bricks_slab.json | 13 + .../cracked_diorite_bricks_stairs.json | 209 +++++ .../cracked_dripstone_tiles_slab.json | 13 + .../cracked_dripstone_tiles_stairs.json | 209 +++++ .../cracked_green_bricks_2_slab.json | 13 + .../cracked_green_bricks_2_stairs.json | 209 +++++ .../cracked_green_bricks_slab.json | 13 + .../cracked_green_bricks_stairs.json | 209 +++++ .../cracked_green_concrete_slab.json | 13 + .../cracked_green_concrete_stairs.json | 209 +++++ .../cracked_green_white_tiles_slab.json | 13 + .../cracked_green_white_tiles_stairs.json | 209 +++++ .../cracked_light_blue_bricks_slab.json | 13 + .../cracked_light_blue_bricks_stairs.json | 209 +++++ .../cracked_light_blue_tiles_slab.json | 13 + .../cracked_light_blue_tiles_stairs.json | 209 +++++ .../blockstates/cracked_red_bricks_slab.json | 13 + .../cracked_red_bricks_stairs.json | 209 +++++ .../cracked_red_concrete_slab.json | 13 + .../cracked_red_concrete_stairs.json | 209 +++++ .../blockstates/cracked_sand_bricks_slab.json | 13 + .../cracked_sand_bricks_stairs.json | 209 +++++ .../blockstates/cracked_sand_tiles_slab.json | 13 + .../cracked_sand_tiles_stairs.json | 209 +++++ .../blockstates/cracked_teal_tiles_slab.json | 13 + .../cracked_teal_tiles_stairs.json | 209 +++++ .../blockstates/cracked_tuff_bricks_slab.json | 13 + .../cracked_tuff_bricks_stairs.json | 209 +++++ .../blockstates/cracked_tuff_tiles_slab.json | 13 + .../cracked_tuff_tiles_stairs.json | 209 +++++ .../cracked_white_concrete_slab.json | 13 + .../cracked_white_concrete_stairs.json | 209 +++++ .../cracked_yellow_concrete_slab.json | 13 + .../cracked_yellow_concrete_stairs.json | 209 +++++ .../blockstates/cross_acacia_planks_slab.json | 13 + .../cross_acacia_planks_stairs.json | 209 +++++ .../blockstates/cross_birch_planks_slab.json | 13 + .../cross_birch_planks_stairs.json | 209 +++++ .../cross_crimson_planks_slab.json | 13 + .../cross_crimson_planks_stairs.json | 209 +++++ .../cross_dark_oak_planks_slab.json | 13 + .../cross_dark_oak_planks_stairs.json | 209 +++++ .../blockstates/cross_jungle_planks_slab.json | 13 + .../cross_jungle_planks_stairs.json | 209 +++++ .../cross_mangrove_planks_slab.json | 13 + .../cross_mangrove_planks_stairs.json | 209 +++++ .../blockstates/cross_oak_planks_slab.json | 13 + .../blockstates/cross_oak_planks_stairs.json | 209 +++++ .../blockstates/cross_sand_tiles_slab.json | 13 + .../blockstates/cross_sand_tiles_stairs.json | 209 +++++ .../blockstates/cross_spruce_planks_slab.json | 13 + .../cross_spruce_planks_stairs.json | 209 +++++ .../blockstates/cyan_linoleum_slab.json | 13 + .../blockstates/cyan_linoleum_stairs.json | 209 +++++ .../blockstates/dark_brick_tiles_slab.json | 13 + .../blockstates/dark_brick_tiles_stairs.json | 209 +++++ .../blockstates/deepslate_tiles_slab.json | 13 + .../blockstates/deepslate_tiles_stairs.json | 209 +++++ .../blockstates/diorite_bricks_slab.json | 13 + .../blockstates/diorite_bricks_stairs.json | 209 +++++ .../dirty_aquamarine_tiles_slab.json | 13 + .../dirty_aquamarine_tiles_stairs.json | 209 +++++ .../blockstates/dirty_brick_tiles_slab.json | 13 + .../blockstates/dirty_brick_tiles_stairs.json | 209 +++++ .../dirty_dark_brick_tiles_slab.json | 13 + .../dirty_dark_brick_tiles_stairs.json | 209 +++++ .../blockstates/dripstone_tiles_slab.json | 13 + .../blockstates/dripstone_tiles_stairs.json | 209 +++++ .../blockstates/gray_linoleum_slab.json | 13 + .../blockstates/gray_linoleum_stairs.json | 209 +++++ .../blockstates/green_bricks_2_slab.json | 13 + .../blockstates/green_bricks_2_stairs.json | 209 +++++ .../blockstates/green_bricks_slab.json | 13 + .../blockstates/green_bricks_stairs.json | 209 +++++ .../blockstates/green_concrete_slab.json | 13 + .../blockstates/green_concrete_stairs.json | 209 +++++ .../blockstates/green_linoleum_slab.json | 13 + .../blockstates/green_linoleum_stairs.json | 209 +++++ .../blockstates/green_white_tiles_slab.json | 13 + .../blockstates/green_white_tiles_stairs.json | 209 +++++ .../herringbone_acacia_planks_slab.json | 13 + .../herringbone_acacia_planks_stairs.json | 209 +++++ .../herringbone_birch_planks_slab.json | 13 + .../herringbone_birch_planks_stairs.json | 209 +++++ .../herringbone_crimson_planks_slab.json | 13 + .../herringbone_crimson_planks_stairs.json | 209 +++++ .../herringbone_dark_oak_planks_slab.json | 13 + .../herringbone_dark_oak_planks_stairs.json | 209 +++++ .../herringbone_jungle_planks_slab.json | 13 + .../herringbone_jungle_planks_stairs.json | 209 +++++ .../herringbone_mangrove_planks_slab.json | 13 + .../herringbone_mangrove_planks_stairs.json | 209 +++++ .../herringbone_oak_planks_slab.json | 13 + .../herringbone_oak_planks_stairs.json | 209 +++++ .../blockstates/herringbone_parquet_slab.json | 13 + .../herringbone_parquet_stairs.json | 209 +++++ .../herringbone_sand_tiles_slab.json | 13 + .../herringbone_sand_tiles_stairs.json | 209 +++++ .../herringbone_spruce_planks_slab.json | 13 + .../herringbone_spruce_planks_stairs.json | 209 +++++ .../blockstates/light_blue_bricks_slab.json | 13 + .../blockstates/light_blue_bricks_stairs.json | 209 +++++ .../blockstates/light_blue_tiles_slab.json | 13 + .../blockstates/light_blue_tiles_stairs.json | 209 +++++ .../blockstates/metal_plating_slab.json | 13 + .../blockstates/metal_plating_stairs.json | 209 +++++ .../mossy_aquamarine_tiles_slab.json | 13 + .../mossy_aquamarine_tiles_stairs.json | 209 +++++ .../blockstates/mossy_brick_tiles_slab.json | 13 + .../blockstates/mossy_brick_tiles_stairs.json | 209 +++++ .../blockstates/mossy_calcite_tiles_slab.json | 13 + .../mossy_calcite_tiles_stairs.json | 209 +++++ .../mossy_dark_brick_tiles_slab.json | 13 + .../mossy_dark_brick_tiles_stairs.json | 209 +++++ .../mossy_deepslate_tiles_slab.json | 13 + .../mossy_deepslate_tiles_stairs.json | 209 +++++ .../mossy_diorite_bricks_slab.json | 13 + .../mossy_diorite_bricks_stairs.json | 209 +++++ .../mossy_dripstone_tiles_slab.json | 13 + .../mossy_dripstone_tiles_stairs.json | 209 +++++ .../mossy_green_bricks_2_slab.json | 13 + .../mossy_green_bricks_2_stairs.json | 209 +++++ .../blockstates/mossy_green_bricks_slab.json | 13 + .../mossy_green_bricks_stairs.json | 209 +++++ .../mossy_green_white_tiles_slab.json | 13 + .../mossy_green_white_tiles_stairs.json | 209 +++++ .../mossy_light_blue_bricks_slab.json | 13 + .../mossy_light_blue_bricks_stairs.json | 209 +++++ .../mossy_light_blue_tiles_slab.json | 13 + .../mossy_light_blue_tiles_stairs.json | 209 +++++ .../blockstates/mossy_red_bricks_slab.json | 13 + .../blockstates/mossy_red_bricks_stairs.json | 209 +++++ .../blockstates/mossy_sand_bricks_slab.json | 13 + .../blockstates/mossy_sand_bricks_stairs.json | 209 +++++ .../blockstates/mossy_sand_tiles_slab.json | 13 + .../blockstates/mossy_sand_tiles_stairs.json | 209 +++++ .../blockstates/mossy_teal_tiles_slab.json | 13 + .../blockstates/mossy_teal_tiles_stairs.json | 209 +++++ .../blockstates/mossy_tuff_bricks_slab.json | 13 + .../blockstates/mossy_tuff_bricks_stairs.json | 209 +++++ .../blockstates/mossy_tuff_tiles_slab.json | 13 + .../blockstates/mossy_tuff_tiles_stairs.json | 209 +++++ .../blockstates/nii_floor_slab.json | 13 + .../blockstates/nii_floor_stairs.json | 209 +++++ .../blockstates/orange_linoleum_slab.json | 13 + .../blockstates/orange_linoleum_stairs.json | 209 +++++ .../blockstates/red_bricks_slab.json | 13 + .../blockstates/red_bricks_stairs.json | 209 +++++ .../blockstates/red_concrete_slab.json | 13 + .../blockstates/red_concrete_stairs.json | 209 +++++ .../blockstates/red_linoleum_slab.json | 13 + .../blockstates/red_linoleum_stairs.json | 209 +++++ .../blockstates/sand_bricks_slab.json | 13 + .../blockstates/sand_bricks_stairs.json | 209 +++++ .../blockstates/sand_tiles_slab.json | 13 + .../blockstates/sand_tiles_stairs.json | 209 +++++ .../blockstates/separated_parquet_slab.json | 13 + .../blockstates/separated_parquet_stairs.json | 209 +++++ .../blockstates/straight_parquet_slab.json | 13 + .../blockstates/straight_parquet_stairs.json | 209 +++++ .../blockstates/teal_tiles_slab.json | 13 + .../blockstates/teal_tiles_stairs.json | 209 +++++ .../blockstates/tuff_bricks_slab.json | 13 + .../blockstates/tuff_bricks_stairs.json | 209 +++++ .../blockstates/tuff_tiles_slab.json | 13 + .../blockstates/tuff_tiles_stairs.json | 209 +++++ .../variated_light_blue_tiles_slab.json | 13 + .../variated_light_blue_tiles_stairs.json | 209 +++++ .../blockstates/variated_teal_tiles_slab.json | 13 + .../variated_teal_tiles_stairs.json | 209 +++++ .../blockstates/white_concrete_slab.json | 13 + .../blockstates/white_concrete_stairs.json | 209 +++++ .../blockstates/yellow_concrete_slab.json | 13 + .../blockstates/yellow_concrete_stairs.json | 209 +++++ .../assets/new_soviet/lang/en_us.json | 207 ++++- .../models/block/aquamarine_tiles_slab.json | 8 + .../block/aquamarine_tiles_slab_top.json | 8 + .../models/block/aquamarine_tiles_stairs.json | 8 + .../block/aquamarine_tiles_stairs_inner.json | 8 + .../block/aquamarine_tiles_stairs_outer.json | 8 + .../models/block/beige_concrete_slab.json | 8 + .../models/block/beige_concrete_slab_top.json | 8 + .../models/block/beige_concrete_stairs.json | 8 + .../block/beige_concrete_stairs_inner.json | 8 + .../block/beige_concrete_stairs_outer.json | 8 + .../models/block/big_sand_bricks_slab.json | 8 + .../block/big_sand_bricks_slab_top.json | 8 + .../models/block/big_sand_bricks_stairs.json | 8 + .../block/big_sand_bricks_stairs_inner.json | 8 + .../block/big_sand_bricks_stairs_outer.json | 8 + .../models/block/blue_concrete_slab.json | 8 + .../models/block/blue_concrete_slab_top.json | 8 + .../models/block/blue_concrete_stairs.json | 8 + .../block/blue_concrete_stairs_inner.json | 8 + .../block/blue_concrete_stairs_outer.json | 8 + .../models/block/blue_linoleum_slab.json | 8 + .../models/block/blue_linoleum_slab_top.json | 8 + .../models/block/blue_linoleum_stairs.json | 8 + .../block/blue_linoleum_stairs_inner.json | 8 + .../block/blue_linoleum_stairs_outer.json | 8 + .../models/block/brick_tiles_slab.json | 8 + .../models/block/brick_tiles_slab_top.json | 8 + .../models/block/brick_tiles_stairs.json | 8 + .../block/brick_tiles_stairs_inner.json | 8 + .../block/brick_tiles_stairs_outer.json | 8 + .../models/block/brown_linoleum_slab.json | 8 + .../models/block/brown_linoleum_slab_top.json | 8 + .../models/block/brown_linoleum_stairs.json | 8 + .../block/brown_linoleum_stairs_inner.json | 8 + .../block/brown_linoleum_stairs_outer.json | 8 + .../models/block/calcite_tiles_slab.json | 8 + .../models/block/calcite_tiles_slab_top.json | 8 + .../models/block/calcite_tiles_stairs.json | 8 + .../block/calcite_tiles_stairs_inner.json | 8 + .../block/calcite_tiles_stairs_outer.json | 8 + .../block/cracked_aquamarine_tiles_slab.json | 8 + .../cracked_aquamarine_tiles_slab_top.json | 8 + .../cracked_aquamarine_tiles_stairs.json | 8 + ...cracked_aquamarine_tiles_stairs_inner.json | 8 + ...cracked_aquamarine_tiles_stairs_outer.json | 8 + .../block/cracked_beige_concrete_slab.json | 8 + .../cracked_beige_concrete_slab_top.json | 8 + .../block/cracked_beige_concrete_stairs.json | 8 + .../cracked_beige_concrete_stairs_inner.json | 8 + .../cracked_beige_concrete_stairs_outer.json | 8 + .../block/cracked_blue_concrete_slab.json | 8 + .../block/cracked_blue_concrete_slab_top.json | 8 + .../block/cracked_blue_concrete_stairs.json | 8 + .../cracked_blue_concrete_stairs_inner.json | 8 + .../cracked_blue_concrete_stairs_outer.json | 8 + .../block/cracked_brick_tiles_slab.json | 8 + .../block/cracked_brick_tiles_slab_top.json | 8 + .../block/cracked_brick_tiles_stairs.json | 8 + .../cracked_brick_tiles_stairs_inner.json | 8 + .../cracked_brick_tiles_stairs_outer.json | 8 + .../block/cracked_calcite_tiles_slab.json | 8 + .../block/cracked_calcite_tiles_slab_top.json | 8 + .../block/cracked_calcite_tiles_stairs.json | 8 + .../cracked_calcite_tiles_stairs_inner.json | 8 + .../cracked_calcite_tiles_stairs_outer.json | 8 + .../block/cracked_dark_brick_tiles_slab.json | 8 + .../cracked_dark_brick_tiles_slab_top.json | 8 + .../cracked_dark_brick_tiles_stairs.json | 8 + ...cracked_dark_brick_tiles_stairs_inner.json | 8 + ...cracked_dark_brick_tiles_stairs_outer.json | 8 + .../block/cracked_deepslate_tiles_slab.json | 8 + .../cracked_deepslate_tiles_slab_top.json | 8 + .../block/cracked_deepslate_tiles_stairs.json | 8 + .../cracked_deepslate_tiles_stairs_inner.json | 8 + .../cracked_deepslate_tiles_stairs_outer.json | 8 + .../block/cracked_diorite_bricks_slab.json | 8 + .../cracked_diorite_bricks_slab_top.json | 8 + .../block/cracked_diorite_bricks_stairs.json | 8 + .../cracked_diorite_bricks_stairs_inner.json | 8 + .../cracked_diorite_bricks_stairs_outer.json | 8 + .../block/cracked_dripstone_tiles_slab.json | 8 + .../cracked_dripstone_tiles_slab_top.json | 8 + .../block/cracked_dripstone_tiles_stairs.json | 8 + .../cracked_dripstone_tiles_stairs_inner.json | 8 + .../cracked_dripstone_tiles_stairs_outer.json | 8 + .../models/block/cracked_green_bricks_2.json | 4 +- .../block/cracked_green_bricks_2_slab.json | 8 + .../cracked_green_bricks_2_slab_top.json | 8 + .../block/cracked_green_bricks_2_stairs.json | 8 + .../cracked_green_bricks_2_stairs_inner.json | 8 + .../cracked_green_bricks_2_stairs_outer.json | 8 + .../block/cracked_green_bricks_slab.json | 8 + .../block/cracked_green_bricks_slab_top.json | 8 + .../block/cracked_green_bricks_stairs.json | 8 + .../cracked_green_bricks_stairs_inner.json | 8 + .../cracked_green_bricks_stairs_outer.json | 8 + .../block/cracked_green_concrete_slab.json | 8 + .../cracked_green_concrete_slab_top.json | 8 + .../block/cracked_green_concrete_stairs.json | 8 + .../cracked_green_concrete_stairs_inner.json | 8 + .../cracked_green_concrete_stairs_outer.json | 8 + .../block/cracked_green_white_tiles_slab.json | 8 + .../cracked_green_white_tiles_slab_top.json | 8 + .../cracked_green_white_tiles_stairs.json | 8 + ...racked_green_white_tiles_stairs_inner.json | 8 + ...racked_green_white_tiles_stairs_outer.json | 8 + .../block/cracked_light_blue_bricks_slab.json | 8 + .../cracked_light_blue_bricks_slab_top.json | 8 + .../cracked_light_blue_bricks_stairs.json | 8 + ...racked_light_blue_bricks_stairs_inner.json | 8 + ...racked_light_blue_bricks_stairs_outer.json | 8 + .../block/cracked_light_blue_tiles_slab.json | 8 + .../cracked_light_blue_tiles_slab_top.json | 8 + .../cracked_light_blue_tiles_stairs.json | 8 + ...cracked_light_blue_tiles_stairs_inner.json | 8 + ...cracked_light_blue_tiles_stairs_outer.json | 8 + .../models/block/cracked_red_bricks_slab.json | 8 + .../block/cracked_red_bricks_slab_top.json | 8 + .../block/cracked_red_bricks_stairs.json | 8 + .../cracked_red_bricks_stairs_inner.json | 8 + .../cracked_red_bricks_stairs_outer.json | 8 + .../block/cracked_red_concrete_slab.json | 8 + .../block/cracked_red_concrete_slab_top.json | 8 + .../block/cracked_red_concrete_stairs.json | 8 + .../cracked_red_concrete_stairs_inner.json | 8 + .../cracked_red_concrete_stairs_outer.json | 8 + .../block/cracked_sand_bricks_slab.json | 8 + .../block/cracked_sand_bricks_slab_top.json | 8 + .../block/cracked_sand_bricks_stairs.json | 8 + .../cracked_sand_bricks_stairs_inner.json | 8 + .../cracked_sand_bricks_stairs_outer.json | 8 + .../models/block/cracked_sand_tiles_slab.json | 8 + .../block/cracked_sand_tiles_slab_top.json | 8 + .../block/cracked_sand_tiles_stairs.json | 8 + .../cracked_sand_tiles_stairs_inner.json | 8 + .../cracked_sand_tiles_stairs_outer.json | 8 + .../models/block/cracked_teal_tiles_slab.json | 8 + .../block/cracked_teal_tiles_slab_top.json | 8 + .../block/cracked_teal_tiles_stairs.json | 8 + .../cracked_teal_tiles_stairs_inner.json | 8 + .../cracked_teal_tiles_stairs_outer.json | 8 + .../block/cracked_tuff_bricks_slab.json | 8 + .../block/cracked_tuff_bricks_slab_top.json | 8 + .../block/cracked_tuff_bricks_stairs.json | 8 + .../cracked_tuff_bricks_stairs_inner.json | 8 + .../cracked_tuff_bricks_stairs_outer.json | 8 + .../models/block/cracked_tuff_tiles_slab.json | 8 + .../block/cracked_tuff_tiles_slab_top.json | 8 + .../block/cracked_tuff_tiles_stairs.json | 8 + .../cracked_tuff_tiles_stairs_inner.json | 8 + .../cracked_tuff_tiles_stairs_outer.json | 8 + .../block/cracked_white_concrete_slab.json | 8 + .../cracked_white_concrete_slab_top.json | 8 + .../block/cracked_white_concrete_stairs.json | 8 + .../cracked_white_concrete_stairs_inner.json | 8 + .../cracked_white_concrete_stairs_outer.json | 8 + .../block/cracked_yellow_concrete_slab.json | 8 + .../cracked_yellow_concrete_slab_top.json | 8 + .../block/cracked_yellow_concrete_stairs.json | 8 + .../cracked_yellow_concrete_stairs_inner.json | 8 + .../cracked_yellow_concrete_stairs_outer.json | 8 + .../block/cross_acacia_planks_slab.json | 8 + .../block/cross_acacia_planks_slab_top.json | 8 + .../block/cross_acacia_planks_stairs.json | 8 + .../cross_acacia_planks_stairs_inner.json | 8 + .../cross_acacia_planks_stairs_outer.json | 8 + .../models/block/cross_birch_planks_slab.json | 8 + .../block/cross_birch_planks_slab_top.json | 8 + .../block/cross_birch_planks_stairs.json | 8 + .../cross_birch_planks_stairs_inner.json | 8 + .../cross_birch_planks_stairs_outer.json | 8 + .../block/cross_crimson_planks_slab.json | 8 + .../block/cross_crimson_planks_slab_top.json | 8 + .../block/cross_crimson_planks_stairs.json | 8 + .../cross_crimson_planks_stairs_inner.json | 8 + .../cross_crimson_planks_stairs_outer.json | 8 + .../block/cross_dark_oak_planks_slab.json | 8 + .../block/cross_dark_oak_planks_slab_top.json | 8 + .../block/cross_dark_oak_planks_stairs.json | 8 + .../cross_dark_oak_planks_stairs_inner.json | 8 + .../cross_dark_oak_planks_stairs_outer.json | 8 + .../block/cross_jungle_planks_slab.json | 8 + .../block/cross_jungle_planks_slab_top.json | 8 + .../block/cross_jungle_planks_stairs.json | 8 + .../cross_jungle_planks_stairs_inner.json | 8 + .../cross_jungle_planks_stairs_outer.json | 8 + .../block/cross_mangrove_planks_slab.json | 8 + .../block/cross_mangrove_planks_slab_top.json | 8 + .../block/cross_mangrove_planks_stairs.json | 8 + .../cross_mangrove_planks_stairs_inner.json | 8 + .../cross_mangrove_planks_stairs_outer.json | 8 + .../models/block/cross_oak_planks_slab.json | 8 + .../block/cross_oak_planks_slab_top.json | 8 + .../models/block/cross_oak_planks_stairs.json | 8 + .../block/cross_oak_planks_stairs_inner.json | 8 + .../block/cross_oak_planks_stairs_outer.json | 8 + .../models/block/cross_sand_tiles_slab.json | 8 + .../block/cross_sand_tiles_slab_top.json | 8 + .../models/block/cross_sand_tiles_stairs.json | 8 + .../block/cross_sand_tiles_stairs_inner.json | 8 + .../block/cross_sand_tiles_stairs_outer.json | 8 + .../block/cross_spruce_planks_slab.json | 8 + .../block/cross_spruce_planks_slab_top.json | 8 + .../block/cross_spruce_planks_stairs.json | 8 + .../cross_spruce_planks_stairs_inner.json | 8 + .../cross_spruce_planks_stairs_outer.json | 8 + .../models/block/cyan_linoleum_slab.json | 8 + .../models/block/cyan_linoleum_slab_top.json | 8 + .../models/block/cyan_linoleum_stairs.json | 8 + .../block/cyan_linoleum_stairs_inner.json | 8 + .../block/cyan_linoleum_stairs_outer.json | 8 + .../models/block/dark_brick_tiles_slab.json | 8 + .../block/dark_brick_tiles_slab_top.json | 8 + .../models/block/dark_brick_tiles_stairs.json | 8 + .../block/dark_brick_tiles_stairs_inner.json | 8 + .../block/dark_brick_tiles_stairs_outer.json | 8 + .../models/block/deepslate_tiles_slab.json | 8 + .../block/deepslate_tiles_slab_top.json | 8 + .../models/block/deepslate_tiles_stairs.json | 8 + .../block/deepslate_tiles_stairs_inner.json | 8 + .../block/deepslate_tiles_stairs_outer.json | 8 + .../models/block/diorite_bricks_slab.json | 8 + .../models/block/diorite_bricks_slab_top.json | 8 + .../models/block/diorite_bricks_stairs.json | 8 + .../block/diorite_bricks_stairs_inner.json | 8 + .../block/diorite_bricks_stairs_outer.json | 8 + .../block/dirty_aquamarine_tiles_slab.json | 8 + .../dirty_aquamarine_tiles_slab_top.json | 8 + .../block/dirty_aquamarine_tiles_stairs.json | 8 + .../dirty_aquamarine_tiles_stairs_inner.json | 8 + .../dirty_aquamarine_tiles_stairs_outer.json | 8 + .../models/block/dirty_brick_tiles_slab.json | 8 + .../block/dirty_brick_tiles_slab_top.json | 8 + .../block/dirty_brick_tiles_stairs.json | 8 + .../block/dirty_brick_tiles_stairs_inner.json | 8 + .../block/dirty_brick_tiles_stairs_outer.json | 8 + .../block/dirty_dark_brick_tiles_slab.json | 8 + .../dirty_dark_brick_tiles_slab_top.json | 8 + .../block/dirty_dark_brick_tiles_stairs.json | 8 + .../dirty_dark_brick_tiles_stairs_inner.json | 8 + .../dirty_dark_brick_tiles_stairs_outer.json | 8 + .../models/block/dripstone_tiles_slab.json | 8 + .../block/dripstone_tiles_slab_top.json | 8 + .../models/block/dripstone_tiles_stairs.json | 8 + .../block/dripstone_tiles_stairs_inner.json | 8 + .../block/dripstone_tiles_stairs_outer.json | 8 + .../models/block/gray_linoleum_slab.json | 8 + .../models/block/gray_linoleum_slab_top.json | 8 + .../models/block/gray_linoleum_stairs.json | 8 + .../block/gray_linoleum_stairs_inner.json | 8 + .../block/gray_linoleum_stairs_outer.json | 8 + .../models/block/green_bricks_2_slab.json | 8 + .../models/block/green_bricks_2_slab_top.json | 8 + .../models/block/green_bricks_2_stairs.json | 8 + .../block/green_bricks_2_stairs_inner.json | 8 + .../block/green_bricks_2_stairs_outer.json | 8 + .../models/block/green_bricks_slab.json | 8 + .../models/block/green_bricks_slab_top.json | 8 + .../models/block/green_bricks_stairs.json | 8 + .../block/green_bricks_stairs_inner.json | 8 + .../block/green_bricks_stairs_outer.json | 8 + .../models/block/green_concrete_slab.json | 8 + .../models/block/green_concrete_slab_top.json | 8 + .../models/block/green_concrete_stairs.json | 8 + .../block/green_concrete_stairs_inner.json | 8 + .../block/green_concrete_stairs_outer.json | 8 + .../models/block/green_linoleum_slab.json | 8 + .../models/block/green_linoleum_slab_top.json | 8 + .../models/block/green_linoleum_stairs.json | 8 + .../block/green_linoleum_stairs_inner.json | 8 + .../block/green_linoleum_stairs_outer.json | 8 + .../models/block/green_white_tiles_slab.json | 8 + .../block/green_white_tiles_slab_top.json | 8 + .../block/green_white_tiles_stairs.json | 8 + .../block/green_white_tiles_stairs_inner.json | 8 + .../block/green_white_tiles_stairs_outer.json | 8 + .../block/herringbone_acacia_planks_slab.json | 8 + .../herringbone_acacia_planks_slab_top.json | 8 + .../herringbone_acacia_planks_stairs.json | 8 + ...erringbone_acacia_planks_stairs_inner.json | 8 + ...erringbone_acacia_planks_stairs_outer.json | 8 + .../block/herringbone_birch_planks_slab.json | 8 + .../herringbone_birch_planks_slab_top.json | 8 + .../herringbone_birch_planks_stairs.json | 8 + ...herringbone_birch_planks_stairs_inner.json | 8 + ...herringbone_birch_planks_stairs_outer.json | 8 + .../herringbone_crimson_planks_slab.json | 8 + .../herringbone_crimson_planks_slab_top.json | 8 + .../herringbone_crimson_planks_stairs.json | 8 + ...rringbone_crimson_planks_stairs_inner.json | 8 + ...rringbone_crimson_planks_stairs_outer.json | 8 + .../herringbone_dark_oak_planks_slab.json | 8 + .../herringbone_dark_oak_planks_slab_top.json | 8 + .../herringbone_dark_oak_planks_stairs.json | 8 + ...ringbone_dark_oak_planks_stairs_inner.json | 8 + ...ringbone_dark_oak_planks_stairs_outer.json | 8 + .../block/herringbone_jungle_planks_slab.json | 8 + .../herringbone_jungle_planks_slab_top.json | 8 + .../herringbone_jungle_planks_stairs.json | 8 + ...erringbone_jungle_planks_stairs_inner.json | 8 + ...erringbone_jungle_planks_stairs_outer.json | 8 + .../herringbone_mangrove_planks_slab.json | 8 + .../herringbone_mangrove_planks_slab_top.json | 8 + .../herringbone_mangrove_planks_stairs.json | 8 + ...ringbone_mangrove_planks_stairs_inner.json | 8 + ...ringbone_mangrove_planks_stairs_outer.json | 8 + .../block/herringbone_oak_planks_slab.json | 8 + .../herringbone_oak_planks_slab_top.json | 8 + .../block/herringbone_oak_planks_stairs.json | 8 + .../herringbone_oak_planks_stairs_inner.json | 8 + .../herringbone_oak_planks_stairs_outer.json | 8 + .../block/herringbone_parquet_slab.json | 8 + .../block/herringbone_parquet_slab_top.json | 8 + .../block/herringbone_parquet_stairs.json | 8 + .../herringbone_parquet_stairs_inner.json | 8 + .../herringbone_parquet_stairs_outer.json | 8 + .../block/herringbone_sand_tiles_slab.json | 8 + .../herringbone_sand_tiles_slab_top.json | 8 + .../block/herringbone_sand_tiles_stairs.json | 8 + .../herringbone_sand_tiles_stairs_inner.json | 8 + .../herringbone_sand_tiles_stairs_outer.json | 8 + .../block/herringbone_spruce_planks_slab.json | 8 + .../herringbone_spruce_planks_slab_top.json | 8 + .../herringbone_spruce_planks_stairs.json | 8 + ...erringbone_spruce_planks_stairs_inner.json | 8 + ...erringbone_spruce_planks_stairs_outer.json | 8 + .../models/block/light_blue_bricks_slab.json | 8 + .../block/light_blue_bricks_slab_top.json | 8 + .../block/light_blue_bricks_stairs.json | 8 + .../block/light_blue_bricks_stairs_inner.json | 8 + .../block/light_blue_bricks_stairs_outer.json | 8 + .../models/block/light_blue_tiles_slab.json | 8 + .../block/light_blue_tiles_slab_top.json | 8 + .../models/block/light_blue_tiles_stairs.json | 8 + .../block/light_blue_tiles_stairs_inner.json | 8 + .../block/light_blue_tiles_stairs_outer.json | 8 + .../models/block/metal_plating_slab.json | 8 + .../models/block/metal_plating_slab_top.json | 8 + .../models/block/metal_plating_stairs.json | 8 + .../block/metal_plating_stairs_inner.json | 8 + .../block/metal_plating_stairs_outer.json | 8 + .../block/mossy_aquamarine_tiles_slab.json | 8 + .../mossy_aquamarine_tiles_slab_top.json | 8 + .../block/mossy_aquamarine_tiles_stairs.json | 8 + .../mossy_aquamarine_tiles_stairs_inner.json | 8 + .../mossy_aquamarine_tiles_stairs_outer.json | 8 + .../models/block/mossy_brick_tiles_slab.json | 8 + .../block/mossy_brick_tiles_slab_top.json | 8 + .../block/mossy_brick_tiles_stairs.json | 8 + .../block/mossy_brick_tiles_stairs_inner.json | 8 + .../block/mossy_brick_tiles_stairs_outer.json | 8 + .../block/mossy_calcite_tiles_slab.json | 8 + .../block/mossy_calcite_tiles_slab_top.json | 8 + .../block/mossy_calcite_tiles_stairs.json | 8 + .../mossy_calcite_tiles_stairs_inner.json | 8 + .../mossy_calcite_tiles_stairs_outer.json | 8 + .../block/mossy_dark_brick_tiles_slab.json | 8 + .../mossy_dark_brick_tiles_slab_top.json | 8 + .../block/mossy_dark_brick_tiles_stairs.json | 8 + .../mossy_dark_brick_tiles_stairs_inner.json | 8 + .../mossy_dark_brick_tiles_stairs_outer.json | 8 + .../block/mossy_deepslate_tiles_slab.json | 8 + .../block/mossy_deepslate_tiles_slab_top.json | 8 + .../block/mossy_deepslate_tiles_stairs.json | 8 + .../mossy_deepslate_tiles_stairs_inner.json | 8 + .../mossy_deepslate_tiles_stairs_outer.json | 8 + .../block/mossy_diorite_bricks_slab.json | 8 + .../block/mossy_diorite_bricks_slab_top.json | 8 + .../block/mossy_diorite_bricks_stairs.json | 8 + .../mossy_diorite_bricks_stairs_inner.json | 8 + .../mossy_diorite_bricks_stairs_outer.json | 8 + .../block/mossy_dripstone_tiles_slab.json | 8 + .../block/mossy_dripstone_tiles_slab_top.json | 8 + .../block/mossy_dripstone_tiles_stairs.json | 8 + .../mossy_dripstone_tiles_stairs_inner.json | 8 + .../mossy_dripstone_tiles_stairs_outer.json | 8 + .../block/mossy_green_bricks_2_slab.json | 8 + .../block/mossy_green_bricks_2_slab_top.json | 8 + .../block/mossy_green_bricks_2_stairs.json | 8 + .../mossy_green_bricks_2_stairs_inner.json | 8 + .../mossy_green_bricks_2_stairs_outer.json | 8 + .../models/block/mossy_green_bricks_slab.json | 8 + .../block/mossy_green_bricks_slab_top.json | 8 + .../block/mossy_green_bricks_stairs.json | 8 + .../mossy_green_bricks_stairs_inner.json | 8 + .../mossy_green_bricks_stairs_outer.json | 8 + .../block/mossy_green_white_tiles_slab.json | 8 + .../mossy_green_white_tiles_slab_top.json | 8 + .../block/mossy_green_white_tiles_stairs.json | 8 + .../mossy_green_white_tiles_stairs_inner.json | 8 + .../mossy_green_white_tiles_stairs_outer.json | 8 + .../block/mossy_light_blue_bricks_slab.json | 8 + .../mossy_light_blue_bricks_slab_top.json | 8 + .../block/mossy_light_blue_bricks_stairs.json | 8 + .../mossy_light_blue_bricks_stairs_inner.json | 8 + .../mossy_light_blue_bricks_stairs_outer.json | 8 + .../block/mossy_light_blue_tiles_slab.json | 8 + .../mossy_light_blue_tiles_slab_top.json | 8 + .../block/mossy_light_blue_tiles_stairs.json | 8 + .../mossy_light_blue_tiles_stairs_inner.json | 8 + .../mossy_light_blue_tiles_stairs_outer.json | 8 + .../models/block/mossy_red_bricks_slab.json | 8 + .../block/mossy_red_bricks_slab_top.json | 8 + .../models/block/mossy_red_bricks_stairs.json | 8 + .../block/mossy_red_bricks_stairs_inner.json | 8 + .../block/mossy_red_bricks_stairs_outer.json | 8 + .../models/block/mossy_sand_bricks_slab.json | 8 + .../block/mossy_sand_bricks_slab_top.json | 8 + .../block/mossy_sand_bricks_stairs.json | 8 + .../block/mossy_sand_bricks_stairs_inner.json | 8 + .../block/mossy_sand_bricks_stairs_outer.json | 8 + .../models/block/mossy_sand_tiles_slab.json | 8 + .../block/mossy_sand_tiles_slab_top.json | 8 + .../models/block/mossy_sand_tiles_stairs.json | 8 + .../block/mossy_sand_tiles_stairs_inner.json | 8 + .../block/mossy_sand_tiles_stairs_outer.json | 8 + .../models/block/mossy_teal_tiles_slab.json | 8 + .../block/mossy_teal_tiles_slab_top.json | 8 + .../models/block/mossy_teal_tiles_stairs.json | 8 + .../block/mossy_teal_tiles_stairs_inner.json | 8 + .../block/mossy_teal_tiles_stairs_outer.json | 8 + .../models/block/mossy_tuff_bricks_slab.json | 8 + .../block/mossy_tuff_bricks_slab_top.json | 8 + .../block/mossy_tuff_bricks_stairs.json | 8 + .../block/mossy_tuff_bricks_stairs_inner.json | 8 + .../block/mossy_tuff_bricks_stairs_outer.json | 8 + .../models/block/mossy_tuff_tiles_slab.json | 8 + .../block/mossy_tuff_tiles_slab_top.json | 8 + .../models/block/mossy_tuff_tiles_stairs.json | 8 + .../block/mossy_tuff_tiles_stairs_inner.json | 8 + .../block/mossy_tuff_tiles_stairs_outer.json | 8 + .../models/block/nii_floor_slab.json | 8 + .../models/block/nii_floor_slab_top.json | 8 + .../models/block/nii_floor_stairs.json | 8 + .../models/block/nii_floor_stairs_inner.json | 8 + .../models/block/nii_floor_stairs_outer.json | 8 + .../models/block/orange_linoleum_slab.json | 8 + .../block/orange_linoleum_slab_top.json | 8 + .../models/block/orange_linoleum_stairs.json | 8 + .../block/orange_linoleum_stairs_inner.json | 8 + .../block/orange_linoleum_stairs_outer.json | 8 + .../models/block/red_bricks_slab.json | 8 + .../models/block/red_bricks_slab_top.json | 8 + .../models/block/red_bricks_stairs.json | 8 + .../models/block/red_bricks_stairs_inner.json | 8 + .../models/block/red_bricks_stairs_outer.json | 8 + .../models/block/red_concrete_slab.json | 8 + .../models/block/red_concrete_slab_top.json | 8 + .../models/block/red_concrete_stairs.json | 8 + .../block/red_concrete_stairs_inner.json | 8 + .../block/red_concrete_stairs_outer.json | 8 + .../models/block/red_linoleum_slab.json | 8 + .../models/block/red_linoleum_slab_top.json | 8 + .../models/block/red_linoleum_stairs.json | 8 + .../block/red_linoleum_stairs_inner.json | 8 + .../block/red_linoleum_stairs_outer.json | 8 + .../models/block/sand_bricks_slab.json | 8 + .../models/block/sand_bricks_slab_top.json | 8 + .../models/block/sand_bricks_stairs.json | 8 + .../block/sand_bricks_stairs_inner.json | 8 + .../block/sand_bricks_stairs_outer.json | 8 + .../models/block/sand_tiles_slab.json | 8 + .../models/block/sand_tiles_slab_top.json | 8 + .../models/block/sand_tiles_stairs.json | 8 + .../models/block/sand_tiles_stairs_inner.json | 8 + .../models/block/sand_tiles_stairs_outer.json | 8 + .../models/block/separated_parquet_slab.json | 8 + .../block/separated_parquet_slab_top.json | 8 + .../block/separated_parquet_stairs.json | 8 + .../block/separated_parquet_stairs_inner.json | 8 + .../block/separated_parquet_stairs_outer.json | 8 + .../models/block/straight_parquet_slab.json | 8 + .../block/straight_parquet_slab_top.json | 8 + .../models/block/straight_parquet_stairs.json | 8 + .../block/straight_parquet_stairs_inner.json | 8 + .../block/straight_parquet_stairs_outer.json | 8 + .../models/block/teal_tiles_slab.json | 8 + .../models/block/teal_tiles_slab_top.json | 8 + .../models/block/teal_tiles_stairs.json | 8 + .../models/block/teal_tiles_stairs_inner.json | 8 + .../models/block/teal_tiles_stairs_outer.json | 8 + .../models/block/tuff_bricks_slab.json | 8 + .../models/block/tuff_bricks_slab_top.json | 8 + .../models/block/tuff_bricks_stairs.json | 8 + .../block/tuff_bricks_stairs_inner.json | 8 + .../block/tuff_bricks_stairs_outer.json | 8 + .../models/block/tuff_tiles_slab.json | 8 + .../models/block/tuff_tiles_slab_top.json | 8 + .../models/block/tuff_tiles_stairs.json | 8 + .../models/block/tuff_tiles_stairs_inner.json | 8 + .../models/block/tuff_tiles_stairs_outer.json | 8 + .../block/variated_light_blue_tiles_slab.json | 8 + .../variated_light_blue_tiles_slab_top.json | 8 + .../variated_light_blue_tiles_stairs.json | 8 + ...ariated_light_blue_tiles_stairs_inner.json | 8 + ...ariated_light_blue_tiles_stairs_outer.json | 8 + .../block/variated_teal_tiles_slab.json | 8 + .../block/variated_teal_tiles_slab_top.json | 8 + .../block/variated_teal_tiles_stairs.json | 8 + .../variated_teal_tiles_stairs_inner.json | 8 + .../variated_teal_tiles_stairs_outer.json | 8 + .../models/block/white_concrete_slab.json | 8 + .../models/block/white_concrete_slab_top.json | 8 + .../models/block/white_concrete_stairs.json | 8 + .../block/white_concrete_stairs_inner.json | 8 + .../block/white_concrete_stairs_outer.json | 8 + .../models/block/yellow_concrete_slab.json | 8 + .../block/yellow_concrete_slab_top.json | 8 + .../models/block/yellow_concrete_stairs.json | 8 + .../block/yellow_concrete_stairs_inner.json | 8 + .../block/yellow_concrete_stairs_outer.json | 8 + .../models/item/aquamarine_tiles_slab.json | 3 + .../models/item/aquamarine_tiles_stairs.json | 3 + .../models/item/beige_concrete_slab.json | 3 + .../models/item/beige_concrete_stairs.json | 3 + .../models/item/big_sand_bricks_slab.json | 3 + .../models/item/big_sand_bricks_stairs.json | 3 + .../models/item/blue_concrete_slab.json | 3 + .../models/item/blue_concrete_stairs.json | 3 + .../models/item/blue_linoleum_slab.json | 3 + .../models/item/blue_linoleum_stairs.json | 3 + .../models/item/brick_tiles_slab.json | 3 + .../models/item/brick_tiles_stairs.json | 3 + .../models/item/brown_linoleum_slab.json | 3 + .../models/item/brown_linoleum_stairs.json | 3 + .../models/item/calcite_tiles_slab.json | 3 + .../models/item/calcite_tiles_stairs.json | 3 + .../item/cracked_aquamarine_tiles_slab.json | 3 + .../item/cracked_aquamarine_tiles_stairs.json | 3 + .../item/cracked_beige_concrete_slab.json | 3 + .../item/cracked_beige_concrete_stairs.json | 3 + .../item/cracked_blue_concrete_slab.json | 3 + .../item/cracked_blue_concrete_stairs.json | 3 + .../models/item/cracked_brick_tiles_slab.json | 3 + .../item/cracked_brick_tiles_stairs.json | 3 + .../item/cracked_calcite_tiles_slab.json | 3 + .../item/cracked_calcite_tiles_stairs.json | 3 + .../item/cracked_dark_brick_tiles_slab.json | 3 + .../item/cracked_dark_brick_tiles_stairs.json | 3 + .../item/cracked_deepslate_tiles_slab.json | 3 + .../item/cracked_deepslate_tiles_stairs.json | 3 + .../item/cracked_diorite_bricks_slab.json | 3 + .../item/cracked_diorite_bricks_stairs.json | 3 + .../item/cracked_dripstone_tiles_slab.json | 3 + .../item/cracked_dripstone_tiles_stairs.json | 3 + .../item/cracked_green_bricks_2_slab.json | 3 + .../item/cracked_green_bricks_2_stairs.json | 3 + .../item/cracked_green_bricks_slab.json | 3 + .../item/cracked_green_bricks_stairs.json | 3 + .../item/cracked_green_concrete_slab.json | 3 + .../item/cracked_green_concrete_stairs.json | 3 + .../item/cracked_green_white_tiles_slab.json | 3 + .../cracked_green_white_tiles_stairs.json | 3 + .../item/cracked_light_blue_bricks_slab.json | 3 + .../cracked_light_blue_bricks_stairs.json | 3 + .../item/cracked_light_blue_tiles_slab.json | 3 + .../item/cracked_light_blue_tiles_stairs.json | 3 + .../models/item/cracked_red_bricks_slab.json | 3 + .../item/cracked_red_bricks_stairs.json | 3 + .../item/cracked_red_concrete_slab.json | 3 + .../item/cracked_red_concrete_stairs.json | 3 + .../models/item/cracked_sand_bricks_slab.json | 3 + .../item/cracked_sand_bricks_stairs.json | 3 + .../models/item/cracked_sand_tiles_slab.json | 3 + .../item/cracked_sand_tiles_stairs.json | 3 + .../models/item/cracked_teal_tiles_slab.json | 3 + .../item/cracked_teal_tiles_stairs.json | 3 + .../models/item/cracked_tuff_bricks_slab.json | 3 + .../item/cracked_tuff_bricks_stairs.json | 3 + .../models/item/cracked_tuff_tiles_slab.json | 3 + .../item/cracked_tuff_tiles_stairs.json | 3 + .../item/cracked_white_concrete_slab.json | 3 + .../item/cracked_white_concrete_stairs.json | 3 + .../item/cracked_yellow_concrete_slab.json | 3 + .../item/cracked_yellow_concrete_stairs.json | 3 + .../models/item/cross_acacia_planks_slab.json | 3 + .../item/cross_acacia_planks_stairs.json | 3 + .../models/item/cross_birch_planks_slab.json | 3 + .../item/cross_birch_planks_stairs.json | 3 + .../item/cross_crimson_planks_slab.json | 3 + .../item/cross_crimson_planks_stairs.json | 3 + .../item/cross_dark_oak_planks_slab.json | 3 + .../item/cross_dark_oak_planks_stairs.json | 3 + .../models/item/cross_jungle_planks_slab.json | 3 + .../item/cross_jungle_planks_stairs.json | 3 + .../item/cross_mangrove_planks_slab.json | 3 + .../item/cross_mangrove_planks_stairs.json | 3 + .../models/item/cross_oak_planks_slab.json | 3 + .../models/item/cross_oak_planks_stairs.json | 3 + .../models/item/cross_sand_tiles_slab.json | 3 + .../models/item/cross_sand_tiles_stairs.json | 3 + .../models/item/cross_spruce_planks_slab.json | 3 + .../item/cross_spruce_planks_stairs.json | 3 + .../models/item/cyan_linoleum_slab.json | 3 + .../models/item/cyan_linoleum_stairs.json | 3 + .../models/item/dark_brick_tiles_slab.json | 3 + .../models/item/dark_brick_tiles_stairs.json | 3 + .../models/item/deepslate_tiles_slab.json | 3 + .../models/item/deepslate_tiles_stairs.json | 3 + .../models/item/diorite_bricks_slab.json | 3 + .../models/item/diorite_bricks_stairs.json | 3 + .../item/dirty_aquamarine_tiles_slab.json | 3 + .../item/dirty_aquamarine_tiles_stairs.json | 3 + .../models/item/dirty_brick_tiles_slab.json | 3 + .../models/item/dirty_brick_tiles_stairs.json | 3 + .../item/dirty_dark_brick_tiles_slab.json | 3 + .../item/dirty_dark_brick_tiles_stairs.json | 3 + .../models/item/dripstone_tiles_slab.json | 3 + .../models/item/dripstone_tiles_stairs.json | 3 + .../models/item/gray_linoleum_slab.json | 3 + .../models/item/gray_linoleum_stairs.json | 3 + .../models/item/green_bricks_2_slab.json | 3 + .../models/item/green_bricks_2_stairs.json | 3 + .../models/item/green_bricks_slab.json | 3 + .../models/item/green_bricks_stairs.json | 3 + .../models/item/green_concrete_slab.json | 3 + .../models/item/green_concrete_stairs.json | 3 + .../models/item/green_linoleum_slab.json | 3 + .../models/item/green_linoleum_stairs.json | 3 + .../models/item/green_white_tiles_slab.json | 3 + .../models/item/green_white_tiles_stairs.json | 3 + .../item/herringbone_acacia_planks_slab.json | 3 + .../herringbone_acacia_planks_stairs.json | 3 + .../item/herringbone_birch_planks_slab.json | 3 + .../item/herringbone_birch_planks_stairs.json | 3 + .../item/herringbone_crimson_planks_slab.json | 3 + .../herringbone_crimson_planks_stairs.json | 3 + .../herringbone_dark_oak_planks_slab.json | 3 + .../herringbone_dark_oak_planks_stairs.json | 3 + .../item/herringbone_jungle_planks_slab.json | 3 + .../herringbone_jungle_planks_stairs.json | 3 + .../herringbone_mangrove_planks_slab.json | 3 + .../herringbone_mangrove_planks_stairs.json | 3 + .../item/herringbone_oak_planks_slab.json | 3 + .../item/herringbone_oak_planks_stairs.json | 3 + .../models/item/herringbone_parquet_slab.json | 3 + .../item/herringbone_parquet_stairs.json | 3 + .../item/herringbone_sand_tiles_slab.json | 3 + .../item/herringbone_sand_tiles_stairs.json | 3 + .../item/herringbone_spruce_planks_slab.json | 3 + .../herringbone_spruce_planks_stairs.json | 3 + .../models/item/light_blue_bricks_slab.json | 3 + .../models/item/light_blue_bricks_stairs.json | 3 + .../models/item/light_blue_tiles_slab.json | 3 + .../models/item/light_blue_tiles_stairs.json | 3 + .../models/item/metal_plating_slab.json | 3 + .../models/item/metal_plating_stairs.json | 3 + .../item/mossy_aquamarine_tiles_slab.json | 3 + .../item/mossy_aquamarine_tiles_stairs.json | 3 + .../models/item/mossy_brick_tiles_slab.json | 3 + .../models/item/mossy_brick_tiles_stairs.json | 3 + .../models/item/mossy_calcite_tiles_slab.json | 3 + .../item/mossy_calcite_tiles_stairs.json | 3 + .../item/mossy_dark_brick_tiles_slab.json | 3 + .../item/mossy_dark_brick_tiles_stairs.json | 3 + .../item/mossy_deepslate_tiles_slab.json | 3 + .../item/mossy_deepslate_tiles_stairs.json | 3 + .../item/mossy_diorite_bricks_slab.json | 3 + .../item/mossy_diorite_bricks_stairs.json | 3 + .../item/mossy_dripstone_tiles_slab.json | 3 + .../item/mossy_dripstone_tiles_stairs.json | 3 + .../item/mossy_green_bricks_2_slab.json | 3 + .../item/mossy_green_bricks_2_stairs.json | 3 + .../models/item/mossy_green_bricks_slab.json | 3 + .../item/mossy_green_bricks_stairs.json | 3 + .../item/mossy_green_white_tiles_slab.json | 3 + .../item/mossy_green_white_tiles_stairs.json | 3 + .../item/mossy_light_blue_bricks_slab.json | 3 + .../item/mossy_light_blue_bricks_stairs.json | 3 + .../item/mossy_light_blue_tiles_slab.json | 3 + .../item/mossy_light_blue_tiles_stairs.json | 3 + .../models/item/mossy_red_bricks_slab.json | 3 + .../models/item/mossy_red_bricks_stairs.json | 3 + .../models/item/mossy_sand_bricks_slab.json | 3 + .../models/item/mossy_sand_bricks_stairs.json | 3 + .../models/item/mossy_sand_tiles_slab.json | 3 + .../models/item/mossy_sand_tiles_stairs.json | 3 + .../models/item/mossy_teal_tiles_slab.json | 3 + .../models/item/mossy_teal_tiles_stairs.json | 3 + .../models/item/mossy_tuff_bricks_slab.json | 3 + .../models/item/mossy_tuff_bricks_stairs.json | 3 + .../models/item/mossy_tuff_tiles_slab.json | 3 + .../models/item/mossy_tuff_tiles_stairs.json | 3 + .../models/item/nii_floor_slab.json | 3 + .../models/item/nii_floor_stairs.json | 3 + .../models/item/orange_linoleum_slab.json | 3 + .../models/item/orange_linoleum_stairs.json | 3 + .../assets/new_soviet/models/item/radio.json | 4 - .../models/item/radio_receiver.json | 3 + .../models/item/red_bricks_slab.json | 3 + .../models/item/red_bricks_stairs.json | 3 + .../models/item/red_concrete_slab.json | 3 + .../models/item/red_concrete_stairs.json | 3 + .../models/item/red_linoleum_slab.json | 3 + .../models/item/red_linoleum_stairs.json | 3 + .../models/item/sand_bricks_slab.json | 3 + .../models/item/sand_bricks_stairs.json | 3 + .../models/item/sand_tiles_slab.json | 3 + .../models/item/sand_tiles_stairs.json | 3 + .../models/item/separated_parquet_slab.json | 3 + .../models/item/separated_parquet_stairs.json | 3 + .../models/item/straight_parquet_slab.json | 3 + .../models/item/straight_parquet_stairs.json | 3 + .../models/item/teal_tiles_slab.json | 3 + .../models/item/teal_tiles_stairs.json | 3 + .../models/item/tuff_bricks_slab.json | 3 + .../models/item/tuff_bricks_stairs.json | 3 + .../models/item/tuff_tiles_slab.json | 3 + .../models/item/tuff_tiles_stairs.json | 3 + .../item/variated_light_blue_tiles_slab.json | 3 + .../variated_light_blue_tiles_stairs.json | 3 + .../models/item/variated_teal_tiles_slab.json | 3 + .../item/variated_teal_tiles_stairs.json | 3 + .../models/item/white_concrete_slab.json | 3 + .../models/item/white_concrete_stairs.json | 3 + .../models/item/yellow_concrete_slab.json | 3 + .../models/item/yellow_concrete_stairs.json | 3 + ....png => cracked_green_bricks_with_any.png} | Bin 1537 files changed, 43882 insertions(+), 27 deletions(-) create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/big_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/big_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/blue_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/blue_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/brown_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/brown_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cross_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/cyan_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/cyan_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/gray_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/gray_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/metal_plating_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/metal_plating_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/nii_floor_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/nii_floor_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/orange_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/orange_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_linoleum_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/red_linoleum_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/sand_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/sand_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/sand_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/separated_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/separated_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/straight_parquet_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/straight_parquet_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/tuff_bricks_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/tuff_bricks_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/tuff_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/tuff_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/variated_teal_tiles_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/variated_teal_tiles_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/white_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/white_concrete_stairs.json create mode 100644 src/main/generated/data/new_soviet/recipes/yellow_concrete_slab.json create mode 100644 src/main/generated/data/new_soviet/recipes/yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/blue_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/blue_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/brown_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/brown_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/gray_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/gray_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/metal_plating_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/metal_plating_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/nii_floor_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/nii_floor_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/orange_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/orange_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/red_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/separated_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/separated_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/straight_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/straight_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/blockstates/yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/beige_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/nii_floor_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/nii_floor_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/nii_floor_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_linoleum_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/separated_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/separated_parquet_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/straight_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/straight_parquet_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/teal_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/white_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab_top.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_inner.json create mode 100644 src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_outer.json create mode 100644 src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/big_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/big_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/blue_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/blue_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/brown_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/brown_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cyan_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/cyan_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/gray_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/gray_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/metal_plating_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/metal_plating_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/nii_floor_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/nii_floor_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/orange_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/orange_linoleum_stairs.json delete mode 100644 src/main/resources/assets/new_soviet/models/item/radio.json create mode 100644 src/main/resources/assets/new_soviet/models/item/radio_receiver.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_linoleum_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/red_linoleum_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/sand_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/sand_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/sand_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/sand_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/separated_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/separated_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/straight_parquet_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/straight_parquet_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/tuff_bricks_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/tuff_bricks_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/tuff_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/tuff_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/white_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/white_concrete_stairs.json create mode 100644 src/main/resources/assets/new_soviet/models/item/yellow_concrete_slab.json create mode 100644 src/main/resources/assets/new_soviet/models/item/yellow_concrete_stairs.json rename src/main/resources/assets/new_soviet/textures/block/green/{green_bricks_with_any_cracked.png => cracked_green_bricks_with_any.png} (100%) diff --git a/src/main/generated/data/minecraft/tags/blocks/mineable/axe.json b/src/main/generated/data/minecraft/tags/blocks/mineable/axe.json index 75ad38c..c4385b3 100644 --- a/src/main/generated/data/minecraft/tags/blocks/mineable/axe.json +++ b/src/main/generated/data/minecraft/tags/blocks/mineable/axe.json @@ -37,6 +37,58 @@ "new_soviet:chiseled_spruce_door", "new_soviet:green_wallpaper", "new_soviet:brown_wallpaper", - "new_soviet:beige_wallpaper" + "new_soviet:beige_wallpaper", + "new_soviet:herringbone_acacia_planks_stairs", + "new_soviet:herringbone_acacia_planks_slab", + "new_soviet:cross_acacia_planks_stairs", + "new_soviet:cross_acacia_planks_slab", + "new_soviet:herringbone_oak_planks_stairs", + "new_soviet:herringbone_oak_planks_slab", + "new_soviet:cross_oak_planks_stairs", + "new_soviet:cross_oak_planks_slab", + "new_soviet:herringbone_birch_planks_stairs", + "new_soviet:herringbone_birch_planks_slab", + "new_soviet:cross_birch_planks_stairs", + "new_soviet:cross_birch_planks_slab", + "new_soviet:herringbone_crimson_planks_stairs", + "new_soviet:herringbone_crimson_planks_slab", + "new_soviet:cross_crimson_planks_stairs", + "new_soviet:cross_crimson_planks_slab", + "new_soviet:herringbone_dark_oak_planks_stairs", + "new_soviet:herringbone_dark_oak_planks_slab", + "new_soviet:cross_dark_oak_planks_stairs", + "new_soviet:cross_dark_oak_planks_slab", + "new_soviet:herringbone_jungle_planks_stairs", + "new_soviet:herringbone_jungle_planks_slab", + "new_soviet:cross_jungle_planks_stairs", + "new_soviet:cross_jungle_planks_slab", + "new_soviet:herringbone_mangrove_planks_stairs", + "new_soviet:herringbone_mangrove_planks_slab", + "new_soviet:cross_mangrove_planks_stairs", + "new_soviet:cross_mangrove_planks_slab", + "new_soviet:herringbone_spruce_planks_stairs", + "new_soviet:herringbone_spruce_planks_slab", + "new_soviet:cross_spruce_planks_stairs", + "new_soviet:cross_spruce_planks_slab", + "new_soviet:herringbone_parquet_stairs", + "new_soviet:herringbone_parquet_slab", + "new_soviet:straight_parquet_stairs", + "new_soviet:straight_parquet_slab", + "new_soviet:separated_parquet_stairs", + "new_soviet:separated_parquet_slab", + "new_soviet:green_linoleum_stairs", + "new_soviet:green_linoleum_slab", + "new_soviet:blue_linoleum_stairs", + "new_soviet:blue_linoleum_slab", + "new_soviet:red_linoleum_stairs", + "new_soviet:red_linoleum_slab", + "new_soviet:gray_linoleum_stairs", + "new_soviet:gray_linoleum_slab", + "new_soviet:orange_linoleum_stairs", + "new_soviet:orange_linoleum_slab", + "new_soviet:brown_linoleum_stairs", + "new_soviet:brown_linoleum_slab", + "new_soviet:cyan_linoleum_stairs", + "new_soviet:cyan_linoleum_slab" ] } \ No newline at end of file diff --git a/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json index ab67b35..3d4896d 100644 --- a/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/generated/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -115,6 +115,158 @@ "new_soviet:metal_plating", "new_soviet:concrete_wall", "new_soviet:small_yellow_tiles", - "new_soviet:small_cracked_yellow_tiles" + "new_soviet:small_cracked_yellow_tiles", + "new_soviet:sand_tiles_stairs", + "new_soviet:sand_tiles_slab", + "new_soviet:cracked_sand_tiles_stairs", + "new_soviet:cracked_sand_tiles_slab", + "new_soviet:mossy_sand_tiles_stairs", + "new_soviet:mossy_sand_tiles_slab", + "new_soviet:herringbone_sand_tiles_stairs", + "new_soviet:herringbone_sand_tiles_slab", + "new_soviet:cross_sand_tiles_stairs", + "new_soviet:cross_sand_tiles_slab", + "new_soviet:sand_bricks_stairs", + "new_soviet:sand_bricks_slab", + "new_soviet:cracked_sand_bricks_stairs", + "new_soviet:cracked_sand_bricks_slab", + "new_soviet:mossy_sand_bricks_stairs", + "new_soviet:mossy_sand_bricks_slab", + "new_soviet:big_sand_bricks_stairs", + "new_soviet:big_sand_bricks_slab", + "new_soviet:brick_tiles_stairs", + "new_soviet:brick_tiles_slab", + "new_soviet:cracked_brick_tiles_stairs", + "new_soviet:cracked_brick_tiles_slab", + "new_soviet:mossy_brick_tiles_stairs", + "new_soviet:mossy_brick_tiles_slab", + "new_soviet:dirty_brick_tiles_stairs", + "new_soviet:dirty_brick_tiles_slab", + "new_soviet:dark_brick_tiles_stairs", + "new_soviet:dark_brick_tiles_slab", + "new_soviet:cracked_dark_brick_tiles_stairs", + "new_soviet:cracked_dark_brick_tiles_slab", + "new_soviet:mossy_dark_brick_tiles_stairs", + "new_soviet:mossy_dark_brick_tiles_slab", + "new_soviet:dirty_dark_brick_tiles_stairs", + "new_soviet:dirty_dark_brick_tiles_slab", + "new_soviet:red_bricks_stairs", + "new_soviet:red_bricks_slab", + "new_soviet:cracked_red_bricks_stairs", + "new_soviet:cracked_red_bricks_slab", + "new_soviet:mossy_red_bricks_stairs", + "new_soviet:mossy_red_bricks_slab", + "new_soviet:teal_tiles_stairs", + "new_soviet:teal_tiles_slab", + "new_soviet:cracked_teal_tiles_stairs", + "new_soviet:cracked_teal_tiles_slab", + "new_soviet:mossy_teal_tiles_stairs", + "new_soviet:mossy_teal_tiles_slab", + "new_soviet:variated_teal_tiles_stairs", + "new_soviet:variated_teal_tiles_slab", + "new_soviet:green_bricks_stairs", + "new_soviet:green_bricks_slab", + "new_soviet:cracked_green_bricks_stairs", + "new_soviet:cracked_green_bricks_slab", + "new_soviet:mossy_green_bricks_stairs", + "new_soviet:mossy_green_bricks_slab", + "new_soviet:green_bricks_2_stairs", + "new_soviet:green_bricks_2_slab", + "new_soviet:cracked_green_bricks_2_stairs", + "new_soviet:cracked_green_bricks_2_slab", + "new_soviet:mossy_green_bricks_2_stairs", + "new_soviet:mossy_green_bricks_2_slab", + "new_soviet:aquamarine_tiles_stairs", + "new_soviet:aquamarine_tiles_slab", + "new_soviet:cracked_aquamarine_tiles_stairs", + "new_soviet:cracked_aquamarine_tiles_slab", + "new_soviet:mossy_aquamarine_tiles_stairs", + "new_soviet:mossy_aquamarine_tiles_slab", + "new_soviet:dirty_aquamarine_tiles_stairs", + "new_soviet:dirty_aquamarine_tiles_slab", + "new_soviet:diorite_bricks_stairs", + "new_soviet:diorite_bricks_slab", + "new_soviet:cracked_diorite_bricks_stairs", + "new_soviet:cracked_diorite_bricks_slab", + "new_soviet:mossy_diorite_bricks_stairs", + "new_soviet:mossy_diorite_bricks_slab", + "new_soviet:calcite_tiles_stairs", + "new_soviet:calcite_tiles_slab", + "new_soviet:cracked_calcite_tiles_stairs", + "new_soviet:cracked_calcite_tiles_slab", + "new_soviet:mossy_calcite_tiles_stairs", + "new_soviet:mossy_calcite_tiles_slab", + "new_soviet:dripstone_tiles_stairs", + "new_soviet:dripstone_tiles_slab", + "new_soviet:cracked_dripstone_tiles_stairs", + "new_soviet:cracked_dripstone_tiles_slab", + "new_soviet:mossy_dripstone_tiles_stairs", + "new_soviet:mossy_dripstone_tiles_slab", + "new_soviet:deepslate_tiles_stairs", + "new_soviet:deepslate_tiles_slab", + "new_soviet:cracked_deepslate_tiles_stairs", + "new_soviet:cracked_deepslate_tiles_slab", + "new_soviet:mossy_deepslate_tiles_stairs", + "new_soviet:mossy_deepslate_tiles_slab", + "new_soviet:light_blue_tiles_stairs", + "new_soviet:light_blue_tiles_slab", + "new_soviet:cracked_light_blue_tiles_stairs", + "new_soviet:cracked_light_blue_tiles_slab", + "new_soviet:mossy_light_blue_tiles_stairs", + "new_soviet:mossy_light_blue_tiles_slab", + "new_soviet:variated_light_blue_tiles_stairs", + "new_soviet:variated_light_blue_tiles_slab", + "new_soviet:light_blue_bricks_stairs", + "new_soviet:light_blue_bricks_slab", + "new_soviet:cracked_light_blue_bricks_stairs", + "new_soviet:cracked_light_blue_bricks_slab", + "new_soviet:mossy_light_blue_bricks_stairs", + "new_soviet:mossy_light_blue_bricks_slab", + "new_soviet:green_white_tiles_stairs", + "new_soviet:green_white_tiles_slab", + "new_soviet:cracked_green_white_tiles_stairs", + "new_soviet:cracked_green_white_tiles_slab", + "new_soviet:mossy_green_white_tiles_stairs", + "new_soviet:mossy_green_white_tiles_slab", + "new_soviet:tuff_tiles_stairs", + "new_soviet:tuff_tiles_slab", + "new_soviet:cracked_tuff_tiles_stairs", + "new_soviet:cracked_tuff_tiles_slab", + "new_soviet:mossy_tuff_tiles_stairs", + "new_soviet:mossy_tuff_tiles_slab", + "new_soviet:tuff_bricks_stairs", + "new_soviet:tuff_bricks_slab", + "new_soviet:cracked_tuff_bricks_stairs", + "new_soviet:cracked_tuff_bricks_slab", + "new_soviet:mossy_tuff_bricks_stairs", + "new_soviet:mossy_tuff_bricks_slab", + "new_soviet:white_concrete_stairs", + "new_soviet:white_concrete_slab", + "new_soviet:cracked_white_concrete_stairs", + "new_soviet:cracked_white_concrete_slab", + "new_soviet:beige_concrete_stairs", + "new_soviet:beige_concrete_slab", + "new_soviet:cracked_beige_concrete_stairs", + "new_soviet:cracked_beige_concrete_slab", + "new_soviet:blue_concrete_stairs", + "new_soviet:blue_concrete_slab", + "new_soviet:cracked_blue_concrete_stairs", + "new_soviet:cracked_blue_concrete_slab", + "new_soviet:red_concrete_stairs", + "new_soviet:red_concrete_slab", + "new_soviet:cracked_red_concrete_stairs", + "new_soviet:cracked_red_concrete_slab", + "new_soviet:yellow_concrete_stairs", + "new_soviet:yellow_concrete_slab", + "new_soviet:cracked_yellow_concrete_stairs", + "new_soviet:cracked_yellow_concrete_slab", + "new_soviet:green_concrete_stairs", + "new_soviet:green_concrete_slab", + "new_soviet:cracked_green_concrete_stairs", + "new_soviet:cracked_green_concrete_slab", + "new_soviet:nii_floor_stairs", + "new_soviet:nii_floor_slab", + "new_soviet:metal_plating_stairs", + "new_soviet:metal_plating_slab" ] } \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_slab.json new file mode 100644 index 0000000..9cd8a1c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:aquamarine_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:aquamarine_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..08b873d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/aquamarine_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:aquamarine_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:aquamarine_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_slab.json new file mode 100644 index 0000000..42a0d48 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beige_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:beige_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:beige_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_beige_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:beige_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_stairs.json new file mode 100644 index 0000000..4f47a05 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/beige_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beige_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:beige_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:beige_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_beige_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:beige_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_slab.json new file mode 100644 index 0000000..c5d662f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_big_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:big_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:big_sand_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_big_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:big_sand_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_stairs.json new file mode 100644 index 0000000..9e0e345 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/big_sand_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_big_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:big_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:big_sand_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_big_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:big_sand_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_slab.json new file mode 100644 index 0000000..f38f979 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:blue_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:blue_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_blue_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:blue_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_stairs.json new file mode 100644 index 0000000..07ce559 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:blue_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:blue_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_blue_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:blue_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_slab.json new file mode 100644 index 0000000..3f94015 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:blue_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:blue_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_blue_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:blue_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_stairs.json new file mode 100644 index 0000000..7d66e15 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/blue_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:blue_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:blue_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_blue_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:blue_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_slab.json new file mode 100644 index 0000000..f539754 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_stairs.json new file mode 100644 index 0000000..b335ef1 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_slab.json new file mode 100644 index 0000000..5f3c0b7 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:brown_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:brown_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_brown_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:brown_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_stairs.json new file mode 100644 index 0000000..bdf8626 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/brown_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:brown_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:brown_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_brown_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:brown_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_slab.json new file mode 100644 index 0000000..49ea979 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:calcite_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:calcite_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_stairs.json new file mode 100644 index 0000000..9d4f287 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/calcite_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:calcite_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:calcite_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..721497c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_aquamarine_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_aquamarine_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..5ae2794 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_aquamarine_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_aquamarine_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..3485fde --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_beige_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_beige_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_beige_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_beige_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_beige_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..04310f0 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_beige_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_beige_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_beige_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_beige_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_beige_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_beige_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..f69b178 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_blue_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_blue_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_blue_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_blue_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_blue_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..5cd15af --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_blue_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_blue_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_blue_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_blue_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_blue_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_blue_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..5b95eac --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..f8476ac --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..3b86612 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_calcite_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_calcite_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..f58b7de --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_calcite_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_calcite_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_calcite_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..0d7ed1d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_dark_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_dark_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..4a71751 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_dark_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_dark_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..cfbd26e --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_deepslate_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_deepslate_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..66e450c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_deepslate_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_deepslate_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..db56e27 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_diorite_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_diorite_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..a864a83 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_diorite_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_diorite_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_diorite_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..f41837a --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_dripstone_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_dripstone_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..f6dce87 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_dripstone_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_dripstone_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..3f8b4c2 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_bricks_2_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_bricks_2_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..dcada0a --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_2_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_bricks_2_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_bricks_2_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_slab.json new file mode 100644 index 0000000..f936e31 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..fec5d45 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_slab.json new file mode 100644 index 0000000..05bf245 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..b8ce54c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..4736093 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_white_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_white_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..8de0b01 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_green_white_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_green_white_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_green_white_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..25f6c50 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_light_blue_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_light_blue_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..f374f23 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_light_blue_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_light_blue_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..99b2f6f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_light_blue_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_light_blue_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..7149cb2 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_light_blue_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_light_blue_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_slab.json new file mode 100644 index 0000000..df2e974 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_red_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_red_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..670b91d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_red_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_red_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_slab.json new file mode 100644 index 0000000..4c173e8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_red_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_red_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_red_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_red_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_red_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..c50ae40 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_red_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_red_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_red_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_red_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_red_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_red_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..6d247a6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_sand_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_sand_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..e2d858b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_sand_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_sand_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..75c4b88 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_sand_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_sand_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..54f251b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_sand_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_sand_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_sand_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..8ddb9b5 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_teal_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_teal_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..2dae44a --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_teal_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_teal_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_teal_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..6a48ee1 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_tuff_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_tuff_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..b666e45 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_tuff_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_tuff_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..5b686c9 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_tuff_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_tuff_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..3cddd6b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_tuff_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_tuff_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_tuff_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_slab.json new file mode 100644 index 0000000..192366c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_white_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_white_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_white_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_white_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_white_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..d81730c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_white_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_white_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_white_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_white_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_white_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_white_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..9fc3982 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_yellow_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_yellow_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_yellow_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_yellow_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_yellow_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..bbacc68 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cracked_yellow_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cracked_yellow_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cracked_yellow_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cracked_yellow_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cracked_yellow_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cracked_yellow_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_slab.json new file mode 100644 index 0000000..986a0b8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_acacia_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_acacia_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_acacia_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_acacia_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_acacia_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..4621903 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_acacia_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_acacia_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_acacia_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_acacia_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_acacia_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_acacia_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_slab.json new file mode 100644 index 0000000..d9f9bba --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_birch_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_birch_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_birch_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_birch_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_birch_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_stairs.json new file mode 100644 index 0000000..7fd89ba --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_birch_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_birch_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_birch_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_birch_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_birch_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_birch_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_slab.json new file mode 100644 index 0000000..00a3a0d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_crimson_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_crimson_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_crimson_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_crimson_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_crimson_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..526ba77 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_crimson_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_crimson_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_crimson_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_crimson_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_crimson_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_crimson_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..83a1ce5 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_dark_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_dark_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_dark_oak_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_dark_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_dark_oak_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..0002695 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_dark_oak_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_dark_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_dark_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_dark_oak_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_dark_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_dark_oak_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_slab.json new file mode 100644 index 0000000..412b1ef --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_jungle_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_jungle_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_jungle_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_jungle_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_jungle_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..ee8ec27 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_jungle_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_jungle_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_jungle_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_jungle_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_jungle_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_jungle_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..b386c99 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_mangrove_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_mangrove_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_mangrove_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_mangrove_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_mangrove_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..8297d3d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_mangrove_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_mangrove_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_mangrove_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_mangrove_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_mangrove_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_mangrove_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_slab.json new file mode 100644 index 0000000..22616cd --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_oak_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_oak_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_stairs.json new file mode 100644 index 0000000..6352044 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_oak_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_oak_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_oak_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_slab.json new file mode 100644 index 0000000..37ca08d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_sand_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_sand_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..2171fd5 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_sand_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_sand_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_sand_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_slab.json new file mode 100644 index 0000000..b7cbf92 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_spruce_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_spruce_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_spruce_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_spruce_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_spruce_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..bf4348a --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cross_spruce_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cross_spruce_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cross_spruce_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cross_spruce_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cross_spruce_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cross_spruce_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_slab.json new file mode 100644 index 0000000..e455d4f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cyan_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cyan_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cyan_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cyan_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_stairs.json new file mode 100644 index 0000000..4bd04cd --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/cyan_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:cyan_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:cyan_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_cyan_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:cyan_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_slab.json new file mode 100644 index 0000000..f08837f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dark_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dark_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..27c5ca6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dark_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dark_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dark_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_slab.json new file mode 100644 index 0000000..2b6c498 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:deepslate_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:deepslate_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_stairs.json new file mode 100644 index 0000000..16d0758 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/deepslate_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:deepslate_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:deepslate_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_slab.json new file mode 100644 index 0000000..e4504f9 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:diorite_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:diorite_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_stairs.json new file mode 100644 index 0000000..f1ed3fe --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/diorite_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:diorite_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:diorite_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..fe85f02 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_aquamarine_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_aquamarine_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..66fe9bd --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_aquamarine_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_aquamarine_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..2d89894 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..fc5923b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..75e557e --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_dark_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_dark_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..8c1c0c4 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dirty_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dirty_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dirty_dark_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dirty_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dirty_dark_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_slab.json new file mode 100644 index 0000000..b677385 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dripstone_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dripstone_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_stairs.json new file mode 100644 index 0000000..568ebc3 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/dripstone_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:dripstone_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:dripstone_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_slab.json new file mode 100644 index 0000000..10d3f96 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:gray_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:gray_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_gray_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:gray_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_stairs.json new file mode 100644 index 0000000..dc857e5 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/gray_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:gray_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:gray_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_gray_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:gray_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_slab.json new file mode 100644 index 0000000..5e836a1 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_bricks_2_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_bricks_2_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_stairs.json new file mode 100644 index 0000000..eb08aa0 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_2_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_bricks_2_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_bricks_2_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_slab.json new file mode 100644 index 0000000..6825c53 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_stairs.json new file mode 100644 index 0000000..a011474 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_slab.json new file mode 100644 index 0000000..480dac6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_stairs.json new file mode 100644 index 0000000..b74e15f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_slab.json new file mode 100644 index 0000000..7cfa449 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_stairs.json new file mode 100644 index 0000000..86ea638 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_slab.json new file mode 100644 index 0000000..38821be --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_white_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_white_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_stairs.json new file mode 100644 index 0000000..ffa0f66 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/green_white_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:green_white_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:green_white_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..f94befc --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_acacia_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_acacia_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_acacia_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_acacia_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_acacia_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..ce4be80 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_acacia_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_acacia_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_acacia_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_acacia_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_acacia_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_acacia_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..d7759a6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_birch_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_birch_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_birch_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_birch_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_birch_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..bdf4957 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_birch_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_birch_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_birch_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_birch_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_birch_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_birch_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..ab3ce0f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_crimson_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_crimson_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_crimson_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_crimson_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_crimson_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..3d09505 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_crimson_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_crimson_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_crimson_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_crimson_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_crimson_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_crimson_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..6251e62 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_dark_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_dark_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_dark_oak_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_dark_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_dark_oak_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..14fb904 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_dark_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_dark_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_dark_oak_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_dark_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_dark_oak_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..4a86321 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_jungle_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_jungle_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_jungle_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_jungle_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_jungle_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..c16b55e --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_jungle_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_jungle_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_jungle_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_jungle_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_jungle_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_jungle_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..84de521 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_mangrove_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_mangrove_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_mangrove_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_mangrove_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_mangrove_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..356a7fa --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_mangrove_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_mangrove_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_mangrove_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_mangrove_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_mangrove_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..3285e35 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_oak_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_oak_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..931ccc7 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_oak_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_oak_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_oak_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_oak_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_oak_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_oak_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_slab.json new file mode 100644 index 0000000..b7e2fd8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_parquet_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_parquet_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_stairs.json new file mode 100644 index 0000000..d8e38a0 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_parquet_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_parquet_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_parquet_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..e94c9d6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_sand_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_sand_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..63ec937 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_sand_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_sand_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_sand_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..09a0ede --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_spruce_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_spruce_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_spruce_planks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_spruce_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_spruce_planks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..74d2934 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/herringbone_spruce_planks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_herringbone_spruce_planks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:herringbone_spruce_planks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:herringbone_spruce_planks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_herringbone_spruce_planks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:herringbone_spruce_planks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_slab.json new file mode 100644 index 0000000..976f622 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:light_blue_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:light_blue_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_stairs.json new file mode 100644 index 0000000..f296e09 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:light_blue_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:light_blue_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_slab.json new file mode 100644 index 0000000..4928ca8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:light_blue_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:light_blue_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_stairs.json new file mode 100644 index 0000000..b2b366d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/light_blue_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:light_blue_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:light_blue_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_slab.json new file mode 100644 index 0000000..fb68234 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_metal_plating": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:metal_plating" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:metal_plating_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_metal_plating", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:metal_plating_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_stairs.json new file mode 100644 index 0000000..5c51094 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/metal_plating_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_metal_plating": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:metal_plating" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:metal_plating_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_metal_plating", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:metal_plating_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..62331d6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_aquamarine_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_aquamarine_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..c12b18f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_aquamarine_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_aquamarine_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_aquamarine_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_aquamarine_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_aquamarine_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..f2a39f9 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..c4ea2bc --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..dba37a5 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_calcite_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_calcite_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..5b5cbb8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_calcite_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_calcite_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_calcite_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_calcite_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_calcite_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_calcite_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..62e5849 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_dark_brick_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_dark_brick_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..7a898fd --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_dark_brick_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_dark_brick_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_dark_brick_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_dark_brick_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_dark_brick_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..2cb4514 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_deepslate_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_deepslate_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..8a32063 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_deepslate_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_deepslate_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_deepslate_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_deepslate_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..8549dbd --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_diorite_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_diorite_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..cfc999e --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_diorite_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_diorite_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_diorite_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_diorite_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_diorite_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_diorite_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..9738520 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_dripstone_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_dripstone_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..a99d279 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_dripstone_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_dripstone_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_dripstone_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_dripstone_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_dripstone_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..ce23547 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_bricks_2_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_bricks_2_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..bd1f4e8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_2_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_bricks_2": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_bricks_2" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_bricks_2_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_bricks_2", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_bricks_2_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_slab.json new file mode 100644 index 0000000..9b47939 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..9956ecc --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..76f0a05 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_white_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_white_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..9b20986 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_green_white_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_green_white_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_green_white_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_green_white_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_green_white_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_green_white_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..859c793 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_light_blue_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_light_blue_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..0e5e087 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_light_blue_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_light_blue_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_light_blue_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_light_blue_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_light_blue_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..ae2b5fc --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_light_blue_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_light_blue_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..85c5029 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_light_blue_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_light_blue_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_slab.json new file mode 100644 index 0000000..139a117 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_red_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_red_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..d28af26 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_red_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_red_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_red_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..633c91b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_sand_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_sand_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..58ffaa7 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_sand_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_sand_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..8e88454 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_sand_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_sand_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..cc2f432 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_sand_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_sand_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_sand_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..9879047 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_teal_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_teal_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..ebb6184 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_teal_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_teal_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_teal_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..a8b97c1 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_tuff_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_tuff_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..e35da93 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_tuff_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_tuff_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..3cba177 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_tuff_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_tuff_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..56f290b --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/mossy_tuff_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:mossy_tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:mossy_tuff_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_mossy_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:mossy_tuff_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_slab.json new file mode 100644 index 0000000..55ec400 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nii_floor": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:nii_floor" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:nii_floor_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_nii_floor", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:nii_floor_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_stairs.json new file mode 100644 index 0000000..2042c06 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/nii_floor_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nii_floor": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:nii_floor" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:nii_floor_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_nii_floor", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:nii_floor_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_slab.json new file mode 100644 index 0000000..074b852 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:orange_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:orange_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_orange_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:orange_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_stairs.json new file mode 100644 index 0000000..7379e70 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/orange_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:orange_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:orange_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_orange_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:orange_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_slab.json new file mode 100644 index 0000000..b638fea --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_stairs.json new file mode 100644 index 0000000..8ff1232 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_slab.json new file mode 100644 index 0000000..4e63492 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_stairs.json new file mode 100644 index 0000000..a5ffecf --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_slab.json new file mode 100644 index 0000000..f22e2c4 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_linoleum_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_linoleum_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_stairs.json new file mode 100644 index 0000000..c7e5a57 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/red_linoleum_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_linoleum": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:red_linoleum" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:red_linoleum_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_red_linoleum", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:red_linoleum_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_slab.json new file mode 100644 index 0000000..b79a47c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:sand_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:sand_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_stairs.json new file mode 100644 index 0000000..f5794cb --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:sand_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:sand_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_sand_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:sand_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_tiles_slab.json new file mode 100644 index 0000000..79e19f8 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/sand_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:sand_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:sand_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_sand_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:sand_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_slab.json new file mode 100644 index 0000000..d91c21d --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_separated_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:separated_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:separated_parquet_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_separated_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:separated_parquet_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_stairs.json new file mode 100644 index 0000000..f1e27fa --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/separated_parquet_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_separated_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:separated_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:separated_parquet_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_separated_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:separated_parquet_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_slab.json new file mode 100644 index 0000000..f699704 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_straight_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:straight_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:straight_parquet_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_straight_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:straight_parquet_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_stairs.json new file mode 100644 index 0000000..d00fa6c --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/straight_parquet_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_straight_parquet": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:straight_parquet" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:straight_parquet_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_straight_parquet", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:straight_parquet_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_slab.json new file mode 100644 index 0000000..7228314 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:teal_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:teal_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_stairs.json new file mode 100644 index 0000000..a2431bb --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/teal_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:teal_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:teal_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_slab.json new file mode 100644 index 0000000..dc67867 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:tuff_bricks_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:tuff_bricks_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_stairs.json new file mode 100644 index 0000000..40cdba6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_bricks_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:tuff_bricks_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:tuff_bricks" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_tuff_bricks", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:tuff_bricks_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_slab.json new file mode 100644 index 0000000..145d836 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:tuff_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:tuff_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_stairs.json new file mode 100644 index 0000000..5908c7f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/tuff_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:tuff_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:tuff_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_tuff_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:tuff_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..03d1f0f --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:variated_light_blue_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_variated_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:variated_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_variated_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:variated_light_blue_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..01766ea --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_light_blue_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:variated_light_blue_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_variated_light_blue_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:variated_light_blue_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_variated_light_blue_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:variated_light_blue_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_slab.json new file mode 100644 index 0000000..859b759 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:variated_teal_tiles_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_variated_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:variated_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_variated_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:variated_teal_tiles_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..c0afcea --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/variated_teal_tiles_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:variated_teal_tiles_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_variated_teal_tiles": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:variated_teal_tiles" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_variated_teal_tiles", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:variated_teal_tiles_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_slab.json new file mode 100644 index 0000000..6c957ab --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:white_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:white_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_white_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:white_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_stairs.json new file mode 100644 index 0000000..b29dc67 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/white_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:white_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:white_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_white_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:white_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_slab.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_slab.json new file mode 100644 index 0000000..6a55f17 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_slab.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:yellow_concrete_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:yellow_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_yellow_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:yellow_concrete_slab" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_stairs.json new file mode 100644 index 0000000..796a3a6 --- /dev/null +++ b/src/main/generated/data/new_soviet/advancements/recipes/building_blocks/yellow_concrete_stairs.json @@ -0,0 +1,35 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "new_soviet:yellow_concrete_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_concrete": { + "conditions": { + "items": [ + { + "items": [ + "new_soviet:yellow_concrete" + ] + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_yellow_concrete", + "has_the_recipe" + ] + ], + "rewards": { + "recipes": [ + "new_soviet:yellow_concrete_stairs" + ] + }, + "sends_telemetry_event": false +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_slab.json new file mode 100644 index 0000000..615bf0b --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:aquamarine_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..e102f56 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/aquamarine_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:aquamarine_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_slab.json new file mode 100644 index 0000000..2d237d2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:beige_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_stairs.json new file mode 100644 index 0000000..67a8605 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/beige_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:beige_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_slab.json new file mode 100644 index 0000000..7f749ff --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:big_sand_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_stairs.json new file mode 100644 index 0000000..b27885c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/big_sand_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:big_sand_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_slab.json new file mode 100644 index 0000000..6d99973 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:blue_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_stairs.json new file mode 100644 index 0000000..95eba36 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:blue_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_slab.json new file mode 100644 index 0000000..bd89554 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:blue_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_stairs.json new file mode 100644 index 0000000..47ffbe8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/blue_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:blue_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_slab.json new file mode 100644 index 0000000..80916c7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_stairs.json new file mode 100644 index 0000000..b4d214a --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_slab.json new file mode 100644 index 0000000..76d5fa3 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:brown_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_stairs.json new file mode 100644 index 0000000..4674c26 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/brown_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:brown_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_slab.json new file mode 100644 index 0000000..ce67aec --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:calcite_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_stairs.json new file mode 100644 index 0000000..c24ec18 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/calcite_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:calcite_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..d12ebfb --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_aquamarine_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..c36b673 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_aquamarine_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..c8652fe --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_beige_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..f9d4109 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_beige_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_beige_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..2b5199f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_blue_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..2a16b72 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_blue_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_blue_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..48989ef --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..8cfba98 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..3a72b07 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_calcite_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..a44db27 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_calcite_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_calcite_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..566a0c4 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_dark_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..8a55858 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_dark_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..322dce8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_deepslate_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..01a0b34 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_deepslate_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..de30238 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_diorite_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..83e18fd --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_diorite_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_diorite_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..389309a --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_dripstone_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..c11ce28 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_dripstone_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..eec034d --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_bricks_2_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..f59be64 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_2_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_bricks_2_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_slab.json new file mode 100644 index 0000000..dbf2977 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..20aa036 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_slab.json new file mode 100644 index 0000000..8837a66 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..e40beba --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..87c6efe --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_white_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..fb44551 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_green_white_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_green_white_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..75b9c0d --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_light_blue_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..2ff8928 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_light_blue_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..c3e2ef1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_light_blue_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..6d05897 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_light_blue_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_slab.json new file mode 100644 index 0000000..a0cd6cb --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_red_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..376fa08 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_red_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_slab.json new file mode 100644 index 0000000..4b79525 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_red_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..01c9eca --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_red_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_red_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..6ccf474 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_sand_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..22fab72 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_sand_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..2f75d5e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_sand_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..963ca9a --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_sand_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_sand_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..783aa35 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_teal_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..ba3735b --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_teal_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_teal_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..02d5dc8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_tuff_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..82346d5 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_tuff_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..6fd832c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_tuff_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..be99389 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_tuff_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_tuff_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_slab.json new file mode 100644 index 0000000..17d9825 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_white_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..379a082 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_white_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_white_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..4e2ff07 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_yellow_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..922c191 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cracked_yellow_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cracked_yellow_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_slab.json new file mode 100644 index 0000000..eb73602 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_acacia_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..90c5fc5 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_acacia_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_acacia_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_slab.json new file mode 100644 index 0000000..0e375b2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_birch_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_stairs.json new file mode 100644 index 0000000..b5a1721 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_birch_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_birch_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_slab.json new file mode 100644 index 0000000..4b70f1f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_crimson_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..a17d2a9 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_crimson_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_crimson_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..5b4939c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_dark_oak_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..edfaab2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_dark_oak_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_dark_oak_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_slab.json new file mode 100644 index 0000000..9ecf737 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_jungle_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..46c1fa3 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_jungle_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_jungle_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..b9bfd6c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_mangrove_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..a13fce1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_mangrove_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_mangrove_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_slab.json new file mode 100644 index 0000000..da5005a --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_oak_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_stairs.json new file mode 100644 index 0000000..e044d00 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_oak_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_oak_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_slab.json new file mode 100644 index 0000000..be3ac55 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_sand_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..c005c47 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_sand_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_sand_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_slab.json new file mode 100644 index 0000000..7c0e26f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_spruce_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..bf0b62f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cross_spruce_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cross_spruce_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_slab.json new file mode 100644 index 0000000..d59de8f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cyan_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_stairs.json new file mode 100644 index 0000000..17fde17 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/cyan_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:cyan_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_slab.json new file mode 100644 index 0000000..3fcddab --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dark_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..c22c94e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dark_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dark_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_slab.json new file mode 100644 index 0000000..404d2d8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:deepslate_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_stairs.json new file mode 100644 index 0000000..4d32094 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/deepslate_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:deepslate_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_slab.json new file mode 100644 index 0000000..553c9ca --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:diorite_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_stairs.json new file mode 100644 index 0000000..67e83ae --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/diorite_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:diorite_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..9b16e99 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_aquamarine_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..0093eef --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_aquamarine_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..0e08ff7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..1da78f7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..fe1ddfa --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_dark_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..391b2d0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirty_dark_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_slab.json new file mode 100644 index 0000000..a2ce11e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dripstone_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_stairs.json new file mode 100644 index 0000000..aca2afa --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dripstone_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dripstone_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_slab.json new file mode 100644 index 0000000..701e06e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:gray_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_stairs.json new file mode 100644 index 0000000..7a52bf1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/gray_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:gray_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_slab.json new file mode 100644 index 0000000..1933a05 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_bricks_2_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_stairs.json new file mode 100644 index 0000000..83d18b4 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_2_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_bricks_2_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_slab.json new file mode 100644 index 0000000..e01b1fc --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_stairs.json new file mode 100644 index 0000000..2baea30 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_slab.json new file mode 100644 index 0000000..9a36569 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_stairs.json new file mode 100644 index 0000000..600daec --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_slab.json new file mode 100644 index 0000000..f755a58 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_stairs.json new file mode 100644 index 0000000..4e0477e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_slab.json new file mode 100644 index 0000000..cb52681 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_white_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_stairs.json new file mode 100644 index 0000000..a6977aa --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/green_white_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:green_white_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..32acdc4 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_acacia_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..14aaac7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_acacia_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_acacia_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..50fd581 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_birch_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..55fc847 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_birch_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_birch_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..b83fc36 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_crimson_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..1bc1692 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_crimson_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_crimson_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..d2cee04 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_dark_oak_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..cdfbbae --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_dark_oak_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..52aa842 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_jungle_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..bc0dece --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_jungle_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_jungle_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..29ea883 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_mangrove_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..3fb6877 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_mangrove_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..231834f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_oak_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..6a385b4 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_oak_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_oak_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_slab.json new file mode 100644 index 0000000..0a9e7c0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_parquet_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_stairs.json new file mode 100644 index 0000000..254280c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_parquet_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_parquet_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..2b96338 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_sand_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..7634037 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_sand_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_sand_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..287977e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_spruce_planks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..8030793 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/herringbone_spruce_planks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:herringbone_spruce_planks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_slab.json new file mode 100644 index 0000000..51b1e0a --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:light_blue_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_stairs.json new file mode 100644 index 0000000..66a6ce9 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:light_blue_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_slab.json new file mode 100644 index 0000000..e797746 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:light_blue_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_stairs.json new file mode 100644 index 0000000..863c057 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/light_blue_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:light_blue_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_slab.json new file mode 100644 index 0000000..120e731 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:metal_plating_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_stairs.json new file mode 100644 index 0000000..93764e8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/metal_plating_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:metal_plating_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..046a23d --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_aquamarine_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..edfa3cb --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_aquamarine_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..cf73bd2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..5e04b2f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..1e2a698 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_calcite_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..90d155b --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_calcite_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_calcite_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..c00cca5 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_dark_brick_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..f621865 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_dark_brick_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..900a3fb --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_deepslate_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..51c3885 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_deepslate_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..64e1d09 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_diorite_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..9518817 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_diorite_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_diorite_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..8625bf3 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_dripstone_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..8b6f9e0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_dripstone_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..fce7c80 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_bricks_2_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..49a88fc --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_2_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_bricks_2_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_slab.json new file mode 100644 index 0000000..de0fdf8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..dda3ce2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..6ed9a0f --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_white_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..766ded0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_green_white_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_green_white_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..98ffb21 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_light_blue_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..dc0d7a1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_light_blue_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..4c8d18d --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_light_blue_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..9f74028 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_light_blue_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_slab.json new file mode 100644 index 0000000..244608e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_red_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..9c12dab --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_red_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_red_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..1b465a2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_sand_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..c808e49 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_sand_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..25cf6d1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_sand_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..0c8c295 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_sand_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_sand_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..099b3b1 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_teal_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..5eca7e6 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_teal_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_teal_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..17c3661 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_tuff_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..0087790 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_tuff_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..4342ab9 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_tuff_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..a5dddec --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/mossy_tuff_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:mossy_tuff_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_slab.json new file mode 100644 index 0000000..e23d970 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:nii_floor_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_stairs.json new file mode 100644 index 0000000..87825e8 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/nii_floor_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:nii_floor_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_slab.json new file mode 100644 index 0000000..a21b6db --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:orange_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_stairs.json new file mode 100644 index 0000000..00375ef --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/orange_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:orange_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_slab.json new file mode 100644 index 0000000..11e2985 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_stairs.json new file mode 100644 index 0000000..c71b8d9 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_slab.json new file mode 100644 index 0000000..f2752c0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_stairs.json new file mode 100644 index 0000000..5eff7b3 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_slab.json new file mode 100644 index 0000000..0d998f4 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_linoleum_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_stairs.json new file mode 100644 index 0000000..3750b26 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/red_linoleum_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:red_linoleum_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_slab.json new file mode 100644 index 0000000..2d1b51e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:sand_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_stairs.json new file mode 100644 index 0000000..c9c347c --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:sand_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_slab.json new file mode 100644 index 0000000..4fbcd86 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:sand_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_stairs.json new file mode 100644 index 0000000..615db05 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/sand_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:sand_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_slab.json new file mode 100644 index 0000000..2af1a6d --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:separated_parquet_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_stairs.json new file mode 100644 index 0000000..2989705 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/separated_parquet_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:separated_parquet_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_slab.json new file mode 100644 index 0000000..d4b55f2 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:straight_parquet_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_stairs.json new file mode 100644 index 0000000..bd1f0f7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/straight_parquet_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:straight_parquet_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_slab.json new file mode 100644 index 0000000..9e63d31 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:teal_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_stairs.json new file mode 100644 index 0000000..ec3e191 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/teal_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:teal_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_slab.json new file mode 100644 index 0000000..d41ba8e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:tuff_bricks_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_stairs.json new file mode 100644 index 0000000..f88753b --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_bricks_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:tuff_bricks_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_slab.json new file mode 100644 index 0000000..62854da --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:tuff_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_stairs.json new file mode 100644 index 0000000..a1e63c0 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/tuff_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:tuff_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..3520ef7 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:variated_light_blue_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..0922b66 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_light_blue_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:variated_light_blue_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_slab.json new file mode 100644 index 0000000..104a030 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:variated_teal_tiles_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..3d3a5d9 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/variated_teal_tiles_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:variated_teal_tiles_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_slab.json new file mode 100644 index 0000000..9e5d46e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:white_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_stairs.json new file mode 100644 index 0000000..20e0a7e --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/white_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:white_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_slab.json b/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_slab.json new file mode 100644 index 0000000..5cb2325 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_slab.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:yellow_concrete_slab" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_stairs.json new file mode 100644 index 0000000..2de5182 --- /dev/null +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/yellow_concrete_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:yellow_concrete_stairs" + } + ], + "rolls": 1.0 + } + ] +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_slab.json new file mode 100644 index 0000000..6020220 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:aquamarine_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:aquamarine_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..70ade0f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/aquamarine_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:aquamarine_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:aquamarine_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/beige_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/beige_concrete_slab.json new file mode 100644 index 0000000..02e83c3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/beige_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:beige_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:beige_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/beige_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/beige_concrete_stairs.json new file mode 100644 index 0000000..d9fbcf7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/beige_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:beige_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:beige_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/big_sand_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/big_sand_bricks_slab.json new file mode 100644 index 0000000..e38e0d2 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/big_sand_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:big_sand_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:big_sand_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/big_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/big_sand_bricks_stairs.json new file mode 100644 index 0000000..b7a1607 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/big_sand_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:big_sand_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:big_sand_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/blue_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/blue_concrete_slab.json new file mode 100644 index 0000000..f43effc --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/blue_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:blue_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:blue_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/blue_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/blue_concrete_stairs.json new file mode 100644 index 0000000..f1d2e44 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/blue_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:blue_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:blue_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/blue_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/blue_linoleum_slab.json new file mode 100644 index 0000000..35f27ff --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/blue_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:blue_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:blue_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/blue_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/blue_linoleum_stairs.json new file mode 100644 index 0000000..ab3188b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/blue_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:blue_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:blue_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/brick_tiles_slab.json new file mode 100644 index 0000000..d5aae7b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/brick_tiles_stairs.json new file mode 100644 index 0000000..334f4fb --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/brown_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/brown_linoleum_slab.json new file mode 100644 index 0000000..2a72d9f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/brown_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:brown_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:brown_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/brown_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/brown_linoleum_stairs.json new file mode 100644 index 0000000..49b4ac9 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/brown_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:brown_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:brown_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/calcite_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/calcite_tiles_slab.json new file mode 100644 index 0000000..aabb6f1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/calcite_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:calcite_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:calcite_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/calcite_tiles_stairs.json new file mode 100644 index 0000000..d0b14e3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/calcite_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:calcite_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:calcite_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..dcc6962 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_aquamarine_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_aquamarine_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..4758d0a --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_aquamarine_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_aquamarine_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..10ef6ab --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_beige_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_beige_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..8bf3e1e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_beige_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_beige_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_beige_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..07fe128 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_blue_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_blue_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..4b3d0fa --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_blue_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_blue_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_blue_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..3205eca --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..2ada4c4 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..4c9fa36 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_calcite_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_calcite_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..d76acbb --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_calcite_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_calcite_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_calcite_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..39e3169 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_dark_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_dark_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..c59a987 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_dark_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_dark_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..f386c83 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_deepslate_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_deepslate_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..e4c3803 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_deepslate_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_deepslate_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..673769b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_diorite_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_diorite_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..bcdf421 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_diorite_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_diorite_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_diorite_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..9f522b6 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_dripstone_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_dripstone_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..2c89f63 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_dripstone_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_dripstone_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..f626ed9 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_bricks_2" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_green_bricks_2_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..0ef1c25 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_2_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_bricks_2" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_green_bricks_2_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_slab.json new file mode 100644 index 0000000..5e7ea67 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_green_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..cf81a77 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_green_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_slab.json new file mode 100644 index 0000000..2cd568f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_green_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..dc5ca7e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_green_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..14feabd --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_white_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_green_white_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..96866d6 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_green_white_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_green_white_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_green_white_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..4d9a72d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_light_blue_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_light_blue_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..91f85a4 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_light_blue_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_light_blue_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..77ef70f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_light_blue_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_light_blue_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..5124e2c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_light_blue_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_light_blue_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_slab.json new file mode 100644 index 0000000..9e8002e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_red_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_red_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..2e01970 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_red_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_red_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_red_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_slab.json new file mode 100644 index 0000000..b28bae7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_red_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_red_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..e548c21 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_red_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_red_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_red_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..5ca4f37 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_sand_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_sand_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..940d2b5 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_sand_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_sand_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_sand_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..cdfb6fd --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_sand_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_sand_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..1cb305a --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_sand_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_sand_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_sand_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..4ecdd96 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_teal_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_teal_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..958d11c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_teal_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_teal_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_teal_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..81b081f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_tuff_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_tuff_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..72a530c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_tuff_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_tuff_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_tuff_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..edad7c1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_tuff_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_tuff_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..b7d61bf --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_tuff_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_tuff_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_tuff_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_slab.json new file mode 100644 index 0000000..e894ff2e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_white_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_white_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..76db9fd --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_white_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_white_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_white_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..59dae9b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_yellow_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cracked_yellow_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..c2bd6cc --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cracked_yellow_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cracked_yellow_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cracked_yellow_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_slab.json new file mode 100644 index 0000000..0e2c5ea --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_acacia_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_acacia_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..1758757 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_acacia_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_acacia_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_acacia_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_birch_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_birch_planks_slab.json new file mode 100644 index 0000000..1c09ac3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_birch_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_birch_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_birch_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_birch_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_birch_planks_stairs.json new file mode 100644 index 0000000..f83f2cb --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_birch_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_birch_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_birch_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_slab.json new file mode 100644 index 0000000..3d86450 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_crimson_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_crimson_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..d025596 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_crimson_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_crimson_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_crimson_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..e4c12e1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_dark_oak_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_dark_oak_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..8aafaf7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_dark_oak_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_dark_oak_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_dark_oak_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_slab.json new file mode 100644 index 0000000..cd4c32e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_jungle_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_jungle_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..441c744 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_jungle_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_jungle_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_jungle_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..5ced9fe --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_mangrove_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_mangrove_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..8fca377 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_mangrove_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_mangrove_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_mangrove_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_oak_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_oak_planks_slab.json new file mode 100644 index 0000000..19b71a9 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_oak_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_oak_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_oak_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_oak_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_oak_planks_stairs.json new file mode 100644 index 0000000..e19b16a --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_oak_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_oak_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_oak_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_slab.json new file mode 100644 index 0000000..de389b4 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_sand_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_sand_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..d77e5a5 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_sand_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_sand_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_sand_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_slab.json b/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_slab.json new file mode 100644 index 0000000..9e53323 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_spruce_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cross_spruce_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..50e7d75 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cross_spruce_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cross_spruce_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cross_spruce_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cyan_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/cyan_linoleum_slab.json new file mode 100644 index 0000000..156482b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cyan_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cyan_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:cyan_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/cyan_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/cyan_linoleum_stairs.json new file mode 100644 index 0000000..1a10c96 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/cyan_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:cyan_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:cyan_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_slab.json new file mode 100644 index 0000000..d6b9790 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dark_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:dark_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..451fa59 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dark_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dark_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:dark_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/deepslate_tiles_slab.json new file mode 100644 index 0000000..95a143b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/deepslate_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:deepslate_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:deepslate_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/deepslate_tiles_stairs.json new file mode 100644 index 0000000..6fe8eb0 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/deepslate_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:deepslate_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:deepslate_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/diorite_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/diorite_bricks_slab.json new file mode 100644 index 0000000..4fc6e81 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/diorite_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:diorite_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:diorite_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/diorite_bricks_stairs.json new file mode 100644 index 0000000..46668c9 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/diorite_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:diorite_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:diorite_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..af6168a --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_aquamarine_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:dirty_aquamarine_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..cdc5fd0 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_aquamarine_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:dirty_aquamarine_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..46146f8 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:dirty_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..e2af01b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:dirty_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..416e990 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_dark_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:dirty_dark_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..adfd100 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dirty_dark_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:dirty_dark_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/dripstone_tiles_slab.json new file mode 100644 index 0000000..75e153e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dripstone_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dripstone_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:dripstone_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/dripstone_tiles_stairs.json new file mode 100644 index 0000000..26216ca --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/dripstone_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:dripstone_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:dripstone_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/gray_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/gray_linoleum_slab.json new file mode 100644 index 0000000..5446ec5 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/gray_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:gray_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:gray_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/gray_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/gray_linoleum_stairs.json new file mode 100644 index 0000000..f336248 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/gray_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:gray_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:gray_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_bricks_2_slab.json b/src/main/generated/data/new_soviet/recipes/green_bricks_2_slab.json new file mode 100644 index 0000000..d94fc5e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_bricks_2_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_bricks_2" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:green_bricks_2_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/recipes/green_bricks_2_stairs.json new file mode 100644 index 0000000..baa226f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_bricks_2_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_bricks_2" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:green_bricks_2_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/green_bricks_slab.json new file mode 100644 index 0000000..63f6603 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:green_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/green_bricks_stairs.json new file mode 100644 index 0000000..1b7abef --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:green_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/green_concrete_slab.json new file mode 100644 index 0000000..2176a56 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:green_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/green_concrete_stairs.json new file mode 100644 index 0000000..50c61fa --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:green_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/green_linoleum_slab.json new file mode 100644 index 0000000..1d70127 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:green_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/green_linoleum_stairs.json new file mode 100644 index 0000000..831fa59 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:green_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_white_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/green_white_tiles_slab.json new file mode 100644 index 0000000..7507834 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_white_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_white_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:green_white_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/green_white_tiles_stairs.json new file mode 100644 index 0000000..6a50296 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/green_white_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:green_white_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:green_white_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..79fa540 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_acacia_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_acacia_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..404dfe3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_acacia_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_acacia_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_acacia_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..21bcc2c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_birch_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_birch_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..93439d9 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_birch_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_birch_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_birch_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..552ae08 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_crimson_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_crimson_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..26b09df --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_crimson_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_crimson_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_crimson_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..dd74385 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_dark_oak_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_dark_oak_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..523d727 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_dark_oak_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_dark_oak_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..30bc29d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_jungle_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_jungle_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..8d2daeb --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_jungle_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_jungle_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_jungle_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..bfa1126 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_mangrove_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_mangrove_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..77abc6d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_mangrove_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_mangrove_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..633387d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_oak_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_oak_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..166cfd6 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_oak_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_oak_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_oak_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_parquet_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_parquet_slab.json new file mode 100644 index 0000000..8b98759 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_parquet_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_parquet" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_parquet_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_parquet_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_parquet_stairs.json new file mode 100644 index 0000000..ef64912 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_parquet_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_parquet" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_parquet_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..c36f4e2 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_sand_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_sand_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..795d697 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_sand_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_sand_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_sand_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_slab.json b/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..fc19d1d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_spruce_planks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:herringbone_spruce_planks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_stairs.json b/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..efeb1e8 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/herringbone_spruce_planks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:herringbone_spruce_planks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:herringbone_spruce_planks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/light_blue_bricks_slab.json new file mode 100644 index 0000000..872dbe0 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/light_blue_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:light_blue_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:light_blue_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/light_blue_bricks_stairs.json new file mode 100644 index 0000000..a62bc42 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/light_blue_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:light_blue_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:light_blue_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/light_blue_tiles_slab.json new file mode 100644 index 0000000..79e5806 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/light_blue_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:light_blue_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:light_blue_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/light_blue_tiles_stairs.json new file mode 100644 index 0000000..573ab94 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/light_blue_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:light_blue_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:light_blue_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/metal_plating_slab.json b/src/main/generated/data/new_soviet/recipes/metal_plating_slab.json new file mode 100644 index 0000000..51d2506 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/metal_plating_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:metal_plating" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:metal_plating_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/metal_plating_stairs.json b/src/main/generated/data/new_soviet/recipes/metal_plating_stairs.json new file mode 100644 index 0000000..e6b4058 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/metal_plating_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:metal_plating" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:metal_plating_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..afc01c1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_aquamarine_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_aquamarine_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..1fc913e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_aquamarine_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_aquamarine_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..fb2ccfd --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..92bbf6f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..133a9da --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_calcite_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_calcite_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..255df7b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_calcite_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_calcite_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_calcite_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..1498516 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_dark_brick_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_dark_brick_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..3d50fff --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_dark_brick_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_dark_brick_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..8164154 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_deepslate_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_deepslate_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..3398e5b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_deepslate_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_deepslate_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..4f71284 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_diorite_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_diorite_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..6dccdd0 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_diorite_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_diorite_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_diorite_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..8b9e702 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_dripstone_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_dripstone_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..2f5fdae --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_dripstone_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_dripstone_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..84f5644 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_bricks_2" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_green_bricks_2_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..f315e18 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_2_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_bricks_2" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_green_bricks_2_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_slab.json new file mode 100644 index 0000000..5918fed --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_green_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..9be0520 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_green_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..6e52c96 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_white_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_green_white_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..21efe35 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_green_white_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_green_white_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_green_white_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..ff66878 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_light_blue_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_light_blue_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..946bdb0 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_light_blue_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_light_blue_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..3f9ade7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_light_blue_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_light_blue_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..1eed582 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_light_blue_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_light_blue_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_slab.json new file mode 100644 index 0000000..e7da20c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_red_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_red_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..4bbc153 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_red_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_red_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_red_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..5266cfd --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_sand_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_sand_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..339a21d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_sand_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_sand_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_sand_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..bd9876e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_sand_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_sand_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..c58c367 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_sand_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_sand_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_sand_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..f9e1a6a --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_teal_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_teal_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..f34686d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_teal_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_teal_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_teal_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..3513288 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_tuff_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_tuff_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..84fcb54 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_tuff_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_tuff_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_tuff_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..f3d4acb --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_tuff_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:mossy_tuff_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..503f96d --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/mossy_tuff_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:mossy_tuff_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:mossy_tuff_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/nii_floor_slab.json b/src/main/generated/data/new_soviet/recipes/nii_floor_slab.json new file mode 100644 index 0000000..1340c7b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/nii_floor_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:nii_floor" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:nii_floor_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/nii_floor_stairs.json b/src/main/generated/data/new_soviet/recipes/nii_floor_stairs.json new file mode 100644 index 0000000..96eb8d2 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/nii_floor_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:nii_floor" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:nii_floor_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/orange_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/orange_linoleum_slab.json new file mode 100644 index 0000000..794dee7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/orange_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:orange_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:orange_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/orange_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/orange_linoleum_stairs.json new file mode 100644 index 0000000..319383f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/orange_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:orange_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:orange_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/red_bricks_slab.json new file mode 100644 index 0000000..6ff8aa7 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:red_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/red_bricks_stairs.json new file mode 100644 index 0000000..96ce629 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:red_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/red_concrete_slab.json new file mode 100644 index 0000000..1bda5a1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:red_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/red_concrete_stairs.json new file mode 100644 index 0000000..a7ff5f3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:red_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_linoleum_slab.json b/src/main/generated/data/new_soviet/recipes/red_linoleum_slab.json new file mode 100644 index 0000000..c8d7b33 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_linoleum_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_linoleum" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:red_linoleum_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/red_linoleum_stairs.json b/src/main/generated/data/new_soviet/recipes/red_linoleum_stairs.json new file mode 100644 index 0000000..9d4568f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/red_linoleum_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:red_linoleum" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:red_linoleum_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/sand_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/sand_bricks_slab.json new file mode 100644 index 0000000..a99f76e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/sand_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:sand_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:sand_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/sand_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/sand_bricks_stairs.json new file mode 100644 index 0000000..0ca5831 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/sand_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:sand_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:sand_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/sand_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/sand_tiles_slab.json new file mode 100644 index 0000000..63fc1d2 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/sand_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:sand_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:sand_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/separated_parquet_slab.json b/src/main/generated/data/new_soviet/recipes/separated_parquet_slab.json new file mode 100644 index 0000000..3a66234 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/separated_parquet_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:separated_parquet" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:separated_parquet_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/separated_parquet_stairs.json b/src/main/generated/data/new_soviet/recipes/separated_parquet_stairs.json new file mode 100644 index 0000000..43a26a1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/separated_parquet_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:separated_parquet" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:separated_parquet_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/straight_parquet_slab.json b/src/main/generated/data/new_soviet/recipes/straight_parquet_slab.json new file mode 100644 index 0000000..c8f6f9f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/straight_parquet_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:straight_parquet" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:straight_parquet_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/straight_parquet_stairs.json b/src/main/generated/data/new_soviet/recipes/straight_parquet_stairs.json new file mode 100644 index 0000000..33b736c --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/straight_parquet_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:straight_parquet" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:straight_parquet_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/teal_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/teal_tiles_slab.json new file mode 100644 index 0000000..243f575 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/teal_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:teal_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:teal_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/teal_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/teal_tiles_stairs.json new file mode 100644 index 0000000..ba3db95 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/teal_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:teal_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:teal_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/tuff_bricks_slab.json b/src/main/generated/data/new_soviet/recipes/tuff_bricks_slab.json new file mode 100644 index 0000000..5db17b3 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/tuff_bricks_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:tuff_bricks" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:tuff_bricks_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/tuff_bricks_stairs.json b/src/main/generated/data/new_soviet/recipes/tuff_bricks_stairs.json new file mode 100644 index 0000000..9be836b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/tuff_bricks_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:tuff_bricks" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:tuff_bricks_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/tuff_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/tuff_tiles_slab.json new file mode 100644 index 0000000..c5f204f --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/tuff_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:tuff_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:tuff_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/tuff_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/tuff_tiles_stairs.json new file mode 100644 index 0000000..4c6dd3e --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/tuff_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:tuff_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:tuff_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..6ac093b --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:variated_light_blue_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:variated_light_blue_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..5e7f5ba --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/variated_light_blue_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:variated_light_blue_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:variated_light_blue_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_slab.json b/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_slab.json new file mode 100644 index 0000000..400a783 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:variated_teal_tiles" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:variated_teal_tiles_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_stairs.json b/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..4e45794 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/variated_teal_tiles_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:variated_teal_tiles" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:variated_teal_tiles_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/white_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/white_concrete_slab.json new file mode 100644 index 0000000..25f9708 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/white_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:white_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:white_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/white_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/white_concrete_stairs.json new file mode 100644 index 0000000..313b6e1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/white_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:white_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:white_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/yellow_concrete_slab.json b/src/main/generated/data/new_soviet/recipes/yellow_concrete_slab.json new file mode 100644 index 0000000..21632cf --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/yellow_concrete_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:yellow_concrete" + } + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "item": "new_soviet:yellow_concrete_slab" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/generated/data/new_soviet/recipes/yellow_concrete_stairs.json b/src/main/generated/data/new_soviet/recipes/yellow_concrete_stairs.json new file mode 100644 index 0000000..debede1 --- /dev/null +++ b/src/main/generated/data/new_soviet/recipes/yellow_concrete_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": { + "item": "new_soviet:yellow_concrete" + } + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "item": "new_soviet:yellow_concrete_stairs" + }, + "show_notification": true +} \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/DataGeneration.java b/src/main/java/su/a71/new_soviet/DataGeneration.java index 90c3ef8..ee8054e 100644 --- a/src/main/java/su/a71/new_soviet/DataGeneration.java +++ b/src/main/java/su/a71/new_soviet/DataGeneration.java @@ -242,6 +242,212 @@ public class DataGeneration implements DataGeneratorEntrypoint { addDrop(NSE_Custom.LAMP); addDrop(NSE_Custom.CEILING_FAN); addDrop(NSE_Custom.SWITCH); + + // Generated stairs and slabs drops + addDrop(NSE_Blocks.SAND_TILES_SLAB); + addDrop(NSE_Blocks.SAND_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_SAND_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_SAND_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_SAND_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_SAND_TILES_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_SAND_TILES_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_SAND_TILES_STAIRS); + addDrop(NSE_Blocks.CROSS_SAND_TILES_SLAB); + addDrop(NSE_Blocks.CROSS_SAND_TILES_STAIRS); + addDrop(NSE_Blocks.SAND_BRICKS_SLAB); + addDrop(NSE_Blocks.SAND_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_SAND_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_SAND_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_SAND_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_SAND_BRICKS_STAIRS); + addDrop(NSE_Blocks.BIG_SAND_BRICKS_SLAB); + addDrop(NSE_Blocks.BIG_SAND_BRICKS_STAIRS); + addDrop(NSE_Blocks.BRICK_TILES_SLAB); + addDrop(NSE_Blocks.BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.DIRTY_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.DIRTY_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.DARK_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.DARK_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_DARK_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_DARK_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_DARK_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_DARK_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.DIRTY_DARK_BRICK_TILES_SLAB); + addDrop(NSE_Blocks.DIRTY_DARK_BRICK_TILES_STAIRS); + addDrop(NSE_Blocks.RED_BRICKS_SLAB); + addDrop(NSE_Blocks.RED_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_RED_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_RED_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_RED_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_RED_BRICKS_STAIRS); + addDrop(NSE_Blocks.TEAL_TILES_SLAB); + addDrop(NSE_Blocks.TEAL_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_TEAL_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_TEAL_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_TEAL_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_TEAL_TILES_STAIRS); + addDrop(NSE_Blocks.VARIATED_TEAL_TILES_SLAB); + addDrop(NSE_Blocks.VARIATED_TEAL_TILES_STAIRS); + addDrop(NSE_Blocks.GREEN_BRICKS_SLAB); + addDrop(NSE_Blocks.GREEN_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_GREEN_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_GREEN_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_GREEN_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_GREEN_BRICKS_STAIRS); + addDrop(NSE_Blocks.GREEN_BRICKS_2_SLAB); + addDrop(NSE_Blocks.GREEN_BRICKS_2_STAIRS); + addDrop(NSE_Blocks.CRACKED_GREEN_BRICKS_2_SLAB); + addDrop(NSE_Blocks.CRACKED_GREEN_BRICKS_2_STAIRS); + addDrop(NSE_Blocks.MOSSY_GREEN_BRICKS_2_SLAB); + addDrop(NSE_Blocks.MOSSY_GREEN_BRICKS_2_STAIRS); + addDrop(NSE_Blocks.AQUAMARINE_TILES_SLAB); + addDrop(NSE_Blocks.AQUAMARINE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_AQUAMARINE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_AQUAMARINE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_AQUAMARINE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_AQUAMARINE_TILES_STAIRS); + addDrop(NSE_Blocks.DIRTY_AQUAMARINE_TILES_SLAB); + addDrop(NSE_Blocks.DIRTY_AQUAMARINE_TILES_STAIRS); + addDrop(NSE_Blocks.DIORITE_BRICKS_SLAB); + addDrop(NSE_Blocks.DIORITE_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_DIORITE_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_DIORITE_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_DIORITE_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_DIORITE_BRICKS_STAIRS); + addDrop(NSE_Blocks.CALCITE_TILES_SLAB); + addDrop(NSE_Blocks.CALCITE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_CALCITE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_CALCITE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_CALCITE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_CALCITE_TILES_STAIRS); + addDrop(NSE_Blocks.DRIPSTONE_TILES_SLAB); + addDrop(NSE_Blocks.DRIPSTONE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_DRIPSTONE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_DRIPSTONE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_DRIPSTONE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_DRIPSTONE_TILES_STAIRS); + addDrop(NSE_Blocks.DEEPSLATE_TILES_SLAB); + addDrop(NSE_Blocks.DEEPSLATE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_DEEPSLATE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_DEEPSLATE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_DEEPSLATE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_DEEPSLATE_TILES_STAIRS); + addDrop(NSE_Blocks.LIGHT_BLUE_TILES_SLAB); + addDrop(NSE_Blocks.LIGHT_BLUE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_STAIRS); + addDrop(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_SLAB); + addDrop(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_STAIRS); + addDrop(NSE_Blocks.LIGHT_BLUE_BRICKS_SLAB); + addDrop(NSE_Blocks.LIGHT_BLUE_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_STAIRS); + addDrop(NSE_Blocks.GREEN_WHITE_TILES_SLAB); + addDrop(NSE_Blocks.GREEN_WHITE_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_GREEN_WHITE_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_GREEN_WHITE_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_GREEN_WHITE_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_GREEN_WHITE_TILES_STAIRS); + addDrop(NSE_Blocks.TUFF_TILES_SLAB); + addDrop(NSE_Blocks.TUFF_TILES_STAIRS); + addDrop(NSE_Blocks.CRACKED_TUFF_TILES_SLAB); + addDrop(NSE_Blocks.CRACKED_TUFF_TILES_STAIRS); + addDrop(NSE_Blocks.MOSSY_TUFF_TILES_SLAB); + addDrop(NSE_Blocks.MOSSY_TUFF_TILES_STAIRS); + addDrop(NSE_Blocks.TUFF_BRICKS_SLAB); + addDrop(NSE_Blocks.TUFF_BRICKS_STAIRS); + addDrop(NSE_Blocks.CRACKED_TUFF_BRICKS_SLAB); + addDrop(NSE_Blocks.CRACKED_TUFF_BRICKS_STAIRS); + addDrop(NSE_Blocks.MOSSY_TUFF_BRICKS_SLAB); + addDrop(NSE_Blocks.MOSSY_TUFF_BRICKS_STAIRS); + addDrop(NSE_Blocks.WHITE_CONCRETE_SLAB); + addDrop(NSE_Blocks.WHITE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_WHITE_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_WHITE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.BEIGE_CONCRETE_SLAB); + addDrop(NSE_Blocks.BEIGE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_BEIGE_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_BEIGE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.BLUE_CONCRETE_SLAB); + addDrop(NSE_Blocks.BLUE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_BLUE_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_BLUE_CONCRETE_STAIRS); + addDrop(NSE_Blocks.RED_CONCRETE_SLAB); + addDrop(NSE_Blocks.RED_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_RED_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_RED_CONCRETE_STAIRS); + addDrop(NSE_Blocks.YELLOW_CONCRETE_SLAB); + addDrop(NSE_Blocks.YELLOW_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_YELLOW_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_YELLOW_CONCRETE_STAIRS); + addDrop(NSE_Blocks.GREEN_CONCRETE_SLAB); + addDrop(NSE_Blocks.GREEN_CONCRETE_STAIRS); + addDrop(NSE_Blocks.CRACKED_GREEN_CONCRETE_SLAB); + addDrop(NSE_Blocks.CRACKED_GREEN_CONCRETE_STAIRS); + addDrop(NSE_Blocks.NII_FLOOR_SLAB); + addDrop(NSE_Blocks.NII_FLOOR_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_ACACIA_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_ACACIA_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_OAK_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_OAK_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_OAK_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_OAK_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_BIRCH_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_BIRCH_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_CRIMSON_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_CRIMSON_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_DARK_OAK_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_DARK_OAK_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_JUNGLE_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_JUNGLE_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_MANGROVE_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_MANGROVE_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_STAIRS); + addDrop(NSE_Blocks.CROSS_SPRUCE_PLANKS_SLAB); + addDrop(NSE_Blocks.CROSS_SPRUCE_PLANKS_STAIRS); + addDrop(NSE_Blocks.HERRINGBONE_PARQUET_SLAB); + addDrop(NSE_Blocks.HERRINGBONE_PARQUET_STAIRS); + addDrop(NSE_Blocks.STRAIGHT_PARQUET_SLAB); + addDrop(NSE_Blocks.STRAIGHT_PARQUET_STAIRS); + addDrop(NSE_Blocks.SEPARATED_PARQUET_SLAB); + addDrop(NSE_Blocks.SEPARATED_PARQUET_STAIRS); + addDrop(NSE_Blocks.GREEN_LINOLEUM_SLAB); + addDrop(NSE_Blocks.GREEN_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.BLUE_LINOLEUM_SLAB); + addDrop(NSE_Blocks.BLUE_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.RED_LINOLEUM_SLAB); + addDrop(NSE_Blocks.RED_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.GRAY_LINOLEUM_SLAB); + addDrop(NSE_Blocks.GRAY_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.ORANGE_LINOLEUM_SLAB); + addDrop(NSE_Blocks.ORANGE_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.BROWN_LINOLEUM_SLAB); + addDrop(NSE_Blocks.BROWN_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.CYAN_LINOLEUM_SLAB); + addDrop(NSE_Blocks.CYAN_LINOLEUM_STAIRS); + addDrop(NSE_Blocks.METAL_PLATING_SLAB); + addDrop(NSE_Blocks.METAL_PLATING_STAIRS); } } @@ -369,7 +575,159 @@ public class DataGeneration implements DataGeneratorEntrypoint { .add(NSE_Blocks.METAL_PLATING) .add(NSE_Blocks.CONCRETE_WALL) .add(NSE_Blocks.SMALL_YELLOW_TILES) - .add(NSE_Blocks.SMALL_CRACKED_YELLOW_TILES); + .add(NSE_Blocks.SMALL_CRACKED_YELLOW_TILES) + .add(NSE_Blocks.SAND_TILES_STAIRS) + .add(NSE_Blocks.SAND_TILES_SLAB) + .add(NSE_Blocks.CRACKED_SAND_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_SAND_TILES_SLAB) + .add(NSE_Blocks.MOSSY_SAND_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_SAND_TILES_SLAB) + .add(NSE_Blocks.HERRINGBONE_SAND_TILES_STAIRS) + .add(NSE_Blocks.HERRINGBONE_SAND_TILES_SLAB) + .add(NSE_Blocks.CROSS_SAND_TILES_STAIRS) + .add(NSE_Blocks.CROSS_SAND_TILES_SLAB) + .add(NSE_Blocks.SAND_BRICKS_STAIRS) + .add(NSE_Blocks.SAND_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_SAND_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_SAND_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_SAND_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_SAND_BRICKS_SLAB) + .add(NSE_Blocks.BIG_SAND_BRICKS_STAIRS) + .add(NSE_Blocks.BIG_SAND_BRICKS_SLAB) + .add(NSE_Blocks.BRICK_TILES_STAIRS) + .add(NSE_Blocks.BRICK_TILES_SLAB) + .add(NSE_Blocks.CRACKED_BRICK_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_BRICK_TILES_SLAB) + .add(NSE_Blocks.MOSSY_BRICK_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_BRICK_TILES_SLAB) + .add(NSE_Blocks.DIRTY_BRICK_TILES_STAIRS) + .add(NSE_Blocks.DIRTY_BRICK_TILES_SLAB) + .add(NSE_Blocks.DARK_BRICK_TILES_STAIRS) + .add(NSE_Blocks.DARK_BRICK_TILES_SLAB) + .add(NSE_Blocks.CRACKED_DARK_BRICK_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_DARK_BRICK_TILES_SLAB) + .add(NSE_Blocks.MOSSY_DARK_BRICK_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_DARK_BRICK_TILES_SLAB) + .add(NSE_Blocks.DIRTY_DARK_BRICK_TILES_STAIRS) + .add(NSE_Blocks.DIRTY_DARK_BRICK_TILES_SLAB) + .add(NSE_Blocks.RED_BRICKS_STAIRS) + .add(NSE_Blocks.RED_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_RED_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_RED_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_RED_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_RED_BRICKS_SLAB) + .add(NSE_Blocks.TEAL_TILES_STAIRS) + .add(NSE_Blocks.TEAL_TILES_SLAB) + .add(NSE_Blocks.CRACKED_TEAL_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_TEAL_TILES_SLAB) + .add(NSE_Blocks.MOSSY_TEAL_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_TEAL_TILES_SLAB) + .add(NSE_Blocks.VARIATED_TEAL_TILES_STAIRS) + .add(NSE_Blocks.VARIATED_TEAL_TILES_SLAB) + .add(NSE_Blocks.GREEN_BRICKS_STAIRS) + .add(NSE_Blocks.GREEN_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_GREEN_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_GREEN_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_GREEN_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_GREEN_BRICKS_SLAB) + .add(NSE_Blocks.GREEN_BRICKS_2_STAIRS) + .add(NSE_Blocks.GREEN_BRICKS_2_SLAB) + .add(NSE_Blocks.CRACKED_GREEN_BRICKS_2_STAIRS) + .add(NSE_Blocks.CRACKED_GREEN_BRICKS_2_SLAB) + .add(NSE_Blocks.MOSSY_GREEN_BRICKS_2_STAIRS) + .add(NSE_Blocks.MOSSY_GREEN_BRICKS_2_SLAB) + .add(NSE_Blocks.AQUAMARINE_TILES_STAIRS) + .add(NSE_Blocks.AQUAMARINE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_AQUAMARINE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_AQUAMARINE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_AQUAMARINE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_AQUAMARINE_TILES_SLAB) + .add(NSE_Blocks.DIRTY_AQUAMARINE_TILES_STAIRS) + .add(NSE_Blocks.DIRTY_AQUAMARINE_TILES_SLAB) + .add(NSE_Blocks.DIORITE_BRICKS_STAIRS) + .add(NSE_Blocks.DIORITE_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_DIORITE_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_DIORITE_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_DIORITE_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_DIORITE_BRICKS_SLAB) + .add(NSE_Blocks.CALCITE_TILES_STAIRS) + .add(NSE_Blocks.CALCITE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_CALCITE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_CALCITE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_CALCITE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_CALCITE_TILES_SLAB) + .add(NSE_Blocks.DRIPSTONE_TILES_STAIRS) + .add(NSE_Blocks.DRIPSTONE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_DRIPSTONE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_DRIPSTONE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_DRIPSTONE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_DRIPSTONE_TILES_SLAB) + .add(NSE_Blocks.DEEPSLATE_TILES_STAIRS) + .add(NSE_Blocks.DEEPSLATE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_DEEPSLATE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_DEEPSLATE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_DEEPSLATE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_DEEPSLATE_TILES_SLAB) + .add(NSE_Blocks.LIGHT_BLUE_TILES_STAIRS) + .add(NSE_Blocks.LIGHT_BLUE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_SLAB) + .add(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_STAIRS) + .add(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_SLAB) + .add(NSE_Blocks.LIGHT_BLUE_BRICKS_STAIRS) + .add(NSE_Blocks.LIGHT_BLUE_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_SLAB) + .add(NSE_Blocks.GREEN_WHITE_TILES_STAIRS) + .add(NSE_Blocks.GREEN_WHITE_TILES_SLAB) + .add(NSE_Blocks.CRACKED_GREEN_WHITE_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_GREEN_WHITE_TILES_SLAB) + .add(NSE_Blocks.MOSSY_GREEN_WHITE_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_GREEN_WHITE_TILES_SLAB) + .add(NSE_Blocks.TUFF_TILES_STAIRS) + .add(NSE_Blocks.TUFF_TILES_SLAB) + .add(NSE_Blocks.CRACKED_TUFF_TILES_STAIRS) + .add(NSE_Blocks.CRACKED_TUFF_TILES_SLAB) + .add(NSE_Blocks.MOSSY_TUFF_TILES_STAIRS) + .add(NSE_Blocks.MOSSY_TUFF_TILES_SLAB) + .add(NSE_Blocks.TUFF_BRICKS_STAIRS) + .add(NSE_Blocks.TUFF_BRICKS_SLAB) + .add(NSE_Blocks.CRACKED_TUFF_BRICKS_STAIRS) + .add(NSE_Blocks.CRACKED_TUFF_BRICKS_SLAB) + .add(NSE_Blocks.MOSSY_TUFF_BRICKS_STAIRS) + .add(NSE_Blocks.MOSSY_TUFF_BRICKS_SLAB) + .add(NSE_Blocks.WHITE_CONCRETE_STAIRS) + .add(NSE_Blocks.WHITE_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_WHITE_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_WHITE_CONCRETE_SLAB) + .add(NSE_Blocks.BEIGE_CONCRETE_STAIRS) + .add(NSE_Blocks.BEIGE_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_BEIGE_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_BEIGE_CONCRETE_SLAB) + .add(NSE_Blocks.BLUE_CONCRETE_STAIRS) + .add(NSE_Blocks.BLUE_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_BLUE_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_BLUE_CONCRETE_SLAB) + .add(NSE_Blocks.RED_CONCRETE_STAIRS) + .add(NSE_Blocks.RED_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_RED_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_RED_CONCRETE_SLAB) + .add(NSE_Blocks.YELLOW_CONCRETE_STAIRS) + .add(NSE_Blocks.YELLOW_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_YELLOW_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_YELLOW_CONCRETE_SLAB) + .add(NSE_Blocks.GREEN_CONCRETE_STAIRS) + .add(NSE_Blocks.GREEN_CONCRETE_SLAB) + .add(NSE_Blocks.CRACKED_GREEN_CONCRETE_STAIRS) + .add(NSE_Blocks.CRACKED_GREEN_CONCRETE_SLAB) + .add(NSE_Blocks.NII_FLOOR_STAIRS) + .add(NSE_Blocks.NII_FLOOR_SLAB) + .add(NSE_Blocks.METAL_PLATING_STAIRS) + .add(NSE_Blocks.METAL_PLATING_SLAB); // Blocks mined with an axe getOrCreateTagBuilder(BlockTags.AXE_MINEABLE) @@ -410,7 +768,58 @@ public class DataGeneration implements DataGeneratorEntrypoint { .add(NSE_Blocks.GREEN_WALLPAPER) .add(NSE_Blocks.BROWN_WALLPAPER) .add(NSE_Blocks.BEIGE_WALLPAPER) - ; + .add(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_ACACIA_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_ACACIA_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_OAK_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_OAK_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_OAK_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_OAK_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_BIRCH_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_BIRCH_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_CRIMSON_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_CRIMSON_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_DARK_OAK_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_DARK_OAK_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_JUNGLE_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_JUNGLE_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_MANGROVE_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_MANGROVE_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_STAIRS) + .add(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_SLAB) + .add(NSE_Blocks.CROSS_SPRUCE_PLANKS_STAIRS) + .add(NSE_Blocks.CROSS_SPRUCE_PLANKS_SLAB) + .add(NSE_Blocks.HERRINGBONE_PARQUET_STAIRS) + .add(NSE_Blocks.HERRINGBONE_PARQUET_SLAB) + .add(NSE_Blocks.STRAIGHT_PARQUET_STAIRS) + .add(NSE_Blocks.STRAIGHT_PARQUET_SLAB) + .add(NSE_Blocks.SEPARATED_PARQUET_STAIRS) + .add(NSE_Blocks.SEPARATED_PARQUET_SLAB) + .add(NSE_Blocks.GREEN_LINOLEUM_STAIRS) + .add(NSE_Blocks.GREEN_LINOLEUM_SLAB) + .add(NSE_Blocks.BLUE_LINOLEUM_STAIRS) + .add(NSE_Blocks.BLUE_LINOLEUM_SLAB) + .add(NSE_Blocks.RED_LINOLEUM_STAIRS) + .add(NSE_Blocks.RED_LINOLEUM_SLAB) + .add(NSE_Blocks.GRAY_LINOLEUM_STAIRS) + .add(NSE_Blocks.GRAY_LINOLEUM_SLAB) + .add(NSE_Blocks.ORANGE_LINOLEUM_STAIRS) + .add(NSE_Blocks.ORANGE_LINOLEUM_SLAB) + .add(NSE_Blocks.BROWN_LINOLEUM_STAIRS) + .add(NSE_Blocks.BROWN_LINOLEUM_SLAB) + .add(NSE_Blocks.CYAN_LINOLEUM_STAIRS) + .add(NSE_Blocks.CYAN_LINOLEUM_SLAB); getOrCreateTagBuilder(NSE_Tags.Blocks.RAKE_MINEABLE) .add(NSE_Blocks.MEAT) @@ -828,9 +1237,6 @@ public class DataGeneration implements DataGeneratorEntrypoint { offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CHISELED_SPRUCE_DOOR, Blocks.SPRUCE_DOOR); offerStonecuttingRecipe(exporter, RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CHISELED_BIRCH_DOOR, Blocks.BIRCH_DOOR); - createStairsRecipe(NSE_Blocks.SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.SAND_TILES)) - .criterion(hasItem(NSE_Blocks.SAND_TILES), conditionsFromItem(NSE_Blocks.SAND_TILES)).offerTo(exporter); - ShapedRecipeJsonBuilder.create(RecipeCategory.DECORATIONS, NSE_Custom.LIGHT_BULB, 1) .input('X', Items.IRON_INGOT).input('Y', Items.IRON_NUGGET).input('Z', NSE_Items.LIGHT_BULB) .pattern(" X ").pattern(" Y ").pattern(" Z ") @@ -895,6 +1301,415 @@ public class DataGeneration implements DataGeneratorEntrypoint { .criterion(hasItem(Items.BROWN_DYE), conditionsFromItem(Items.BROWN_DYE)) .offerTo(exporter); + // Generated stairs and slabs recipes + createStairsRecipe(NSE_Blocks.SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.SAND_TILES)) + .criterion(hasItem(NSE_Blocks.SAND_TILES), conditionsFromItem(NSE_Blocks.SAND_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.SAND_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.SAND_TILES)) + .criterion(hasItem(NSE_Blocks.SAND_TILES), conditionsFromItem(NSE_Blocks.SAND_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_SAND_TILES), conditionsFromItem(NSE_Blocks.CRACKED_SAND_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_SAND_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_SAND_TILES), conditionsFromItem(NSE_Blocks.CRACKED_SAND_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_SAND_TILES), conditionsFromItem(NSE_Blocks.MOSSY_SAND_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_SAND_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_SAND_TILES), conditionsFromItem(NSE_Blocks.MOSSY_SAND_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_SAND_TILES), conditionsFromItem(NSE_Blocks.HERRINGBONE_SAND_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_SAND_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_SAND_TILES), conditionsFromItem(NSE_Blocks.HERRINGBONE_SAND_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_SAND_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.CROSS_SAND_TILES), conditionsFromItem(NSE_Blocks.CROSS_SAND_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_SAND_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_SAND_TILES)) + .criterion(hasItem(NSE_Blocks.CROSS_SAND_TILES), conditionsFromItem(NSE_Blocks.CROSS_SAND_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.SAND_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.SAND_BRICKS), conditionsFromItem(NSE_Blocks.SAND_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.SAND_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.SAND_BRICKS), conditionsFromItem(NSE_Blocks.SAND_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_SAND_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_SAND_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_SAND_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_SAND_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_SAND_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_SAND_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_SAND_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_SAND_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_SAND_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_SAND_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_SAND_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_SAND_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BIG_SAND_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.BIG_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.BIG_SAND_BRICKS), conditionsFromItem(NSE_Blocks.BIG_SAND_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BIG_SAND_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.BIG_SAND_BRICKS)) + .criterion(hasItem(NSE_Blocks.BIG_SAND_BRICKS), conditionsFromItem(NSE_Blocks.BIG_SAND_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.BRICK_TILES), conditionsFromItem(NSE_Blocks.BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.BRICK_TILES), conditionsFromItem(NSE_Blocks.BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_BRICK_TILES), conditionsFromItem(NSE_Blocks.CRACKED_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_BRICK_TILES), conditionsFromItem(NSE_Blocks.CRACKED_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_BRICK_TILES), conditionsFromItem(NSE_Blocks.MOSSY_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_BRICK_TILES), conditionsFromItem(NSE_Blocks.MOSSY_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DIRTY_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DIRTY_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_BRICK_TILES), conditionsFromItem(NSE_Blocks.DIRTY_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DIRTY_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DIRTY_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_BRICK_TILES), conditionsFromItem(NSE_Blocks.DIRTY_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DARK_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.DARK_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DARK_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.DARK_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_DARK_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DARK_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_DARK_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DARK_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_DARK_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DARK_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_DARK_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DARK_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DIRTY_DARK_BRICK_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DIRTY_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.DIRTY_DARK_BRICK_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DIRTY_DARK_BRICK_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DIRTY_DARK_BRICK_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_DARK_BRICK_TILES), conditionsFromItem(NSE_Blocks.DIRTY_DARK_BRICK_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.RED_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.RED_BRICKS), conditionsFromItem(NSE_Blocks.RED_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.RED_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.RED_BRICKS), conditionsFromItem(NSE_Blocks.RED_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_RED_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_RED_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_RED_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_RED_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_RED_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_RED_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_RED_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_RED_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_RED_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_RED_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_RED_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_RED_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_RED_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.TEAL_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.TEAL_TILES), conditionsFromItem(NSE_Blocks.TEAL_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.TEAL_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.TEAL_TILES), conditionsFromItem(NSE_Blocks.TEAL_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_TEAL_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_TEAL_TILES), conditionsFromItem(NSE_Blocks.CRACKED_TEAL_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_TEAL_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_TEAL_TILES), conditionsFromItem(NSE_Blocks.CRACKED_TEAL_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_TEAL_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_TEAL_TILES), conditionsFromItem(NSE_Blocks.MOSSY_TEAL_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_TEAL_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_TEAL_TILES), conditionsFromItem(NSE_Blocks.MOSSY_TEAL_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.VARIATED_TEAL_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.VARIATED_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.VARIATED_TEAL_TILES), conditionsFromItem(NSE_Blocks.VARIATED_TEAL_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.VARIATED_TEAL_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.VARIATED_TEAL_TILES)) + .criterion(hasItem(NSE_Blocks.VARIATED_TEAL_TILES), conditionsFromItem(NSE_Blocks.VARIATED_TEAL_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GREEN_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.GREEN_BRICKS), conditionsFromItem(NSE_Blocks.GREEN_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GREEN_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.GREEN_BRICKS), conditionsFromItem(NSE_Blocks.GREEN_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_GREEN_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_GREEN_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_GREEN_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_GREEN_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GREEN_BRICKS_2_STAIRS, Ingredient.ofItems(NSE_Blocks.GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.GREEN_BRICKS_2)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GREEN_BRICKS_2_SLAB, Ingredient.ofItems(NSE_Blocks.GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.GREEN_BRICKS_2)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_GREEN_BRICKS_2_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_BRICKS_2)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_GREEN_BRICKS_2_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_BRICKS_2)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_GREEN_BRICKS_2_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_BRICKS_2)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_GREEN_BRICKS_2_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_BRICKS_2)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_BRICKS_2), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_BRICKS_2)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.AQUAMARINE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.AQUAMARINE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.AQUAMARINE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.AQUAMARINE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_AQUAMARINE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_AQUAMARINE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_AQUAMARINE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_AQUAMARINE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_AQUAMARINE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_AQUAMARINE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_AQUAMARINE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_AQUAMARINE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DIRTY_AQUAMARINE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DIRTY_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.DIRTY_AQUAMARINE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DIRTY_AQUAMARINE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DIRTY_AQUAMARINE_TILES)) + .criterion(hasItem(NSE_Blocks.DIRTY_AQUAMARINE_TILES), conditionsFromItem(NSE_Blocks.DIRTY_AQUAMARINE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DIORITE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.DIORITE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DIORITE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.DIORITE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_DIORITE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_DIORITE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_DIORITE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_DIORITE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_DIORITE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_DIORITE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_DIORITE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_DIORITE_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_DIORITE_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_DIORITE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CALCITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.CALCITE_TILES), conditionsFromItem(NSE_Blocks.CALCITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CALCITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.CALCITE_TILES), conditionsFromItem(NSE_Blocks.CALCITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_CALCITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_CALCITE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_CALCITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_CALCITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_CALCITE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_CALCITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_CALCITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_CALCITE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_CALCITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_CALCITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_CALCITE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_CALCITE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_CALCITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DRIPSTONE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.DRIPSTONE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DRIPSTONE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.DRIPSTONE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_DRIPSTONE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DRIPSTONE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_DRIPSTONE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DRIPSTONE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_DRIPSTONE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DRIPSTONE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_DRIPSTONE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_DRIPSTONE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DRIPSTONE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DRIPSTONE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.DEEPSLATE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.DEEPSLATE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.DEEPSLATE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.DEEPSLATE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_DEEPSLATE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DEEPSLATE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_DEEPSLATE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_DEEPSLATE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_DEEPSLATE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DEEPSLATE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_DEEPSLATE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_DEEPSLATE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_DEEPSLATE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_DEEPSLATE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.LIGHT_BLUE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.LIGHT_BLUE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.LIGHT_BLUE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.LIGHT_BLUE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_LIGHT_BLUE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_LIGHT_BLUE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_LIGHT_BLUE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_LIGHT_BLUE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.VARIATED_LIGHT_BLUE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES)) + .criterion(hasItem(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES), conditionsFromItem(NSE_Blocks.VARIATED_LIGHT_BLUE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.LIGHT_BLUE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.LIGHT_BLUE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.LIGHT_BLUE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.LIGHT_BLUE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_LIGHT_BLUE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_LIGHT_BLUE_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GREEN_WHITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.GREEN_WHITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GREEN_WHITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.GREEN_WHITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_GREEN_WHITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_WHITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_GREEN_WHITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_WHITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_GREEN_WHITE_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_WHITE_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_GREEN_WHITE_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_GREEN_WHITE_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_GREEN_WHITE_TILES), conditionsFromItem(NSE_Blocks.MOSSY_GREEN_WHITE_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.TUFF_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.TUFF_TILES), conditionsFromItem(NSE_Blocks.TUFF_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.TUFF_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.TUFF_TILES), conditionsFromItem(NSE_Blocks.TUFF_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_TUFF_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_TUFF_TILES), conditionsFromItem(NSE_Blocks.CRACKED_TUFF_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_TUFF_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.CRACKED_TUFF_TILES), conditionsFromItem(NSE_Blocks.CRACKED_TUFF_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_TUFF_TILES_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_TUFF_TILES), conditionsFromItem(NSE_Blocks.MOSSY_TUFF_TILES)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_TUFF_TILES_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_TUFF_TILES)) + .criterion(hasItem(NSE_Blocks.MOSSY_TUFF_TILES), conditionsFromItem(NSE_Blocks.MOSSY_TUFF_TILES)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.TUFF_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.TUFF_BRICKS), conditionsFromItem(NSE_Blocks.TUFF_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.TUFF_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.TUFF_BRICKS), conditionsFromItem(NSE_Blocks.TUFF_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_TUFF_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_TUFF_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_TUFF_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_TUFF_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.CRACKED_TUFF_BRICKS), conditionsFromItem(NSE_Blocks.CRACKED_TUFF_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.MOSSY_TUFF_BRICKS_STAIRS, Ingredient.ofItems(NSE_Blocks.MOSSY_TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_TUFF_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_TUFF_BRICKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.MOSSY_TUFF_BRICKS_SLAB, Ingredient.ofItems(NSE_Blocks.MOSSY_TUFF_BRICKS)) + .criterion(hasItem(NSE_Blocks.MOSSY_TUFF_BRICKS), conditionsFromItem(NSE_Blocks.MOSSY_TUFF_BRICKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.WHITE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.WHITE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.WHITE_CONCRETE), conditionsFromItem(NSE_Blocks.WHITE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.WHITE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.WHITE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.WHITE_CONCRETE), conditionsFromItem(NSE_Blocks.WHITE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_WHITE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_WHITE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_WHITE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_WHITE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_WHITE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_WHITE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_WHITE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_WHITE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BEIGE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.BEIGE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.BEIGE_CONCRETE), conditionsFromItem(NSE_Blocks.BEIGE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BEIGE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.BEIGE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.BEIGE_CONCRETE), conditionsFromItem(NSE_Blocks.BEIGE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_BEIGE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_BEIGE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_BEIGE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_BEIGE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_BEIGE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_BEIGE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_BEIGE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_BEIGE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BLUE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.BLUE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.BLUE_CONCRETE), conditionsFromItem(NSE_Blocks.BLUE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BLUE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.BLUE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.BLUE_CONCRETE), conditionsFromItem(NSE_Blocks.BLUE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_BLUE_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_BLUE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_BLUE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_BLUE_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_BLUE_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_BLUE_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_BLUE_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_BLUE_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.RED_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.RED_CONCRETE)) + .criterion(hasItem(NSE_Blocks.RED_CONCRETE), conditionsFromItem(NSE_Blocks.RED_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.RED_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.RED_CONCRETE)) + .criterion(hasItem(NSE_Blocks.RED_CONCRETE), conditionsFromItem(NSE_Blocks.RED_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_RED_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_RED_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_RED_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_RED_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_RED_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_RED_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_RED_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_RED_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.YELLOW_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.YELLOW_CONCRETE)) + .criterion(hasItem(NSE_Blocks.YELLOW_CONCRETE), conditionsFromItem(NSE_Blocks.YELLOW_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.YELLOW_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.YELLOW_CONCRETE)) + .criterion(hasItem(NSE_Blocks.YELLOW_CONCRETE), conditionsFromItem(NSE_Blocks.YELLOW_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_YELLOW_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_YELLOW_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_YELLOW_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_YELLOW_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_YELLOW_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_YELLOW_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_YELLOW_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_YELLOW_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GREEN_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.GREEN_CONCRETE)) + .criterion(hasItem(NSE_Blocks.GREEN_CONCRETE), conditionsFromItem(NSE_Blocks.GREEN_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GREEN_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.GREEN_CONCRETE)) + .criterion(hasItem(NSE_Blocks.GREEN_CONCRETE), conditionsFromItem(NSE_Blocks.GREEN_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CRACKED_GREEN_CONCRETE_STAIRS, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_CONCRETE)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CRACKED_GREEN_CONCRETE_SLAB, Ingredient.ofItems(NSE_Blocks.CRACKED_GREEN_CONCRETE)) + .criterion(hasItem(NSE_Blocks.CRACKED_GREEN_CONCRETE), conditionsFromItem(NSE_Blocks.CRACKED_GREEN_CONCRETE)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.NII_FLOOR_STAIRS, Ingredient.ofItems(NSE_Blocks.NII_FLOOR)) + .criterion(hasItem(NSE_Blocks.NII_FLOOR), conditionsFromItem(NSE_Blocks.NII_FLOOR)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.NII_FLOOR_SLAB, Ingredient.ofItems(NSE_Blocks.NII_FLOOR)) + .criterion(hasItem(NSE_Blocks.NII_FLOOR), conditionsFromItem(NSE_Blocks.NII_FLOOR)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_ACACIA_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_ACACIA_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_ACACIA_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_ACACIA_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_ACACIA_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_ACACIA_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_ACACIA_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_ACACIA_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_ACACIA_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_ACACIA_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_OAK_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_OAK_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_OAK_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_OAK_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_OAK_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_OAK_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_OAK_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_OAK_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_OAK_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_OAK_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_OAK_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_OAK_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_BIRCH_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_BIRCH_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_BIRCH_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_BIRCH_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_BIRCH_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_BIRCH_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_BIRCH_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_BIRCH_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_BIRCH_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_BIRCH_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_CRIMSON_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_CRIMSON_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_CRIMSON_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_CRIMSON_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_CRIMSON_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_CRIMSON_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_CRIMSON_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_CRIMSON_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_CRIMSON_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_DARK_OAK_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_DARK_OAK_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_DARK_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_DARK_OAK_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_DARK_OAK_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_DARK_OAK_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_DARK_OAK_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_DARK_OAK_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_DARK_OAK_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_JUNGLE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_JUNGLE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_JUNGLE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_JUNGLE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_JUNGLE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_JUNGLE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_JUNGLE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_JUNGLE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_JUNGLE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_MANGROVE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_MANGROVE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_MANGROVE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_MANGROVE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_MANGROVE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_MANGROVE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_MANGROVE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_MANGROVE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_MANGROVE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS), conditionsFromItem(NSE_Blocks.HERRINGBONE_SPRUCE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CROSS_SPRUCE_PLANKS_STAIRS, Ingredient.ofItems(NSE_Blocks.CROSS_SPRUCE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_SPRUCE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_SPRUCE_PLANKS)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CROSS_SPRUCE_PLANKS_SLAB, Ingredient.ofItems(NSE_Blocks.CROSS_SPRUCE_PLANKS)) + .criterion(hasItem(NSE_Blocks.CROSS_SPRUCE_PLANKS), conditionsFromItem(NSE_Blocks.CROSS_SPRUCE_PLANKS)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.HERRINGBONE_PARQUET_STAIRS, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_PARQUET)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_PARQUET), conditionsFromItem(NSE_Blocks.HERRINGBONE_PARQUET)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.HERRINGBONE_PARQUET_SLAB, Ingredient.ofItems(NSE_Blocks.HERRINGBONE_PARQUET)) + .criterion(hasItem(NSE_Blocks.HERRINGBONE_PARQUET), conditionsFromItem(NSE_Blocks.HERRINGBONE_PARQUET)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.STRAIGHT_PARQUET_STAIRS, Ingredient.ofItems(NSE_Blocks.STRAIGHT_PARQUET)) + .criterion(hasItem(NSE_Blocks.STRAIGHT_PARQUET), conditionsFromItem(NSE_Blocks.STRAIGHT_PARQUET)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.STRAIGHT_PARQUET_SLAB, Ingredient.ofItems(NSE_Blocks.STRAIGHT_PARQUET)) + .criterion(hasItem(NSE_Blocks.STRAIGHT_PARQUET), conditionsFromItem(NSE_Blocks.STRAIGHT_PARQUET)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.SEPARATED_PARQUET_STAIRS, Ingredient.ofItems(NSE_Blocks.SEPARATED_PARQUET)) + .criterion(hasItem(NSE_Blocks.SEPARATED_PARQUET), conditionsFromItem(NSE_Blocks.SEPARATED_PARQUET)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.SEPARATED_PARQUET_SLAB, Ingredient.ofItems(NSE_Blocks.SEPARATED_PARQUET)) + .criterion(hasItem(NSE_Blocks.SEPARATED_PARQUET), conditionsFromItem(NSE_Blocks.SEPARATED_PARQUET)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GREEN_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.GREEN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.GREEN_LINOLEUM), conditionsFromItem(NSE_Blocks.GREEN_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GREEN_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.GREEN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.GREEN_LINOLEUM), conditionsFromItem(NSE_Blocks.GREEN_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BLUE_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.BLUE_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.BLUE_LINOLEUM), conditionsFromItem(NSE_Blocks.BLUE_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BLUE_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.BLUE_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.BLUE_LINOLEUM), conditionsFromItem(NSE_Blocks.BLUE_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.RED_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.RED_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.RED_LINOLEUM), conditionsFromItem(NSE_Blocks.RED_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.RED_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.RED_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.RED_LINOLEUM), conditionsFromItem(NSE_Blocks.RED_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.GRAY_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.GRAY_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.GRAY_LINOLEUM), conditionsFromItem(NSE_Blocks.GRAY_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.GRAY_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.GRAY_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.GRAY_LINOLEUM), conditionsFromItem(NSE_Blocks.GRAY_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.ORANGE_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.ORANGE_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.ORANGE_LINOLEUM), conditionsFromItem(NSE_Blocks.ORANGE_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.ORANGE_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.ORANGE_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.ORANGE_LINOLEUM), conditionsFromItem(NSE_Blocks.ORANGE_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.BROWN_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.BROWN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.BROWN_LINOLEUM), conditionsFromItem(NSE_Blocks.BROWN_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.BROWN_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.BROWN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.BROWN_LINOLEUM), conditionsFromItem(NSE_Blocks.BROWN_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.CYAN_LINOLEUM_STAIRS, Ingredient.ofItems(NSE_Blocks.CYAN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.CYAN_LINOLEUM), conditionsFromItem(NSE_Blocks.CYAN_LINOLEUM)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.CYAN_LINOLEUM_SLAB, Ingredient.ofItems(NSE_Blocks.CYAN_LINOLEUM)) + .criterion(hasItem(NSE_Blocks.CYAN_LINOLEUM), conditionsFromItem(NSE_Blocks.CYAN_LINOLEUM)).offerTo(exporter); + createStairsRecipe(NSE_Blocks.METAL_PLATING_STAIRS, Ingredient.ofItems(NSE_Blocks.METAL_PLATING)) + .criterion(hasItem(NSE_Blocks.METAL_PLATING), conditionsFromItem(NSE_Blocks.METAL_PLATING)).offerTo(exporter); + createSlabRecipe(RecipeCategory.BUILDING_BLOCKS, NSE_Blocks.METAL_PLATING_SLAB, Ingredient.ofItems(NSE_Blocks.METAL_PLATING)) + .criterion(hasItem(NSE_Blocks.METAL_PLATING), conditionsFromItem(NSE_Blocks.METAL_PLATING)).offerTo(exporter); } } diff --git a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java index cebd5d1..bb96318 100644 --- a/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java +++ b/src/main/java/su/a71/new_soviet/registration/NSE_Blocks.java @@ -18,57 +18,126 @@ import su.a71.new_soviet.blocks.HandrailBlock; public class NSE_Blocks extends NSE_BaseRegistration { // BUILDING BRICKS/TILES ==================== + // TODO: TOOLS FOR SLABS AND STAIRS !!!! public static final Block SAND_TILES = new Block(FabricBlockSettings.create().sounds(NSE_Sounds.SAND_TILES_SOUNDS).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.TERRACOTTA_BROWN)); public static final StairsBlock SAND_TILES_STAIRS = new StairsBlock(SAND_TILES.getDefaultState(), FabricBlockSettings.copy(SAND_TILES)); public static final SlabBlock SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(SAND_TILES)); public static final Block CRACKED_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock CRACKED_SAND_TILES_STAIRS = new StairsBlock(CRACKED_SAND_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_SAND_TILES)); + public static final SlabBlock CRACKED_SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_SAND_TILES)); public static final Block MOSSY_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock MOSSY_SAND_TILES_STAIRS = new StairsBlock(MOSSY_SAND_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_SAND_TILES)); + public static final SlabBlock MOSSY_SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_SAND_TILES)); public static final Block SMALL_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); public static final Block SMALL_CRACKED_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); public static final Block HERRINGBONE_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock HERRINGBONE_SAND_TILES_STAIRS = new StairsBlock(HERRINGBONE_SAND_TILES.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_SAND_TILES)); + public static final SlabBlock HERRINGBONE_SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_SAND_TILES)); public static final Block CROSS_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock CROSS_SAND_TILES_STAIRS = new StairsBlock(CROSS_SAND_TILES.getDefaultState(), FabricBlockSettings.copy(CROSS_SAND_TILES)); + public static final SlabBlock CROSS_SAND_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_SAND_TILES)); public static final Block BIG_SAND_TILES = new Block(FabricBlockSettings.copy(SAND_TILES).sounds(BlockSoundGroup.DECORATED_POT)); public static final Block SAND_BRICKS = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock SAND_BRICKS_STAIRS = new StairsBlock(SAND_BRICKS.getDefaultState(), FabricBlockSettings.copy(SAND_BRICKS)); + public static final SlabBlock SAND_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(SAND_BRICKS)); public static final Block CRACKED_SAND_BRICKS = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock CRACKED_SAND_BRICKS_STAIRS = new StairsBlock(CRACKED_SAND_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_SAND_BRICKS)); + public static final SlabBlock CRACKED_SAND_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_SAND_BRICKS)); public static final Block MOSSY_SAND_BRICKS = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock MOSSY_SAND_BRICKS_STAIRS = new StairsBlock(MOSSY_SAND_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_SAND_BRICKS)); + public static final SlabBlock MOSSY_SAND_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_SAND_BRICKS)); public static final Block BIG_SAND_BRICKS = new Block(FabricBlockSettings.copy(SAND_TILES)); + public static final StairsBlock BIG_SAND_BRICKS_STAIRS = new StairsBlock(BIG_SAND_BRICKS.getDefaultState(), FabricBlockSettings.copy(BIG_SAND_BRICKS)); + public static final SlabBlock BIG_SAND_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(BIG_SAND_BRICKS)); public static final Block BRICK_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.TERRACOTTA_BROWN)); + public static final StairsBlock BRICK_TILES_STAIRS = new StairsBlock(BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(BRICK_TILES)); + public static final SlabBlock BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(BRICK_TILES)); public static final Block CRACKED_BRICK_TILES = new Block(FabricBlockSettings.copy(BRICK_TILES)); + public static final StairsBlock CRACKED_BRICK_TILES_STAIRS = new StairsBlock(CRACKED_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_BRICK_TILES)); + public static final SlabBlock CRACKED_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_BRICK_TILES)); public static final Block MOSSY_BRICK_TILES = new Block(FabricBlockSettings.copy(BRICK_TILES)); + public static final StairsBlock MOSSY_BRICK_TILES_STAIRS = new StairsBlock(MOSSY_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_BRICK_TILES)); + public static final SlabBlock MOSSY_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_BRICK_TILES)); public static final Block DIRTY_BRICK_TILES = new Block(FabricBlockSettings.copy(BRICK_TILES)); + public static final StairsBlock DIRTY_BRICK_TILES_STAIRS = new StairsBlock(DIRTY_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(DIRTY_BRICK_TILES)); + public static final SlabBlock DIRTY_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DIRTY_BRICK_TILES)); + public static final Block DARK_BRICK_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.DARK_RED)); + public static final StairsBlock DARK_BRICK_TILES_STAIRS = new StairsBlock(DARK_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(DARK_BRICK_TILES)); + public static final SlabBlock DARK_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DARK_BRICK_TILES)); public static final Block CRACKED_DARK_BRICK_TILES = new Block(FabricBlockSettings.copy(DARK_BRICK_TILES)); + public static final StairsBlock CRACKED_DARK_BRICK_TILES_STAIRS = new StairsBlock(CRACKED_DARK_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_DARK_BRICK_TILES)); + public static final SlabBlock CRACKED_DARK_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_DARK_BRICK_TILES)); public static final Block MOSSY_DARK_BRICK_TILES = new Block(FabricBlockSettings.copy(DARK_BRICK_TILES)); + public static final StairsBlock MOSSY_DARK_BRICK_TILES_STAIRS = new StairsBlock(MOSSY_DARK_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_DARK_BRICK_TILES)); + public static final SlabBlock MOSSY_DARK_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_DARK_BRICK_TILES)); public static final Block DIRTY_DARK_BRICK_TILES = new Block(FabricBlockSettings.copy(DARK_BRICK_TILES)); + public static final StairsBlock DIRTY_DARK_BRICK_TILES_STAIRS = new StairsBlock(DIRTY_DARK_BRICK_TILES.getDefaultState(), FabricBlockSettings.copy(DIRTY_DARK_BRICK_TILES)); + public static final SlabBlock DIRTY_DARK_BRICK_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DIRTY_DARK_BRICK_TILES)); public static final Block GLAZED_BRICK_TILES = new Block(FabricBlockSettings.copy(BRICK_TILES)); public static final Block CRACKED_GLAZED_BRICK_TILES = new Block(FabricBlockSettings.copy(BRICK_TILES)); + public static final Block RED_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.DEEPSLATE_BRICKS).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.RED)); + public static final StairsBlock RED_BRICKS_STAIRS = new StairsBlock(RED_BRICKS.getDefaultState(), FabricBlockSettings.copy(RED_BRICKS)); + public static final SlabBlock RED_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(RED_BRICKS)); public static final Block CRACKED_RED_BRICKS = new Block(FabricBlockSettings.copy(RED_BRICKS)); + public static final StairsBlock CRACKED_RED_BRICKS_STAIRS = new StairsBlock(CRACKED_RED_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_RED_BRICKS)); + public static final SlabBlock CRACKED_RED_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_RED_BRICKS)); public static final Block MOSSY_RED_BRICKS = new Block(FabricBlockSettings.copy(RED_BRICKS)); + public static final StairsBlock MOSSY_RED_BRICKS_STAIRS = new StairsBlock(MOSSY_RED_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_RED_BRICKS)); + public static final SlabBlock MOSSY_RED_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_RED_BRICKS)); public static final Block TEAL_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.TEAL)); + public static final StairsBlock TEAL_TILES_STAIRS = new StairsBlock(TEAL_TILES.getDefaultState(), FabricBlockSettings.copy(TEAL_TILES)); + public static final SlabBlock TEAL_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(TEAL_TILES)); public static final Block CRACKED_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); + public static final StairsBlock CRACKED_TEAL_TILES_STAIRS = new StairsBlock(CRACKED_TEAL_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_TEAL_TILES)); + public static final SlabBlock CRACKED_TEAL_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_TEAL_TILES)); public static final Block MOSSY_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); + public static final StairsBlock MOSSY_TEAL_TILES_STAIRS = new StairsBlock(MOSSY_TEAL_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_TEAL_TILES)); + public static final SlabBlock MOSSY_TEAL_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_TEAL_TILES)); public static final Block SMALL_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); public static final Block SMALL_CRACKED_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); public static final Block GLAZED_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); public static final Block CRACKED_GLAZED_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); public static final Block VARIATED_TEAL_TILES = new Block(FabricBlockSettings.copy(TEAL_TILES)); + public static final StairsBlock VARIATED_TEAL_TILES_STAIRS = new StairsBlock(VARIATED_TEAL_TILES.getDefaultState(), FabricBlockSettings.copy(VARIATED_TEAL_TILES)); + public static final SlabBlock VARIATED_TEAL_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(VARIATED_TEAL_TILES)); public static final Block BIG_GREEN_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.DECORATED_POT).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.TEAL)); public static final Block BIG_GREEN_TILES_CRACKED = new Block(FabricBlockSettings.copy(BIG_GREEN_TILES)); public static final Block GREEN_BRICKS = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.NETHER_BRICKS).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.DARK_GREEN)); + public static final StairsBlock GREEN_BRICKS_STAIRS = new StairsBlock(GREEN_BRICKS.getDefaultState(), FabricBlockSettings.copy(GREEN_BRICKS)); + public static final SlabBlock GREEN_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(GREEN_BRICKS)); public static final Block CRACKED_GREEN_BRICKS = new Block(FabricBlockSettings.copy(GREEN_BRICKS)); + public static final StairsBlock CRACKED_GREEN_BRICKS_STAIRS = new StairsBlock(CRACKED_GREEN_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_GREEN_BRICKS)); + public static final SlabBlock CRACKED_GREEN_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_GREEN_BRICKS)); public static final Block MOSSY_GREEN_BRICKS = new Block(FabricBlockSettings.copy(GREEN_BRICKS)); + public static final StairsBlock MOSSY_GREEN_BRICKS_STAIRS = new StairsBlock(MOSSY_GREEN_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_GREEN_BRICKS)); + public static final SlabBlock MOSSY_GREEN_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_GREEN_BRICKS)); public static final Block GREEN_BRICKS_2 = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.NETHER_BRICKS).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.DARK_GREEN)); + public static final StairsBlock GREEN_BRICKS_2_STAIRS = new StairsBlock(GREEN_BRICKS_2.getDefaultState(), FabricBlockSettings.copy(GREEN_BRICKS_2)); + public static final SlabBlock GREEN_BRICKS_2_SLAB = new SlabBlock(FabricBlockSettings.copy(GREEN_BRICKS_2)); public static final Block CRACKED_GREEN_BRICKS_2 = new Block(FabricBlockSettings.copy(GREEN_BRICKS_2)); + public static final StairsBlock CRACKED_GREEN_BRICKS_2_STAIRS = new StairsBlock(CRACKED_GREEN_BRICKS_2.getDefaultState(), FabricBlockSettings.copy(CRACKED_GREEN_BRICKS_2)); + public static final SlabBlock CRACKED_GREEN_BRICKS_2_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_GREEN_BRICKS_2)); public static final Block MOSSY_GREEN_BRICKS_2 = new Block(FabricBlockSettings.copy(GREEN_BRICKS_2)); + public static final StairsBlock MOSSY_GREEN_BRICKS_2_STAIRS = new StairsBlock(MOSSY_GREEN_BRICKS_2.getDefaultState(), FabricBlockSettings.copy(MOSSY_GREEN_BRICKS_2)); + public static final SlabBlock MOSSY_GREEN_BRICKS_2_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_GREEN_BRICKS_2)); public static final Block AQUAMARINE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.DARK_AQUA)); + public static final StairsBlock AQUAMARINE_TILES_STAIRS = new StairsBlock(AQUAMARINE_TILES.getDefaultState(), FabricBlockSettings.copy(AQUAMARINE_TILES)); + public static final SlabBlock AQUAMARINE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(AQUAMARINE_TILES)); public static final Block CRACKED_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); + public static final StairsBlock CRACKED_AQUAMARINE_TILES_STAIRS = new StairsBlock(CRACKED_AQUAMARINE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_AQUAMARINE_TILES)); + public static final SlabBlock CRACKED_AQUAMARINE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_AQUAMARINE_TILES)); public static final Block MOSSY_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); + public static final StairsBlock MOSSY_AQUAMARINE_TILES_STAIRS = new StairsBlock(MOSSY_AQUAMARINE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_AQUAMARINE_TILES)); + public static final SlabBlock MOSSY_AQUAMARINE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_AQUAMARINE_TILES)); public static final Block DIRTY_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); + public static final StairsBlock DIRTY_AQUAMARINE_TILES_STAIRS = new StairsBlock(DIRTY_AQUAMARINE_TILES.getDefaultState(), FabricBlockSettings.copy(DIRTY_AQUAMARINE_TILES)); + public static final SlabBlock DIRTY_AQUAMARINE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DIRTY_AQUAMARINE_TILES)); public static final Block SMALL_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); public static final Block SMALL_CRACKED_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); public static final Block GLAZED_AQUAMARINE_TILES = new Block(FabricBlockSettings.copy(AQUAMARINE_TILES)); @@ -78,12 +147,24 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final Block SMALL_CRACKED_DIORITE_TILES = new Block(FabricBlockSettings.copy(Blocks.POLISHED_DIORITE)); public static final Block BIG_DIORITE_TILES = new Block(FabricBlockSettings.copy(Blocks.POLISHED_DIORITE)); public static final Block DIORITE_BRICKS = new Block(FabricBlockSettings.copy(Blocks.POLISHED_DIORITE)); + public static final StairsBlock DIORITE_BRICKS_STAIRS = new StairsBlock(DIORITE_BRICKS.getDefaultState(), FabricBlockSettings.copy(DIORITE_BRICKS)); + public static final SlabBlock DIORITE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(DIORITE_BRICKS)); public static final Block CRACKED_DIORITE_BRICKS = new Block(FabricBlockSettings.copy(Blocks.POLISHED_DIORITE)); + public static final StairsBlock CRACKED_DIORITE_BRICKS_STAIRS = new StairsBlock(CRACKED_DIORITE_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_DIORITE_BRICKS)); + public static final SlabBlock CRACKED_DIORITE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_DIORITE_BRICKS)); public static final Block MOSSY_DIORITE_BRICKS = new Block(FabricBlockSettings.copy(Blocks.POLISHED_DIORITE)); + public static final StairsBlock MOSSY_DIORITE_BRICKS_STAIRS = new StairsBlock(MOSSY_DIORITE_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_DIORITE_BRICKS)); + public static final SlabBlock MOSSY_DIORITE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_DIORITE_BRICKS)); public static final Block CALCITE_TILES = new Block(FabricBlockSettings.copy(Blocks.CALCITE)); + public static final StairsBlock CALCITE_TILES_STAIRS = new StairsBlock(CALCITE_TILES.getDefaultState(), FabricBlockSettings.copy(CALCITE_TILES)); + public static final SlabBlock CALCITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CALCITE_TILES)); public static final Block CRACKED_CALCITE_TILES = new Block(FabricBlockSettings.copy(Blocks.CALCITE)); + public static final StairsBlock CRACKED_CALCITE_TILES_STAIRS = new StairsBlock(CRACKED_CALCITE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_CALCITE_TILES)); + public static final SlabBlock CRACKED_CALCITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_CALCITE_TILES)); public static final Block MOSSY_CALCITE_TILES = new Block(FabricBlockSettings.copy(Blocks.CALCITE)); + public static final StairsBlock MOSSY_CALCITE_TILES_STAIRS = new StairsBlock(MOSSY_CALCITE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_CALCITE_TILES)); + public static final SlabBlock MOSSY_CALCITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_CALCITE_TILES)); public static final Block DIAGONAL_CALCITE_TILES = new Block(FabricBlockSettings.copy(Blocks.CALCITE)); public static final Block NII_WALL_1 = new Block(FabricBlockSettings.copy(Blocks.DIORITE)); @@ -92,44 +173,88 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final Block NII_WALL_3 = new Block(FabricBlockSettings.copy(NSE_Blocks.NII_WALL_1).mapColor(DyeColor.GRAY)); public static final Block DRIPSTONE_TILES = new Block(FabricBlockSettings.copy(Blocks.DRIPSTONE_BLOCK)); + public static final StairsBlock DRIPSTONE_TILES_STAIRS = new StairsBlock(DRIPSTONE_TILES.getDefaultState(), FabricBlockSettings.copy(DRIPSTONE_TILES)); + public static final SlabBlock DRIPSTONE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DRIPSTONE_TILES)); public static final Block CRACKED_DRIPSTONE_TILES = new Block(FabricBlockSettings.copy(Blocks.DRIPSTONE_BLOCK)); + public static final StairsBlock CRACKED_DRIPSTONE_TILES_STAIRS = new StairsBlock(CRACKED_DRIPSTONE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_DRIPSTONE_TILES)); + public static final SlabBlock CRACKED_DRIPSTONE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_DRIPSTONE_TILES)); public static final Block MOSSY_DRIPSTONE_TILES = new Block(FabricBlockSettings.copy(Blocks.DRIPSTONE_BLOCK)); + public static final StairsBlock MOSSY_DRIPSTONE_TILES_STAIRS = new StairsBlock(MOSSY_DRIPSTONE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_DRIPSTONE_TILES)); + public static final SlabBlock MOSSY_DRIPSTONE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_DRIPSTONE_TILES)); public static final Block DRIPSTONE_BRICKS = new Block(FabricBlockSettings.copy(Blocks.DRIPSTONE_BLOCK)); public static final Block DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); + public static final StairsBlock DEEPSLATE_TILES_STAIRS = new StairsBlock(DEEPSLATE_TILES.getDefaultState(), FabricBlockSettings.copy(DEEPSLATE_TILES)); + public static final SlabBlock DEEPSLATE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(DEEPSLATE_TILES)); public static final Block CRACKED_DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); + public static final StairsBlock CRACKED_DEEPSLATE_TILES_STAIRS = new StairsBlock(CRACKED_DEEPSLATE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_DEEPSLATE_TILES)); + public static final SlabBlock CRACKED_DEEPSLATE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_DEEPSLATE_TILES)); public static final Block MOSSY_DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); + public static final StairsBlock MOSSY_DEEPSLATE_TILES_STAIRS = new StairsBlock(MOSSY_DEEPSLATE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_DEEPSLATE_TILES)); + public static final SlabBlock MOSSY_DEEPSLATE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_DEEPSLATE_TILES)); public static final Block SMALL_DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); public static final Block SMALL_CRACKED_DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); public static final Block DIAGONAL_DEEPSLATE_TILES = new Block(FabricBlockSettings.copy(Blocks.DEEPSLATE_TILES)); public static final Block LIGHT_BLUE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).strength(1.5f, 6f).requiresTool().mapColor(MapColor.LIGHT_BLUE)); + public static final StairsBlock LIGHT_BLUE_TILES_STAIRS = new StairsBlock(LIGHT_BLUE_TILES.getDefaultState(), FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final SlabBlock LIGHT_BLUE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); public static final Block CRACKED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final StairsBlock CRACKED_LIGHT_BLUE_TILES_STAIRS = new StairsBlock(CRACKED_LIGHT_BLUE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_LIGHT_BLUE_TILES)); + public static final SlabBlock CRACKED_LIGHT_BLUE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_LIGHT_BLUE_TILES)); public static final Block MOSSY_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); - public static final Block VARIATED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES).strength(1.5f, 6f).requiresTool().mapColor(MapColor.LIGHT_BLUE)); + public static final StairsBlock MOSSY_LIGHT_BLUE_TILES_STAIRS = new StairsBlock(MOSSY_LIGHT_BLUE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_LIGHT_BLUE_TILES)); + public static final SlabBlock MOSSY_LIGHT_BLUE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_LIGHT_BLUE_TILES)); + public static final Block VARIATED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final StairsBlock VARIATED_LIGHT_BLUE_TILES_STAIRS = new StairsBlock(VARIATED_LIGHT_BLUE_TILES.getDefaultState(), FabricBlockSettings.copy(VARIATED_LIGHT_BLUE_TILES)); + public static final SlabBlock VARIATED_LIGHT_BLUE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(VARIATED_LIGHT_BLUE_TILES)); public static final Block SMALL_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); public static final Block SMALL_CRACKED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); public static final Block GLAZED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); public static final Block CRACKED_GLAZED_LIGHT_BLUE_TILES = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); public static final Block LIGHT_BLUE_BRICKS = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final StairsBlock LIGHT_BLUE_BRICKS_STAIRS = new StairsBlock(LIGHT_BLUE_BRICKS.getDefaultState(), FabricBlockSettings.copy(LIGHT_BLUE_BRICKS)); + public static final SlabBlock LIGHT_BLUE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(LIGHT_BLUE_BRICKS)); public static final Block CRACKED_LIGHT_BLUE_BRICKS = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final StairsBlock CRACKED_LIGHT_BLUE_BRICKS_STAIRS = new StairsBlock(CRACKED_LIGHT_BLUE_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_LIGHT_BLUE_BRICKS)); + public static final SlabBlock CRACKED_LIGHT_BLUE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_LIGHT_BLUE_BRICKS)); public static final Block MOSSY_LIGHT_BLUE_BRICKS = new Block(FabricBlockSettings.copy(LIGHT_BLUE_TILES)); + public static final StairsBlock MOSSY_LIGHT_BLUE_BRICKS_STAIRS = new StairsBlock(MOSSY_LIGHT_BLUE_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_LIGHT_BLUE_BRICKS)); + public static final SlabBlock MOSSY_LIGHT_BLUE_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_LIGHT_BLUE_BRICKS)); public static final Block BIG_GRANITE_TILES = new Block(FabricBlockSettings.copy(Blocks.POLISHED_GRANITE)); public static final Block SMALL_GRANITE_TILES = new Block(FabricBlockSettings.copy(Blocks.POLISHED_GRANITE)); public static final Block SMALL_CRACKED_GRANITE_TILES = new Block(FabricBlockSettings.copy(Blocks.POLISHED_GRANITE)); public static final Block GREEN_WHITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).hardness(1.5f).requiresTool().resistance(6f).mapColor(MapColor.OFF_WHITE)); + public static final StairsBlock GREEN_WHITE_TILES_STAIRS = new StairsBlock(GREEN_WHITE_TILES.getDefaultState(), FabricBlockSettings.copy(GREEN_WHITE_TILES)); + public static final SlabBlock GREEN_WHITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(GREEN_WHITE_TILES)); public static final Block CRACKED_GREEN_WHITE_TILES = new Block(FabricBlockSettings.copy(GREEN_WHITE_TILES)); + public static final StairsBlock CRACKED_GREEN_WHITE_TILES_STAIRS = new StairsBlock(CRACKED_GREEN_WHITE_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_GREEN_WHITE_TILES)); + public static final SlabBlock CRACKED_GREEN_WHITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_GREEN_WHITE_TILES)); public static final Block MOSSY_GREEN_WHITE_TILES = new Block(FabricBlockSettings.copy(GREEN_WHITE_TILES)); + public static final StairsBlock MOSSY_GREEN_WHITE_TILES_STAIRS = new StairsBlock(MOSSY_GREEN_WHITE_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_GREEN_WHITE_TILES)); + public static final SlabBlock MOSSY_GREEN_WHITE_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_GREEN_WHITE_TILES)); public static final Block TUFF_TILES = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock TUFF_TILES_STAIRS = new StairsBlock(TUFF_TILES.getDefaultState(), FabricBlockSettings.copy(TUFF_TILES)); + public static final SlabBlock TUFF_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(TUFF_TILES)); public static final Block CRACKED_TUFF_TILES = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock CRACKED_TUFF_TILES_STAIRS = new StairsBlock(CRACKED_TUFF_TILES.getDefaultState(), FabricBlockSettings.copy(CRACKED_TUFF_TILES)); + public static final SlabBlock CRACKED_TUFF_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_TUFF_TILES)); public static final Block MOSSY_TUFF_TILES = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock MOSSY_TUFF_TILES_STAIRS = new StairsBlock(MOSSY_TUFF_TILES.getDefaultState(), FabricBlockSettings.copy(MOSSY_TUFF_TILES)); + public static final SlabBlock MOSSY_TUFF_TILES_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_TUFF_TILES)); public static final Block BIG_TUFF_TILES = new Block(FabricBlockSettings.copy(Blocks.TUFF)); public static final Block TUFF_BRICKS = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock TUFF_BRICKS_STAIRS = new StairsBlock(TUFF_BRICKS.getDefaultState(), FabricBlockSettings.copy(TUFF_BRICKS)); + public static final SlabBlock TUFF_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(TUFF_BRICKS)); public static final Block CRACKED_TUFF_BRICKS = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock CRACKED_TUFF_BRICKS_STAIRS = new StairsBlock(CRACKED_TUFF_BRICKS.getDefaultState(), FabricBlockSettings.copy(CRACKED_TUFF_BRICKS)); + public static final SlabBlock CRACKED_TUFF_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_TUFF_BRICKS)); public static final Block MOSSY_TUFF_BRICKS = new Block(FabricBlockSettings.copy(Blocks.TUFF)); + public static final StairsBlock MOSSY_TUFF_BRICKS_STAIRS = new StairsBlock(MOSSY_TUFF_BRICKS.getDefaultState(), FabricBlockSettings.copy(MOSSY_TUFF_BRICKS)); + public static final SlabBlock MOSSY_TUFF_BRICKS_SLAB = new SlabBlock(FabricBlockSettings.copy(MOSSY_TUFF_BRICKS)); public static final Block SMALL_WHITE_TILES = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).strength(1.5f, 6f).requiresTool().mapColor(MapColor.WHITE)); public static final Block SMALL_CRACKED_WHITE_TILES = new Block(FabricBlockSettings.copy(SMALL_WHITE_TILES)); @@ -144,53 +269,129 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final Block VERY_CRACKED_WHITEWASH = new Block(FabricBlockSettings.copy(WHITEWASH)); public static final Block WHITE_CONCRETE = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).strength(1.5f, 6f).requiresTool().mapColor(MapColor.OFF_WHITE)); + public static final StairsBlock WHITE_CONCRETE_STAIRS = new StairsBlock(WHITE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(WHITE_CONCRETE)); + public static final SlabBlock WHITE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(WHITE_CONCRETE)); public static final Block CRACKED_WHITE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE)); + public static final StairsBlock CRACKED_WHITE_CONCRETE_STAIRS = new StairsBlock(CRACKED_WHITE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_WHITE_CONCRETE)); + public static final SlabBlock CRACKED_WHITE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_WHITE_CONCRETE)); public static final ConcreteWithBarsBlock WHITE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE)); public static final Block BEIGE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN)); - public static final Block CRACKED_BEIGE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN)); - public static final ConcreteWithBarsBlock BEIGE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.OAK_TAN)); + public static final StairsBlock BEIGE_CONCRETE_STAIRS = new StairsBlock(BEIGE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(BEIGE_CONCRETE)); + public static final SlabBlock BEIGE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(BEIGE_CONCRETE)); + public static final Block CRACKED_BEIGE_CONCRETE = new Block(FabricBlockSettings.copy(BEIGE_CONCRETE)); + public static final StairsBlock CRACKED_BEIGE_CONCRETE_STAIRS = new StairsBlock(CRACKED_BEIGE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_BEIGE_CONCRETE)); + public static final SlabBlock CRACKED_BEIGE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_BEIGE_CONCRETE)); + public static final ConcreteWithBarsBlock BEIGE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(BEIGE_CONCRETE)); public static final Block BLUE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE)); - public static final Block CRACKED_BLUE_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE)); - public static final ConcreteWithBarsBlock BLUE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_BLUE)); + public static final StairsBlock BLUE_CONCRETE_STAIRS = new StairsBlock(BLUE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(BLUE_CONCRETE)); + public static final SlabBlock BLUE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(BLUE_CONCRETE)); + public static final Block CRACKED_BLUE_CONCRETE = new Block(FabricBlockSettings.copy(BLUE_CONCRETE)); + public static final StairsBlock CRACKED_BLUE_CONCRETE_STAIRS = new StairsBlock(CRACKED_BLUE_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_BLUE_CONCRETE)); + public static final SlabBlock CRACKED_BLUE_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_BLUE_CONCRETE)); + public static final ConcreteWithBarsBlock BLUE_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(BLUE_CONCRETE)); public static final Block RED_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED)); - public static final Block CRACKED_RED_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED)); - public static final ConcreteWithBarsBlock RED_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_RED)); + public static final StairsBlock RED_CONCRETE_STAIRS = new StairsBlock(RED_CONCRETE.getDefaultState(), FabricBlockSettings.copy(RED_CONCRETE)); + public static final SlabBlock RED_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(RED_CONCRETE)); + public static final Block CRACKED_RED_CONCRETE = new Block(FabricBlockSettings.copy(RED_CONCRETE)); + public static final StairsBlock CRACKED_RED_CONCRETE_STAIRS = new StairsBlock(CRACKED_RED_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_RED_CONCRETE)); + public static final SlabBlock CRACKED_RED_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_RED_CONCRETE)); + public static final ConcreteWithBarsBlock RED_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(RED_CONCRETE)); public static final Block YELLOW_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW)); - public static final Block CRACKED_YELLOW_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW)); - public static final ConcreteWithBarsBlock YELLOW_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_YELLOW)); + public static final StairsBlock YELLOW_CONCRETE_STAIRS = new StairsBlock(YELLOW_CONCRETE.getDefaultState(), FabricBlockSettings.copy(YELLOW_CONCRETE)); + public static final SlabBlock YELLOW_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(YELLOW_CONCRETE)); + public static final Block CRACKED_YELLOW_CONCRETE = new Block(FabricBlockSettings.copy(YELLOW_CONCRETE)); + public static final StairsBlock CRACKED_YELLOW_CONCRETE_STAIRS = new StairsBlock(CRACKED_YELLOW_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_YELLOW_CONCRETE)); + public static final SlabBlock CRACKED_YELLOW_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_YELLOW_CONCRETE)); + public static final ConcreteWithBarsBlock YELLOW_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(YELLOW_CONCRETE)); public static final Block GREEN_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN)); - public static final Block CRACKED_GREEN_CONCRETE = new Block(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN)); - public static final ConcreteWithBarsBlock GREEN_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(WHITE_CONCRETE).mapColor(MapColor.TERRACOTTA_GREEN)); + public static final StairsBlock GREEN_CONCRETE_STAIRS = new StairsBlock(GREEN_CONCRETE.getDefaultState(), FabricBlockSettings.copy(GREEN_CONCRETE)); + public static final SlabBlock GREEN_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(GREEN_CONCRETE)); + public static final Block CRACKED_GREEN_CONCRETE = new Block(FabricBlockSettings.copy(GREEN_CONCRETE)); + public static final StairsBlock CRACKED_GREEN_CONCRETE_STAIRS = new StairsBlock(CRACKED_GREEN_CONCRETE.getDefaultState(), FabricBlockSettings.copy(CRACKED_GREEN_CONCRETE)); + public static final SlabBlock CRACKED_GREEN_CONCRETE_SLAB = new SlabBlock(FabricBlockSettings.copy(CRACKED_GREEN_CONCRETE)); + public static final ConcreteWithBarsBlock GREEN_CONCRETE_WITH_BARS = new ConcreteWithBarsBlock(FabricBlockSettings.copy(GREEN_CONCRETE)); // WOOD/FLOOR ========== public static final Block HERRINGBONE_ACACIA_PLANKS = new Block(FabricBlockSettings.copy(Blocks.ACACIA_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_ACACIA_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_ACACIA_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_ACACIA_PLANKS)); + public static final SlabBlock HERRINGBONE_ACACIA_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_ACACIA_PLANKS)); public static final Block CROSS_ACACIA_PLANKS = new Block(FabricBlockSettings.copy(Blocks.ACACIA_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_ACACIA_PLANKS_STAIRS = new StairsBlock(CROSS_ACACIA_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_ACACIA_PLANKS)); + public static final SlabBlock CROSS_ACACIA_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_ACACIA_PLANKS)); public static final Block HERRINGBONE_OAK_PLANKS = new Block(FabricBlockSettings.copy(Blocks.OAK_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_OAK_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_OAK_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_OAK_PLANKS)); + public static final SlabBlock HERRINGBONE_OAK_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_OAK_PLANKS)); public static final Block CROSS_OAK_PLANKS = new Block(FabricBlockSettings.copy(Blocks.OAK_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_OAK_PLANKS_STAIRS = new StairsBlock(CROSS_OAK_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_OAK_PLANKS)); + public static final SlabBlock CROSS_OAK_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_OAK_PLANKS)); public static final Block HERRINGBONE_BIRCH_PLANKS = new Block(FabricBlockSettings.copy(Blocks.BIRCH_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_BIRCH_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_BIRCH_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_BIRCH_PLANKS)); + public static final SlabBlock HERRINGBONE_BIRCH_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_BIRCH_PLANKS)); public static final Block CROSS_BIRCH_PLANKS = new Block(FabricBlockSettings.copy(Blocks.BIRCH_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_BIRCH_PLANKS_STAIRS = new StairsBlock(CROSS_BIRCH_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_BIRCH_PLANKS)); + public static final SlabBlock CROSS_BIRCH_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_BIRCH_PLANKS)); public static final Block HERRINGBONE_CRIMSON_PLANKS = new Block(FabricBlockSettings.copy(Blocks.CRIMSON_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_CRIMSON_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_CRIMSON_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_CRIMSON_PLANKS)); + public static final SlabBlock HERRINGBONE_CRIMSON_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_CRIMSON_PLANKS)); public static final Block CROSS_CRIMSON_PLANKS = new Block(FabricBlockSettings.copy(Blocks.CRIMSON_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_CRIMSON_PLANKS_STAIRS = new StairsBlock(CROSS_CRIMSON_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_CRIMSON_PLANKS)); + public static final SlabBlock CROSS_CRIMSON_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_CRIMSON_PLANKS)); public static final Block HERRINGBONE_DARK_OAK_PLANKS = new Block(FabricBlockSettings.copy(Blocks.DARK_OAK_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_DARK_OAK_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_DARK_OAK_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_DARK_OAK_PLANKS)); + public static final SlabBlock HERRINGBONE_DARK_OAK_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_DARK_OAK_PLANKS)); public static final Block CROSS_DARK_OAK_PLANKS = new Block(FabricBlockSettings.copy(Blocks.DARK_OAK_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_DARK_OAK_PLANKS_STAIRS = new StairsBlock(CROSS_DARK_OAK_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_DARK_OAK_PLANKS)); + public static final SlabBlock CROSS_DARK_OAK_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_DARK_OAK_PLANKS)); public static final Block HERRINGBONE_JUNGLE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.JUNGLE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_JUNGLE_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_JUNGLE_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_JUNGLE_PLANKS)); + public static final SlabBlock HERRINGBONE_JUNGLE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_JUNGLE_PLANKS)); public static final Block CROSS_JUNGLE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.JUNGLE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_JUNGLE_PLANKS_STAIRS = new StairsBlock(CROSS_JUNGLE_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_JUNGLE_PLANKS)); + public static final SlabBlock CROSS_JUNGLE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_JUNGLE_PLANKS)); public static final Block HERRINGBONE_MANGROVE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.MANGROVE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_MANGROVE_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_MANGROVE_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_MANGROVE_PLANKS)); + public static final SlabBlock HERRINGBONE_MANGROVE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_MANGROVE_PLANKS)); public static final Block CROSS_MANGROVE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.MANGROVE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_MANGROVE_PLANKS_STAIRS = new StairsBlock(CROSS_MANGROVE_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_MANGROVE_PLANKS)); + public static final SlabBlock CROSS_MANGROVE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_MANGROVE_PLANKS)); public static final Block HERRINGBONE_SPRUCE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.SPRUCE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock HERRINGBONE_SPRUCE_PLANKS_STAIRS = new StairsBlock(HERRINGBONE_SPRUCE_PLANKS.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_SPRUCE_PLANKS)); + public static final SlabBlock HERRINGBONE_SPRUCE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_SPRUCE_PLANKS)); public static final Block CROSS_SPRUCE_PLANKS = new Block(FabricBlockSettings.copy(Blocks.SPRUCE_PLANKS).sounds(NSE_Sounds.PARQUET_SOUNDS)); + public static final StairsBlock CROSS_SPRUCE_PLANKS_STAIRS = new StairsBlock(CROSS_SPRUCE_PLANKS.getDefaultState(), FabricBlockSettings.copy(CROSS_SPRUCE_PLANKS)); + public static final SlabBlock CROSS_SPRUCE_PLANKS_SLAB = new SlabBlock(FabricBlockSettings.copy(CROSS_SPRUCE_PLANKS)); public static final Block HERRINGBONE_PARQUET = new Block(FabricBlockSettings.create().sounds(NSE_Sounds.PARQUET_SOUNDS).strength(2f, 3f).mapColor(MapColor.OAK_TAN)); + public static final StairsBlock HERRINGBONE_PARQUET_STAIRS = new StairsBlock(HERRINGBONE_PARQUET.getDefaultState(), FabricBlockSettings.copy(HERRINGBONE_PARQUET)); + public static final SlabBlock HERRINGBONE_PARQUET_SLAB = new SlabBlock(FabricBlockSettings.copy(HERRINGBONE_PARQUET)); public static final Block STRAIGHT_PARQUET = new Block(FabricBlockSettings.copy(HERRINGBONE_PARQUET)); + public static final StairsBlock STRAIGHT_PARQUET_STAIRS = new StairsBlock(STRAIGHT_PARQUET.getDefaultState(), FabricBlockSettings.copy(STRAIGHT_PARQUET)); + public static final SlabBlock STRAIGHT_PARQUET_SLAB = new SlabBlock(FabricBlockSettings.copy(STRAIGHT_PARQUET)); public static final Block SEPARATED_PARQUET = new Block(FabricBlockSettings.copy(HERRINGBONE_PARQUET)); + public static final StairsBlock SEPARATED_PARQUET_STAIRS = new StairsBlock(SEPARATED_PARQUET.getDefaultState(), FabricBlockSettings.copy(SEPARATED_PARQUET)); + public static final SlabBlock SEPARATED_PARQUET_SLAB = new SlabBlock(FabricBlockSettings.copy(SEPARATED_PARQUET)); public static final Block GREEN_LINOLEUM = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.CHERRY_WOOD).strength(2, 3f).mapColor(MapColor.TERRACOTTA_GREEN)); + public static final StairsBlock GREEN_LINOLEUM_STAIRS = new StairsBlock(GREEN_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(GREEN_LINOLEUM)); + public static final SlabBlock GREEN_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(GREEN_LINOLEUM)); public static final Block BLUE_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.TERRACOTTA_BLUE)); + public static final StairsBlock BLUE_LINOLEUM_STAIRS = new StairsBlock(BLUE_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(BLUE_LINOLEUM)); + public static final SlabBlock BLUE_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(BLUE_LINOLEUM)); public static final Block RED_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.TERRACOTTA_RED)); + public static final StairsBlock RED_LINOLEUM_STAIRS = new StairsBlock(RED_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(RED_LINOLEUM)); + public static final SlabBlock RED_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(RED_LINOLEUM)); public static final Block GRAY_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.TERRACOTTA_GRAY)); + public static final StairsBlock GRAY_LINOLEUM_STAIRS = new StairsBlock(GRAY_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(GRAY_LINOLEUM)); + public static final SlabBlock GRAY_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(GRAY_LINOLEUM)); public static final Block ORANGE_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.TERRACOTTA_ORANGE)); + public static final StairsBlock ORANGE_LINOLEUM_STAIRS = new StairsBlock(ORANGE_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(ORANGE_LINOLEUM)); + public static final SlabBlock ORANGE_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(ORANGE_LINOLEUM)); public static final Block BROWN_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.TERRACOTTA_BROWN)); + public static final StairsBlock BROWN_LINOLEUM_STAIRS = new StairsBlock(BROWN_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(BROWN_LINOLEUM)); + public static final SlabBlock BROWN_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(BROWN_LINOLEUM)); public static final Block CYAN_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.CYAN)); + public static final StairsBlock CYAN_LINOLEUM_STAIRS = new StairsBlock(CYAN_LINOLEUM.getDefaultState(), FabricBlockSettings.copy(CYAN_LINOLEUM)); + public static final SlabBlock CYAN_LINOLEUM_SLAB = new SlabBlock(FabricBlockSettings.copy(CYAN_LINOLEUM)); public static final Block CROSS_ORANGE_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.ORANGE)); public static final Block CROSS_BROWN_LINOLEUM = new Block(FabricBlockSettings.copy(GREEN_LINOLEUM).mapColor(MapColor.BROWN)); @@ -200,6 +401,8 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final DoorBlock CHISELED_BIRCH_DOOR = new DoorBlock(FabricBlockSettings.copy(Blocks.BIRCH_DOOR), BlockSetType.BIRCH); public static final Block NII_FLOOR = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.POLISHED_DEEPSLATE).strength(1.5f, 6f).requiresTool().mapColor(MapColor.GRAY)); + public static final StairsBlock NII_FLOOR_STAIRS = new StairsBlock(NII_FLOOR.getDefaultState(), FabricBlockSettings.copy(NII_FLOOR)); + public static final SlabBlock NII_FLOOR_SLAB = new SlabBlock(FabricBlockSettings.copy(NII_FLOOR)); // Industrial ========== public static final Block INDUSTRIAL_WARNING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.METAL).hardness(4f).resistance(6f).requiresTool().mapColor(MapColor.BLACK)); @@ -216,6 +419,8 @@ public class NSE_Blocks extends NSE_BaseRegistration { public static final Block MAGENTA_WARNING = new Block(FabricBlockSettings.copy(INDUSTRIAL_WARNING).mapColor(MapColor.MAGENTA)); public static final Block METAL_PLATING = new Block(FabricBlockSettings.create().sounds(BlockSoundGroup.NETHERITE).hardness(5f).requiresTool().mapColor(MapColor.IRON_GRAY)); + public static final StairsBlock METAL_PLATING_STAIRS = new StairsBlock(METAL_PLATING.getDefaultState(), FabricBlockSettings.copy(METAL_PLATING)); + public static final SlabBlock METAL_PLATING_SLAB = new SlabBlock(FabricBlockSettings.copy(METAL_PLATING)); public static final BarrelBlock CRATE = new BarrelBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.CHISELED_BOOKSHELF).nonOpaque().mapColor(MapColor.OAK_TAN).hardness(1.8f)); public static final WallBlock CONCRETE_WALL = new WallBlock(FabricBlockSettings.create().sounds(BlockSoundGroup.STONE).mapColor(MapColor.STONE_GRAY)); @@ -243,53 +448,121 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("sand_tiles_stairs", () -> SAND_TILES_STAIRS, NSE_BUILDING_TAB); registerBlock("sand_tiles_slab", () -> SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_sand_tiles", () -> CRACKED_SAND_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_sand_tiles_stairs", () -> CRACKED_SAND_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_sand_tiles_slab", () -> CRACKED_SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_sand_tiles", () -> MOSSY_SAND_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_sand_tiles_stairs", () -> MOSSY_SAND_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_sand_tiles_slab", () -> MOSSY_SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("small_sand_tiles", () -> SMALL_SAND_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_sand_tiles", () -> SMALL_CRACKED_SAND_TILES, NSE_BUILDING_TAB); registerBlock("herringbone_sand_tiles", () -> HERRINGBONE_SAND_TILES, NSE_BUILDING_TAB); + registerBlock("herringbone_sand_tiles_stairs", () -> HERRINGBONE_SAND_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_sand_tiles_slab", () -> HERRINGBONE_SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cross_sand_tiles", () -> CROSS_SAND_TILES, NSE_BUILDING_TAB); + registerBlock("cross_sand_tiles_stairs", () -> CROSS_SAND_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_sand_tiles_slab", () -> CROSS_SAND_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("big_sand_tiles", () -> BIG_SAND_TILES, NSE_BUILDING_TAB); registerBlock("sand_bricks", () -> SAND_BRICKS, NSE_BUILDING_TAB); + registerBlock("sand_bricks_stairs", () -> SAND_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("sand_bricks_slab", () -> SAND_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_sand_bricks", () -> CRACKED_SAND_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_sand_bricks_stairs", () -> CRACKED_SAND_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_sand_bricks_slab", () -> CRACKED_SAND_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_sand_bricks", () -> MOSSY_SAND_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_sand_bricks_stairs", () -> MOSSY_SAND_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_sand_bricks_slab", () -> MOSSY_SAND_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("big_sand_bricks", () -> BIG_SAND_BRICKS, NSE_BUILDING_TAB); + registerBlock("big_sand_bricks_stairs", () -> BIG_SAND_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("big_sand_bricks_slab", () -> BIG_SAND_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("brick_tiles", () -> BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("brick_tiles_stairs", () -> BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("brick_tiles_slab", () -> BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_brick_tiles", () -> CRACKED_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_brick_tiles_stairs", () -> CRACKED_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_brick_tiles_slab", () -> CRACKED_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_brick_tiles", () -> MOSSY_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_brick_tiles_stairs", () -> MOSSY_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_brick_tiles_slab", () -> MOSSY_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("dirty_brick_tiles", () -> DIRTY_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("dirty_brick_tiles_stairs", () -> DIRTY_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("dirty_brick_tiles_slab", () -> DIRTY_BRICK_TILES_SLAB, NSE_BUILDING_TAB); + registerBlock("dark_brick_tiles", () -> DARK_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("dark_brick_tiles_stairs", () -> DARK_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("dark_brick_tiles_slab", () -> DARK_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_dark_brick_tiles", () -> CRACKED_DARK_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_dark_brick_tiles_stairs", () -> CRACKED_DARK_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_dark_brick_tiles_slab", () -> CRACKED_DARK_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_dark_brick_tiles", () -> MOSSY_DARK_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_dark_brick_tiles_stairs", () -> MOSSY_DARK_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_dark_brick_tiles_slab", () -> MOSSY_DARK_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("dirty_dark_brick_tiles", () -> DIRTY_DARK_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("dirty_dark_brick_tiles_stairs", () -> DIRTY_DARK_BRICK_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("dirty_dark_brick_tiles_slab", () -> DIRTY_DARK_BRICK_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("glazed_brick_tiles", () -> GLAZED_BRICK_TILES, NSE_BUILDING_TAB); registerBlock("cracked_glazed_brick_tiles", () -> CRACKED_GLAZED_BRICK_TILES, NSE_BUILDING_TAB); + registerBlock("red_bricks", () -> RED_BRICKS, NSE_BUILDING_TAB); + registerBlock("red_bricks_stairs", () -> RED_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("red_bricks_slab", () -> RED_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_red_bricks", () -> CRACKED_RED_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_red_bricks_stairs", () -> CRACKED_RED_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_red_bricks_slab", () -> CRACKED_RED_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_red_bricks", () -> MOSSY_RED_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_red_bricks_stairs", () -> MOSSY_RED_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_red_bricks_slab", () -> MOSSY_RED_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("teal_tiles", () -> TEAL_TILES, NSE_BUILDING_TAB); + registerBlock("teal_tiles_stairs", () -> TEAL_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("teal_tiles_slab", () -> TEAL_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_teal_tiles", () -> CRACKED_TEAL_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_teal_tiles_stairs", () -> CRACKED_TEAL_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_teal_tiles_slab", () -> CRACKED_TEAL_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_teal_tiles", () -> MOSSY_TEAL_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_teal_tiles_stairs", () -> MOSSY_TEAL_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_teal_tiles_slab", () -> MOSSY_TEAL_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("small_teal_tiles", () -> SMALL_TEAL_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_teal_tiles", () -> SMALL_CRACKED_TEAL_TILES, NSE_BUILDING_TAB); registerBlock("glazed_teal_tiles", () -> GLAZED_TEAL_TILES, NSE_BUILDING_TAB); registerBlock("cracked_glazed_teal_tiles", () -> CRACKED_GLAZED_TEAL_TILES, NSE_BUILDING_TAB); registerBlock("variated_teal_tiles", () -> VARIATED_TEAL_TILES, NSE_BUILDING_TAB); + registerBlock("variated_teal_tiles_stairs", () -> VARIATED_TEAL_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("variated_teal_tiles_slab", () -> VARIATED_TEAL_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("big_green_tiles", () -> BIG_GREEN_TILES, NSE_BUILDING_TAB); registerBlock("big_green_tiles_cracked", () -> BIG_GREEN_TILES_CRACKED, NSE_BUILDING_TAB); registerBlock("green_bricks", () -> GREEN_BRICKS, NSE_BUILDING_TAB); + registerBlock("green_bricks_stairs", () -> GREEN_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("green_bricks_slab", () -> GREEN_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_green_bricks", () -> CRACKED_GREEN_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_green_bricks_stairs", () -> CRACKED_GREEN_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_green_bricks_slab", () -> CRACKED_GREEN_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_green_bricks", () -> MOSSY_GREEN_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_green_bricks_stairs", () -> MOSSY_GREEN_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_green_bricks_slab", () -> MOSSY_GREEN_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("green_bricks_2", () -> GREEN_BRICKS_2, NSE_BUILDING_TAB); + registerBlock("green_bricks_2_stairs", () -> GREEN_BRICKS_2_STAIRS, NSE_BUILDING_TAB); + registerBlock("green_bricks_2_slab", () -> GREEN_BRICKS_2_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_green_bricks_2", () -> CRACKED_GREEN_BRICKS_2, NSE_BUILDING_TAB); + registerBlock("cracked_green_bricks_2_stairs", () -> CRACKED_GREEN_BRICKS_2_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_green_bricks_2_slab", () -> CRACKED_GREEN_BRICKS_2_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_green_bricks_2", () -> MOSSY_GREEN_BRICKS_2, NSE_BUILDING_TAB); + registerBlock("mossy_green_bricks_2_stairs", () -> MOSSY_GREEN_BRICKS_2_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_green_bricks_2_slab", () -> MOSSY_GREEN_BRICKS_2_SLAB, NSE_BUILDING_TAB); registerBlock("aquamarine_tiles", () -> AQUAMARINE_TILES, NSE_BUILDING_TAB); + registerBlock("aquamarine_tiles_stairs", () -> AQUAMARINE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("aquamarine_tiles_slab", () -> AQUAMARINE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_aquamarine_tiles", () -> CRACKED_AQUAMARINE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_aquamarine_tiles_stairs", () -> CRACKED_AQUAMARINE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_aquamarine_tiles_slab", () -> CRACKED_AQUAMARINE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_aquamarine_tiles", () -> MOSSY_AQUAMARINE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_aquamarine_tiles_stairs", () -> MOSSY_AQUAMARINE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_aquamarine_tiles_slab", () -> MOSSY_AQUAMARINE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("dirty_aquamarine_tiles", () -> DIRTY_AQUAMARINE_TILES, NSE_BUILDING_TAB); + registerBlock("dirty_aquamarine_tiles_stairs", () -> DIRTY_AQUAMARINE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("dirty_aquamarine_tiles_slab", () -> DIRTY_AQUAMARINE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("small_aquamarine_tiles", () -> SMALL_AQUAMARINE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_aquamarine_tiles", () -> SMALL_CRACKED_AQUAMARINE_TILES, NSE_BUILDING_TAB); registerBlock("glazed_aquamarine_tiles", () -> GLAZED_AQUAMARINE_TILES, NSE_BUILDING_TAB); @@ -299,12 +572,24 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("small_cracked_diorite_tiles", () -> SMALL_CRACKED_DIORITE_TILES, NSE_BUILDING_TAB); registerBlock("big_diorite_tiles", () -> BIG_DIORITE_TILES, NSE_BUILDING_TAB); registerBlock("diorite_bricks", () -> DIORITE_BRICKS, NSE_BUILDING_TAB); + registerBlock("diorite_bricks_stairs", () -> DIORITE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("diorite_bricks_slab", () -> DIORITE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_diorite_bricks", () -> CRACKED_DIORITE_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_diorite_bricks_stairs", () -> CRACKED_DIORITE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_diorite_bricks_slab", () -> CRACKED_DIORITE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_diorite_bricks", () -> MOSSY_DIORITE_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_diorite_bricks_stairs", () -> MOSSY_DIORITE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_diorite_bricks_slab", () -> MOSSY_DIORITE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("calcite_tiles", () -> CALCITE_TILES, NSE_BUILDING_TAB); + registerBlock("calcite_tiles_stairs", () -> CALCITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("calcite_tiles_slab", () -> CALCITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_calcite_tiles", () -> CRACKED_CALCITE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_calcite_tiles_stairs", () -> CRACKED_CALCITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_calcite_tiles_slab", () -> CRACKED_CALCITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_calcite_tiles", () -> MOSSY_CALCITE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_calcite_tiles_stairs", () -> MOSSY_CALCITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_calcite_tiles_slab", () -> MOSSY_CALCITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("diagonal_calcite_tiles", () -> DIAGONAL_CALCITE_TILES, NSE_BUILDING_TAB); registerBlock("nii_wall_1", () -> NII_WALL_1, NSE_BUILDING_TAB); @@ -313,44 +598,88 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("nii_wall_3", () -> NII_WALL_3, NSE_BUILDING_TAB); registerBlock("dripstone_tiles", () -> DRIPSTONE_TILES, NSE_BUILDING_TAB); + registerBlock("dripstone_tiles_stairs", () -> DRIPSTONE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("dripstone_tiles_slab", () -> DRIPSTONE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_dripstone_tiles", () -> CRACKED_DRIPSTONE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_dripstone_tiles_stairs", () -> CRACKED_DRIPSTONE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_dripstone_tiles_slab", () -> CRACKED_DRIPSTONE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_dripstone_tiles", () -> MOSSY_DRIPSTONE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_dripstone_tiles_stairs", () -> MOSSY_DRIPSTONE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_dripstone_tiles_slab", () -> MOSSY_DRIPSTONE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("dripstone_bricks", () -> DRIPSTONE_BRICKS, NSE_BUILDING_TAB); registerBlock("deepslate_tiles", () -> DEEPSLATE_TILES, NSE_BUILDING_TAB); + registerBlock("deepslate_tiles_stairs", () -> DEEPSLATE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("deepslate_tiles_slab", () -> DEEPSLATE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_deepslate_tiles", () -> CRACKED_DEEPSLATE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_deepslate_tiles_stairs", () -> CRACKED_DEEPSLATE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_deepslate_tiles_slab", () -> CRACKED_DEEPSLATE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_deepslate_tiles", () -> MOSSY_DEEPSLATE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_deepslate_tiles_stairs", () -> MOSSY_DEEPSLATE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_deepslate_tiles_slab", () -> MOSSY_DEEPSLATE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("small_deepslate_tiles", () -> SMALL_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_deepslate_tiles", () -> SMALL_CRACKED_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("diagonal_deepslate_tiles", () -> DIAGONAL_DEEPSLATE_TILES, NSE_BUILDING_TAB); registerBlock("light_blue_tiles", () -> LIGHT_BLUE_TILES, NSE_BUILDING_TAB); + registerBlock("light_blue_tiles_stairs", () -> LIGHT_BLUE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("light_blue_tiles_slab", () -> LIGHT_BLUE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_light_blue_tiles", () -> CRACKED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_light_blue_tiles_stairs", () -> CRACKED_LIGHT_BLUE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_light_blue_tiles_slab", () -> CRACKED_LIGHT_BLUE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_light_blue_tiles", () -> MOSSY_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_light_blue_tiles_stairs", () -> MOSSY_LIGHT_BLUE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_light_blue_tiles_slab", () -> MOSSY_LIGHT_BLUE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("variated_light_blue_tiles", () -> VARIATED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); + registerBlock("variated_light_blue_tiles_stairs", () -> VARIATED_LIGHT_BLUE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("variated_light_blue_tiles_slab", () -> VARIATED_LIGHT_BLUE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("small_light_blue_tiles", () -> SMALL_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_light_blue_tiles", () -> SMALL_CRACKED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("glazed_light_blue_tiles", () -> GLAZED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("cracked_glazed_light_blue_tiles", () -> CRACKED_GLAZED_LIGHT_BLUE_TILES, NSE_BUILDING_TAB); registerBlock("light_blue_bricks", () -> LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); + registerBlock("light_blue_bricks_stairs", () -> LIGHT_BLUE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("light_blue_bricks_slab", () -> LIGHT_BLUE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_light_blue_bricks", () -> CRACKED_LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_light_blue_bricks_stairs", () -> CRACKED_LIGHT_BLUE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_light_blue_bricks_slab", () -> CRACKED_LIGHT_BLUE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_light_blue_bricks", () -> MOSSY_LIGHT_BLUE_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_light_blue_bricks_stairs", () -> MOSSY_LIGHT_BLUE_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_light_blue_bricks_slab", () -> MOSSY_LIGHT_BLUE_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("big_granite_tiles", () -> BIG_GRANITE_TILES, NSE_BUILDING_TAB); registerBlock("small_granite_tiles", () -> SMALL_GRANITE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_granite_tiles", () -> SMALL_CRACKED_GRANITE_TILES, NSE_BUILDING_TAB); registerBlock("green_white_tiles", () -> GREEN_WHITE_TILES, NSE_BUILDING_TAB); + registerBlock("green_white_tiles_stairs", () -> GREEN_WHITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("green_white_tiles_slab", () -> GREEN_WHITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_green_white_tiles", () -> CRACKED_GREEN_WHITE_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_green_white_tiles_stairs", () -> CRACKED_GREEN_WHITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_green_white_tiles_slab", () -> CRACKED_GREEN_WHITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_green_white_tiles", () -> MOSSY_GREEN_WHITE_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_green_white_tiles_stairs", () -> MOSSY_GREEN_WHITE_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_green_white_tiles_slab", () -> MOSSY_GREEN_WHITE_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("tuff_tiles", () -> TUFF_TILES, NSE_BUILDING_TAB); + registerBlock("tuff_tiles_stairs", () -> TUFF_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("tuff_tiles_slab", () -> TUFF_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_tuff_tiles", () -> CRACKED_TUFF_TILES, NSE_BUILDING_TAB); + registerBlock("cracked_tuff_tiles_stairs", () -> CRACKED_TUFF_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_tuff_tiles_slab", () -> CRACKED_TUFF_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_tuff_tiles", () -> MOSSY_TUFF_TILES, NSE_BUILDING_TAB); + registerBlock("mossy_tuff_tiles_stairs", () -> MOSSY_TUFF_TILES_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_tuff_tiles_slab", () -> MOSSY_TUFF_TILES_SLAB, NSE_BUILDING_TAB); registerBlock("big_tuff_tiles", () -> BIG_TUFF_TILES, NSE_BUILDING_TAB); registerBlock("tuff_bricks", () -> TUFF_BRICKS, NSE_BUILDING_TAB); + registerBlock("tuff_bricks_stairs", () -> TUFF_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("tuff_bricks_slab", () -> TUFF_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_tuff_bricks", () -> CRACKED_TUFF_BRICKS, NSE_BUILDING_TAB); + registerBlock("cracked_tuff_bricks_stairs", () -> CRACKED_TUFF_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_tuff_bricks_slab", () -> CRACKED_TUFF_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("mossy_tuff_bricks", () -> MOSSY_TUFF_BRICKS, NSE_BUILDING_TAB); + registerBlock("mossy_tuff_bricks_stairs", () -> MOSSY_TUFF_BRICKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("mossy_tuff_bricks_slab", () -> MOSSY_TUFF_BRICKS_SLAB, NSE_BUILDING_TAB); registerBlock("small_white_tiles", () -> SMALL_WHITE_TILES, NSE_BUILDING_TAB); registerBlock("small_cracked_white_tiles", () -> SMALL_CRACKED_WHITE_TILES, NSE_BUILDING_TAB); @@ -365,54 +694,133 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("very_cracked_whitewash", () -> VERY_CRACKED_WHITEWASH, NSE_BUILDING_TAB); registerBlock("white_concrete", () -> WHITE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("white_concrete_stairs", () -> WHITE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("white_concrete_slab", () -> WHITE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_white_concrete", () -> CRACKED_WHITE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_white_concrete_stairs", () -> CRACKED_WHITE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_white_concrete_slab", () -> CRACKED_WHITE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("white_concrete_with_bars", () -> WHITE_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("beige_concrete", () -> BEIGE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("beige_concrete_stairs", () -> BEIGE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("beige_concrete_slab", () -> BEIGE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_beige_concrete", () -> CRACKED_BEIGE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_beige_concrete_stairs", () -> CRACKED_BEIGE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_beige_concrete_slab", () -> CRACKED_BEIGE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("beige_concrete_with_bars", () -> BEIGE_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("blue_concrete", () -> BLUE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("blue_concrete_stairs", () -> BLUE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("blue_concrete_slab", () -> BLUE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_blue_concrete", () -> CRACKED_BLUE_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_blue_concrete_stairs", () -> CRACKED_BLUE_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_blue_concrete_slab", () -> CRACKED_BLUE_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("blue_concrete_with_bars", () -> BLUE_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("red_concrete", () -> RED_CONCRETE, NSE_BUILDING_TAB); + registerBlock("red_concrete_stairs", () -> RED_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("red_concrete_slab", () -> RED_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_red_concrete", () -> CRACKED_RED_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_red_concrete_stairs", () -> CRACKED_RED_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_red_concrete_slab", () -> CRACKED_RED_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("red_concrete_with_bars", () -> RED_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("yellow_concrete", () -> YELLOW_CONCRETE, NSE_BUILDING_TAB); + registerBlock("yellow_concrete_stairs", () -> YELLOW_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("yellow_concrete_slab", () -> YELLOW_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_yellow_concrete", () -> CRACKED_YELLOW_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_yellow_concrete_stairs", () -> CRACKED_YELLOW_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_yellow_concrete_slab", () -> CRACKED_YELLOW_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("yellow_concrete_with_bars", () -> YELLOW_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("green_concrete", () -> GREEN_CONCRETE, NSE_BUILDING_TAB); + registerBlock("green_concrete_stairs", () -> GREEN_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("green_concrete_slab", () -> GREEN_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("cracked_green_concrete", () -> CRACKED_GREEN_CONCRETE, NSE_BUILDING_TAB); + registerBlock("cracked_green_concrete_stairs", () -> CRACKED_GREEN_CONCRETE_STAIRS, NSE_BUILDING_TAB); + registerBlock("cracked_green_concrete_slab", () -> CRACKED_GREEN_CONCRETE_SLAB, NSE_BUILDING_TAB); registerBlock("green_concrete_with_bars", () -> GREEN_CONCRETE_WITH_BARS, NSE_BUILDING_TAB); registerBlock("nii_floor", () -> NII_FLOOR, NSE_BUILDING_TAB); + registerBlock("nii_floor_stairs", () -> NII_FLOOR_STAIRS, NSE_BUILDING_TAB); + registerBlock("nii_floor_slab", () -> NII_FLOOR_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_acacia_planks", () -> HERRINGBONE_ACACIA_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_acacia_planks_stairs", () -> HERRINGBONE_ACACIA_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_acacia_planks_slab", () -> HERRINGBONE_ACACIA_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_acacia_planks", () -> CROSS_ACACIA_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_acacia_planks_stairs", () -> CROSS_ACACIA_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_acacia_planks_slab", () -> CROSS_ACACIA_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_oak_planks", () -> HERRINGBONE_OAK_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_oak_planks_stairs", () -> HERRINGBONE_OAK_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_oak_planks_slab", () -> HERRINGBONE_OAK_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_oak_planks", () -> CROSS_OAK_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_oak_planks_stairs", () -> CROSS_OAK_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_oak_planks_slab", () -> CROSS_OAK_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_birch_planks", () -> HERRINGBONE_BIRCH_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_birch_planks_stairs", () -> HERRINGBONE_BIRCH_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_birch_planks_slab", () -> HERRINGBONE_BIRCH_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_birch_planks", () -> CROSS_BIRCH_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_birch_planks_stairs", () -> CROSS_BIRCH_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_birch_planks_slab", () -> CROSS_BIRCH_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_crimson_planks", () -> HERRINGBONE_CRIMSON_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_crimson_planks_stairs", () -> HERRINGBONE_CRIMSON_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_crimson_planks_slab", () -> HERRINGBONE_CRIMSON_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_crimson_planks", () -> CROSS_CRIMSON_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_crimson_planks_stairs", () -> CROSS_CRIMSON_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_crimson_planks_slab", () -> CROSS_CRIMSON_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_dark_oak_planks", () -> HERRINGBONE_DARK_OAK_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_dark_oak_planks_stairs", () -> HERRINGBONE_DARK_OAK_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_dark_oak_planks_slab", () -> HERRINGBONE_DARK_OAK_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_dark_oak_planks", () -> CROSS_DARK_OAK_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_dark_oak_planks_stairs", () -> CROSS_DARK_OAK_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_dark_oak_planks_slab", () -> CROSS_DARK_OAK_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_jungle_planks", () -> HERRINGBONE_JUNGLE_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_jungle_planks_stairs", () -> HERRINGBONE_JUNGLE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_jungle_planks_slab", () -> HERRINGBONE_JUNGLE_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_jungle_planks", () -> CROSS_JUNGLE_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_jungle_planks_stairs", () -> CROSS_JUNGLE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_jungle_planks_slab", () -> CROSS_JUNGLE_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_mangrove_planks", () -> HERRINGBONE_MANGROVE_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_mangrove_planks_stairs", () -> HERRINGBONE_MANGROVE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_mangrove_planks_slab", () -> HERRINGBONE_MANGROVE_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_mangrove_planks", () -> CROSS_MANGROVE_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_mangrove_planks_stairs", () -> CROSS_MANGROVE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_mangrove_planks_slab", () -> CROSS_MANGROVE_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("herringbone_spruce_planks", () -> HERRINGBONE_SPRUCE_PLANKS, NSE_BUILDING_TAB); + registerBlock("herringbone_spruce_planks_stairs", () -> HERRINGBONE_SPRUCE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_spruce_planks_slab", () -> HERRINGBONE_SPRUCE_PLANKS_SLAB, NSE_BUILDING_TAB); registerBlock("cross_spruce_planks", () -> CROSS_SPRUCE_PLANKS, NSE_BUILDING_TAB); + registerBlock("cross_spruce_planks_stairs", () -> CROSS_SPRUCE_PLANKS_STAIRS, NSE_BUILDING_TAB); + registerBlock("cross_spruce_planks_slab", () -> CROSS_SPRUCE_PLANKS_SLAB, NSE_BUILDING_TAB); + // TODO: Cherry!!! registerBlock("herringbone_parquet", () -> HERRINGBONE_PARQUET, NSE_BUILDING_TAB); + registerBlock("herringbone_parquet_stairs", () -> HERRINGBONE_PARQUET_STAIRS, NSE_BUILDING_TAB); + registerBlock("herringbone_parquet_slab", () -> HERRINGBONE_PARQUET_SLAB, NSE_BUILDING_TAB); registerBlock("straight_parquet", () -> STRAIGHT_PARQUET, NSE_BUILDING_TAB); + registerBlock("straight_parquet_stairs", () -> STRAIGHT_PARQUET_STAIRS, NSE_BUILDING_TAB); + registerBlock("straight_parquet_slab", () -> STRAIGHT_PARQUET_SLAB, NSE_BUILDING_TAB); registerBlock("separated_parquet", () -> SEPARATED_PARQUET, NSE_BUILDING_TAB); + registerBlock("separated_parquet_stairs", () -> SEPARATED_PARQUET_STAIRS, NSE_BUILDING_TAB); + registerBlock("separated_parquet_slab", () -> SEPARATED_PARQUET_SLAB, NSE_BUILDING_TAB); registerBlock("green_linoleum", () -> GREEN_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("green_linoleum_stairs", () -> GREEN_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("green_linoleum_slab", () -> GREEN_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("blue_linoleum", () -> BLUE_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("blue_linoleum_stairs", () -> BLUE_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("blue_linoleum_slab", () -> BLUE_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("red_linoleum", () -> RED_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("red_linoleum_stairs", () -> RED_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("red_linoleum_slab", () -> RED_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("gray_linoleum", () -> GRAY_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("gray_linoleum_stairs", () -> GRAY_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("gray_linoleum_slab", () -> GRAY_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("orange_linoleum", () -> ORANGE_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("orange_linoleum_stairs", () -> ORANGE_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("orange_linoleum_slab", () -> ORANGE_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("brown_linoleum", () -> BROWN_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("brown_linoleum_stairs", () -> BROWN_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("brown_linoleum_slab", () -> BROWN_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("cyan_linoleum", () -> CYAN_LINOLEUM, NSE_BUILDING_TAB); + registerBlock("cyan_linoleum_stairs", () -> CYAN_LINOLEUM_STAIRS, NSE_BUILDING_TAB); + registerBlock("cyan_linoleum_slab", () -> CYAN_LINOLEUM_SLAB, NSE_BUILDING_TAB); registerBlock("cross_orange_linoleum", () -> CROSS_ORANGE_LINOLEUM, NSE_BUILDING_TAB); registerBlock("cross_brown_linoleum", () -> CROSS_BROWN_LINOLEUM, NSE_BUILDING_TAB); @@ -435,6 +843,9 @@ public class NSE_Blocks extends NSE_BaseRegistration { registerBlock("magenta_warning", () -> MAGENTA_WARNING, NSE_BUILDING_TAB); registerBlock("metal_plating", () -> METAL_PLATING, NSE_BUILDING_TAB); + registerBlock("metal_plating_stairs", () -> METAL_PLATING_STAIRS, NSE_BUILDING_TAB); + registerBlock("metal_plating_slab", () -> METAL_PLATING_SLAB, NSE_BUILDING_TAB); + registerBlock("crate", () -> CRATE, NSE_BUILDING_TAB); registerBlock("concrete_wall", () -> CONCRETE_WALL, NSE_BUILDING_TAB); // FIXME: 29.08.2023 This wall's top texture is a bit broken @@ -452,6 +863,7 @@ public class NSE_Blocks extends NSE_BaseRegistration { } public static void flammableInit() { + // Reminder: Crimson doesn't burn! FlammableBlockRegistry flammableBlockRegistry = FlammableBlockRegistry.getDefaultInstance(); flammableBlockRegistry.add(HERRINGBONE_ACACIA_PLANKS, 20, 5); flammableBlockRegistry.add(CROSS_ACACIA_PLANKS, 20, 5); @@ -460,7 +872,6 @@ public class NSE_Blocks extends NSE_BaseRegistration { flammableBlockRegistry.add(HERRINGBONE_OAK_PLANKS, 20, 5); flammableBlockRegistry.add(HERRINGBONE_BIRCH_PLANKS, 20, 5); flammableBlockRegistry.add(CROSS_BIRCH_PLANKS, 20, 5); - // Crimson doesn't burn! flammableBlockRegistry.add(HERRINGBONE_DARK_OAK_PLANKS, 20, 5); flammableBlockRegistry.add(CROSS_DARK_OAK_PLANKS, 20, 5); flammableBlockRegistry.add(HERRINGBONE_JUNGLE_PLANKS, 20, 5); @@ -483,5 +894,54 @@ public class NSE_Blocks extends NSE_BaseRegistration { flammableBlockRegistry.add(CYAN_LINOLEUM, 20, 5); flammableBlockRegistry.add(CROSS_ORANGE_LINOLEUM, 20, 5); flammableBlockRegistry.add(CROSS_BROWN_LINOLEUM, 20, 5); + + flammableBlockRegistry.add(HERRINGBONE_ACACIA_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_ACACIA_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_ACACIA_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_ACACIA_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_OAK_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_OAK_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_OAK_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_OAK_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_BIRCH_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_BIRCH_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_BIRCH_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_BIRCH_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_DARK_OAK_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_DARK_OAK_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_DARK_OAK_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_DARK_OAK_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_JUNGLE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_JUNGLE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_JUNGLE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_JUNGLE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_MANGROVE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_MANGROVE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_MANGROVE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_MANGROVE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_SPRUCE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_SPRUCE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(CROSS_SPRUCE_PLANKS_STAIRS, 20, 5); + flammableBlockRegistry.add(CROSS_SPRUCE_PLANKS_SLAB, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_PARQUET_STAIRS, 20, 5); + flammableBlockRegistry.add(HERRINGBONE_PARQUET_SLAB, 20, 5); + flammableBlockRegistry.add(STRAIGHT_PARQUET_STAIRS, 20, 5); + flammableBlockRegistry.add(STRAIGHT_PARQUET_SLAB, 20, 5); + flammableBlockRegistry.add(SEPARATED_PARQUET_STAIRS, 20, 5); + flammableBlockRegistry.add(SEPARATED_PARQUET_SLAB, 20, 5); + flammableBlockRegistry.add(GREEN_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(GREEN_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(BLUE_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(BLUE_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(RED_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(RED_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(GRAY_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(GRAY_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(ORANGE_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(ORANGE_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(BROWN_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(BROWN_LINOLEUM_SLAB, 20, 5); + flammableBlockRegistry.add(CYAN_LINOLEUM_STAIRS, 20, 5); + flammableBlockRegistry.add(CYAN_LINOLEUM_SLAB, 20, 5); } } diff --git a/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_slab.json new file mode 100644 index 0000000..5721226 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/aquamarine_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/aquamarine_tiles" + }, + "type=top": { + "model": "new_soviet:block/aquamarine_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..dc7d1ff --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/aquamarine_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/beige_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/beige_concrete_slab.json new file mode 100644 index 0000000..01bcc71 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/beige_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/beige_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/beige_concrete" + }, + "type=top": { + "model": "new_soviet:block/beige_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/beige_concrete_stairs.json new file mode 100644 index 0000000..bd5425e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/beige_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_slab.json new file mode 100644 index 0000000..5e738a6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/big_sand_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/big_sand_bricks" + }, + "type=top": { + "model": "new_soviet:block/big_sand_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_stairs.json new file mode 100644 index 0000000..2d5291e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/big_sand_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/big_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/big_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/blue_concrete_slab.json new file mode 100644 index 0000000..a7f89f0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/blue_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/blue_concrete" + }, + "type=top": { + "model": "new_soviet:block/blue_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/blue_concrete_stairs.json new file mode 100644 index 0000000..b0d85c8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_slab.json new file mode 100644 index 0000000..87b1f44 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/blue_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/blue_linoleum" + }, + "type=top": { + "model": "new_soviet:block/blue_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_stairs.json new file mode 100644 index 0000000..2dadf5d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/blue_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/blue_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/blue_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/blue_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/brick_tiles_slab.json new file mode 100644 index 0000000..6251376 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/brick_tiles_stairs.json new file mode 100644 index 0000000..c3cbdc7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_slab.json new file mode 100644 index 0000000..745c9f6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/brown_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/brown_linoleum" + }, + "type=top": { + "model": "new_soviet:block/brown_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_stairs.json new file mode 100644 index 0000000..1dc1db0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/brown_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/brown_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/brown_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/brown_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_slab.json new file mode 100644 index 0000000..0cef953 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/calcite_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/calcite_tiles" + }, + "type=top": { + "model": "new_soviet:block/calcite_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_stairs.json new file mode 100644 index 0000000..ec168bd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/calcite_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..889012c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_aquamarine_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_aquamarine_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_aquamarine_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..6f8037d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..8024a04 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_beige_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_beige_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_beige_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..3808738 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_beige_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_beige_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_beige_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..26a40b6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_blue_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_blue_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_blue_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..704d07c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_blue_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_blue_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_blue_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..a4bbb8a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..37e39f9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..419e6b7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_calcite_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_calcite_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_calcite_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..6078e69 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_calcite_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..fc55174 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_dark_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_dark_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_dark_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..34ce648 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..63fca6f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_deepslate_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_deepslate_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_deepslate_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..177d84a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..3e83f88 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_diorite_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_diorite_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_diorite_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..1e0948f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_diorite_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..a530cf3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_dripstone_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_dripstone_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_dripstone_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..cbd7ec2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..246c906 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_green_bricks_2_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_green_bricks_2" + }, + "type=top": { + "model": "new_soviet:block/cracked_green_bricks_2_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..adf0fab --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_2_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_slab.json new file mode 100644 index 0000000..504100a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_green_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_green_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_green_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..26b7273 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_slab.json new file mode 100644 index 0000000..8a75ab5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_green_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_green_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_green_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..2238b3e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..40bb3d4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_green_white_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_green_white_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_green_white_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..d9d34b7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_green_white_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..0cc469e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_light_blue_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_light_blue_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_light_blue_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..f5ea9a4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..9c3f7a2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_light_blue_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_light_blue_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_light_blue_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..6a21967 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_slab.json new file mode 100644 index 0000000..367a93e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_red_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_red_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_red_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..98c6be7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_red_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_slab.json new file mode 100644 index 0000000..b36d6f3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_red_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_red_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_red_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..3643a91 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_red_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..13ebc9a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_sand_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_sand_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_sand_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..fe2e732 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..34a287f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_sand_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_sand_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_sand_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..0c2394e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_sand_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..492c932 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_teal_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_teal_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_teal_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..459c3b6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_teal_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..55130b2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_tuff_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_tuff_bricks" + }, + "type=top": { + "model": "new_soviet:block/cracked_tuff_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..1ddad0f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..d226c6f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_tuff_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_tuff_tiles" + }, + "type=top": { + "model": "new_soviet:block/cracked_tuff_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..4e7100e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_tuff_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_slab.json new file mode 100644 index 0000000..4820faf --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_white_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_white_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_white_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..d928e8f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_white_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..a89bc00 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cracked_yellow_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/cracked_yellow_concrete" + }, + "type=top": { + "model": "new_soviet:block/cracked_yellow_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..d677e3e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cracked_yellow_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cracked_yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_slab.json new file mode 100644 index 0000000..39159d2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_acacia_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_acacia_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_acacia_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..1170ad6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_acacia_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_slab.json new file mode 100644 index 0000000..67475a8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_birch_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_birch_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_birch_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_stairs.json new file mode 100644 index 0000000..9628428 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_birch_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_slab.json new file mode 100644 index 0000000..70a17ce --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_crimson_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_crimson_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_crimson_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..ee81d46 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_crimson_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..e3bbd97 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_dark_oak_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_dark_oak_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_dark_oak_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..769e90b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_dark_oak_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_slab.json new file mode 100644 index 0000000..039bae8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_jungle_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_jungle_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_jungle_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..680e7df --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_jungle_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..4188dfd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_mangrove_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_mangrove_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_mangrove_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..cf9dc9e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_mangrove_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_slab.json new file mode 100644 index 0000000..b3067c2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_oak_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_oak_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_oak_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_stairs.json new file mode 100644 index 0000000..10610ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_oak_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_slab.json new file mode 100644 index 0000000..8efb23d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_sand_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_sand_tiles" + }, + "type=top": { + "model": "new_soviet:block/cross_sand_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..4417772 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_sand_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_slab.json new file mode 100644 index 0000000..9f73e24 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cross_spruce_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/cross_spruce_planks" + }, + "type=top": { + "model": "new_soviet:block/cross_spruce_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..bb9fadd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cross_spruce_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cross_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cross_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_slab.json new file mode 100644 index 0000000..b16df40 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/cyan_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/cyan_linoleum" + }, + "type=top": { + "model": "new_soviet:block/cyan_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_stairs.json new file mode 100644 index 0000000..ad4868e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/cyan_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/cyan_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/cyan_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_slab.json new file mode 100644 index 0000000..65f7801 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/dark_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/dark_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/dark_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..a3b6005 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dark_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_slab.json new file mode 100644 index 0000000..6356841 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/deepslate_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/deepslate_tiles" + }, + "type=top": { + "model": "new_soviet:block/deepslate_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_stairs.json new file mode 100644 index 0000000..7f6d063 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/deepslate_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_slab.json new file mode 100644 index 0000000..21bf532 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/diorite_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/diorite_bricks" + }, + "type=top": { + "model": "new_soviet:block/diorite_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_stairs.json new file mode 100644 index 0000000..c28c213 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/diorite_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..f5925fb --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/dirty_aquamarine_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/dirty_aquamarine_tiles" + }, + "type=top": { + "model": "new_soviet:block/dirty_aquamarine_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..18a8778 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/dirty_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..90e2f6b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/dirty_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/dirty_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/dirty_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..7f3e638 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/dirty_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..71c5eb0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/dirty_dark_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/dirty_dark_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/dirty_dark_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..cf3b9b9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/dirty_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_slab.json new file mode 100644 index 0000000..06fea6d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/dripstone_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/dripstone_tiles" + }, + "type=top": { + "model": "new_soviet:block/dripstone_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_stairs.json new file mode 100644 index 0000000..4b65f46 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/dripstone_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_slab.json new file mode 100644 index 0000000..84838b8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/gray_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/gray_linoleum" + }, + "type=top": { + "model": "new_soviet:block/gray_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_stairs.json new file mode 100644 index 0000000..f275850 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/gray_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/gray_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/gray_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/gray_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_slab.json new file mode 100644 index 0000000..208cb4e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/green_bricks_2_slab" + }, + "type=double": { + "model": "new_soviet:block/green_bricks_2" + }, + "type=top": { + "model": "new_soviet:block/green_bricks_2_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_stairs.json new file mode 100644 index 0000000..3089461 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_bricks_2_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/green_bricks_slab.json new file mode 100644 index 0000000..0d83d9b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/green_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/green_bricks" + }, + "type=top": { + "model": "new_soviet:block/green_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/green_bricks_stairs.json new file mode 100644 index 0000000..30829ea --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/green_concrete_slab.json new file mode 100644 index 0000000..2caeb73 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/green_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/green_concrete" + }, + "type=top": { + "model": "new_soviet:block/green_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/green_concrete_stairs.json new file mode 100644 index 0000000..35d4111 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/green_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/green_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/green_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/green_linoleum_slab.json new file mode 100644 index 0000000..3fddefe --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/green_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/green_linoleum" + }, + "type=top": { + "model": "new_soviet:block/green_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/green_linoleum_stairs.json new file mode 100644 index 0000000..32848ff --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/green_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/green_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/green_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_slab.json new file mode 100644 index 0000000..2e7837e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/green_white_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/green_white_tiles" + }, + "type=top": { + "model": "new_soviet:block/green_white_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_stairs.json new file mode 100644 index 0000000..8e9e970 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/green_white_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..adffebc --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_acacia_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_acacia_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_acacia_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..4a45e42 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_acacia_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_acacia_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..c883aad --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_birch_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_birch_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_birch_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..853a3fb --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_birch_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_birch_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_birch_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..c7cc069 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_crimson_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_crimson_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_crimson_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..fef2eac --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_crimson_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_crimson_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..76f8771 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_dark_oak_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_dark_oak_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_dark_oak_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..ebc5cdb --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_dark_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..9a9afe2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_jungle_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_jungle_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_jungle_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..edd6a21 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_jungle_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_jungle_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..021705b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_mangrove_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_mangrove_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_mangrove_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..cd10dac --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_mangrove_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..2096aee --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_oak_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_oak_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_oak_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..e387550 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_oak_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_oak_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_oak_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_slab.json new file mode 100644 index 0000000..8ae523c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_parquet_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_parquet" + }, + "type=top": { + "model": "new_soviet:block/herringbone_parquet_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_stairs.json new file mode 100644 index 0000000..0e47f07 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_parquet_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..4dbac76 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_sand_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_sand_tiles" + }, + "type=top": { + "model": "new_soviet:block/herringbone_sand_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..514861c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_sand_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..6681a21 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/herringbone_spruce_planks_slab" + }, + "type=double": { + "model": "new_soviet:block/herringbone_spruce_planks" + }, + "type=top": { + "model": "new_soviet:block/herringbone_spruce_planks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..f077801 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/herringbone_spruce_planks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/herringbone_spruce_planks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_slab.json new file mode 100644 index 0000000..4cc8613 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/light_blue_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/light_blue_bricks" + }, + "type=top": { + "model": "new_soviet:block/light_blue_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_stairs.json new file mode 100644 index 0000000..988ade5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_slab.json new file mode 100644 index 0000000..e1cb188 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/light_blue_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/light_blue_tiles" + }, + "type=top": { + "model": "new_soviet:block/light_blue_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_stairs.json new file mode 100644 index 0000000..6bcbb96 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/light_blue_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/metal_plating_slab.json b/src/main/resources/assets/new_soviet/blockstates/metal_plating_slab.json new file mode 100644 index 0000000..7ae5f9c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/metal_plating_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/metal_plating_slab" + }, + "type=double": { + "model": "new_soviet:block/metal_plating" + }, + "type=top": { + "model": "new_soviet:block/metal_plating_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/metal_plating_stairs.json b/src/main/resources/assets/new_soviet/blockstates/metal_plating_stairs.json new file mode 100644 index 0000000..d3339f0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/metal_plating_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/metal_plating_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/metal_plating_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/metal_plating_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..7e8647d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_aquamarine_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_aquamarine_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_aquamarine_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..881fc8c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_aquamarine_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..9cbd76f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..0995637 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..0217d54 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_calcite_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_calcite_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_calcite_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..306854b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_calcite_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_calcite_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..e1684b9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_dark_brick_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_dark_brick_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_dark_brick_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..22eaa04 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dark_brick_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..a5b93e1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_deepslate_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_deepslate_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_deepslate_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..876a18e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_deepslate_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..21399da --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_diorite_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_diorite_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_diorite_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..23232c6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_diorite_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_diorite_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..66ffb28 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_dripstone_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_dripstone_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_dripstone_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..7a3b392 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_dripstone_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..afcc105 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_green_bricks_2_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_green_bricks_2" + }, + "type=top": { + "model": "new_soviet:block/mossy_green_bricks_2_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..01bbc9c --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_2_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_2_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_slab.json new file mode 100644 index 0000000..872bac2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_green_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_green_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_green_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..a8902bc --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..967e2c2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_green_white_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_green_white_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_green_white_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..b8e2bdb --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_green_white_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_green_white_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..78d6f6e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_light_blue_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_light_blue_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_light_blue_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..c601bd9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..992d981 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_light_blue_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_light_blue_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_light_blue_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..75e864f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_slab.json new file mode 100644 index 0000000..b3edde8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_red_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_red_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_red_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..7c1adf1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_red_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..c858843 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_sand_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_sand_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_sand_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..be5cb2b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..26419ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_sand_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_sand_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_sand_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..ae1567b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_sand_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..c500009 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_teal_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_teal_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_teal_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..b7edf15 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_teal_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..b899039 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_tuff_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_tuff_bricks" + }, + "type=top": { + "model": "new_soviet:block/mossy_tuff_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..2e22806 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..57475b4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/mossy_tuff_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/mossy_tuff_tiles" + }, + "type=top": { + "model": "new_soviet:block/mossy_tuff_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..c9c6c92 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/mossy_tuff_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/mossy_tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/nii_floor_slab.json b/src/main/resources/assets/new_soviet/blockstates/nii_floor_slab.json new file mode 100644 index 0000000..896547a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/nii_floor_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/nii_floor_slab" + }, + "type=double": { + "model": "new_soviet:block/nii_floor" + }, + "type=top": { + "model": "new_soviet:block/nii_floor_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/nii_floor_stairs.json b/src/main/resources/assets/new_soviet/blockstates/nii_floor_stairs.json new file mode 100644 index 0000000..3988a1b --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/nii_floor_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/nii_floor_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/nii_floor_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/nii_floor_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_slab.json new file mode 100644 index 0000000..0bc7427 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/orange_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/orange_linoleum" + }, + "type=top": { + "model": "new_soviet:block/orange_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_stairs.json new file mode 100644 index 0000000..8783ef1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/orange_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/orange_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/orange_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/orange_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/red_bricks_slab.json new file mode 100644 index 0000000..42ef4a2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/red_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/red_bricks" + }, + "type=top": { + "model": "new_soviet:block/red_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/red_bricks_stairs.json new file mode 100644 index 0000000..7df68b8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/red_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/red_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/red_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/red_concrete_slab.json new file mode 100644 index 0000000..23f0fc0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/red_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/red_concrete" + }, + "type=top": { + "model": "new_soviet:block/red_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/red_concrete_stairs.json new file mode 100644 index 0000000..8681f6f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/red_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/red_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/red_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_linoleum_slab.json b/src/main/resources/assets/new_soviet/blockstates/red_linoleum_slab.json new file mode 100644 index 0000000..723ccfd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_linoleum_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/red_linoleum_slab" + }, + "type=double": { + "model": "new_soviet:block/red_linoleum" + }, + "type=top": { + "model": "new_soviet:block/red_linoleum_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/red_linoleum_stairs.json b/src/main/resources/assets/new_soviet/blockstates/red_linoleum_stairs.json new file mode 100644 index 0000000..d4127dc --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/red_linoleum_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/red_linoleum_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/red_linoleum_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/red_linoleum_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/sand_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/sand_bricks_slab.json new file mode 100644 index 0000000..08c3efd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/sand_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/sand_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/sand_bricks" + }, + "type=top": { + "model": "new_soviet:block/sand_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/sand_bricks_stairs.json new file mode 100644 index 0000000..b82481d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/sand_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/sand_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/sand_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/sand_tiles_slab.json new file mode 100644 index 0000000..8da58ec --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/sand_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/sand_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/sand_tiles" + }, + "type=top": { + "model": "new_soviet:block/sand_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/sand_tiles_stairs.json new file mode 100644 index 0000000..f28b7fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/sand_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/sand_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/sand_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/sand_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/separated_parquet_slab.json b/src/main/resources/assets/new_soviet/blockstates/separated_parquet_slab.json new file mode 100644 index 0000000..e5b2be9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/separated_parquet_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/separated_parquet_slab" + }, + "type=double": { + "model": "new_soviet:block/separated_parquet" + }, + "type=top": { + "model": "new_soviet:block/separated_parquet_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/separated_parquet_stairs.json b/src/main/resources/assets/new_soviet/blockstates/separated_parquet_stairs.json new file mode 100644 index 0000000..609fbb9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/separated_parquet_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/separated_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/separated_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/separated_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/straight_parquet_slab.json b/src/main/resources/assets/new_soviet/blockstates/straight_parquet_slab.json new file mode 100644 index 0000000..513e226 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/straight_parquet_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/straight_parquet_slab" + }, + "type=double": { + "model": "new_soviet:block/straight_parquet" + }, + "type=top": { + "model": "new_soviet:block/straight_parquet_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/straight_parquet_stairs.json b/src/main/resources/assets/new_soviet/blockstates/straight_parquet_stairs.json new file mode 100644 index 0000000..f255143 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/straight_parquet_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/straight_parquet_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/straight_parquet_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/straight_parquet_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/teal_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/teal_tiles_slab.json new file mode 100644 index 0000000..4960213 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/teal_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/teal_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/teal_tiles" + }, + "type=top": { + "model": "new_soviet:block/teal_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/teal_tiles_stairs.json new file mode 100644 index 0000000..a8b42b7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/teal_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_slab.json new file mode 100644 index 0000000..0663e4f --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/tuff_bricks_slab" + }, + "type=double": { + "model": "new_soviet:block/tuff_bricks" + }, + "type=top": { + "model": "new_soviet:block/tuff_bricks_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_stairs.json new file mode 100644 index 0000000..b04d3a2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_bricks_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_bricks_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_bricks_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/tuff_bricks_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_slab.json new file mode 100644 index 0000000..ccce8f9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/tuff_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/tuff_tiles" + }, + "type=top": { + "model": "new_soviet:block/tuff_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_stairs.json new file mode 100644 index 0000000..ee2848d --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/tuff_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/tuff_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/tuff_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/tuff_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..47c98b5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/variated_light_blue_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/variated_light_blue_tiles" + }, + "type=top": { + "model": "new_soviet:block/variated_light_blue_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..a6aa03e --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/variated_light_blue_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/variated_light_blue_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_slab.json new file mode 100644 index 0000000..0150884 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/variated_teal_tiles_slab" + }, + "type=double": { + "model": "new_soviet:block/variated_teal_tiles" + }, + "type=top": { + "model": "new_soviet:block/variated_teal_tiles_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..7d8e667 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/variated_teal_tiles_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/variated_teal_tiles_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/variated_teal_tiles_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/white_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/white_concrete_slab.json new file mode 100644 index 0000000..72a0881 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/white_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/white_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/white_concrete" + }, + "type=top": { + "model": "new_soviet:block/white_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/white_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/white_concrete_stairs.json new file mode 100644 index 0000000..7f5f382 --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/white_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/white_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/white_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/white_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_slab.json new file mode 100644 index 0000000..94cadbd --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "new_soviet:block/yellow_concrete_slab" + }, + "type=double": { + "model": "new_soviet:block/yellow_concrete" + }, + "type=top": { + "model": "new_soviet:block/yellow_concrete_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_stairs.json new file mode 100644 index 0000000..2f1ef3a --- /dev/null +++ b/src/main/resources/assets/new_soviet/blockstates/yellow_concrete_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "mnew_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "new_soviet:block/yellow_concrete_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "new_soviet:block/yellow_concrete_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "new_soviet:block/yellow_concrete_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/lang/en_us.json b/src/main/resources/assets/new_soviet/lang/en_us.json index 0ff90b7..359093d 100644 --- a/src/main/resources/assets/new_soviet/lang/en_us.json +++ b/src/main/resources/assets/new_soviet/lang/en_us.json @@ -227,6 +227,209 @@ "block.new_soviet.small_white_tiles": "Small White Tiles", "block.new_soviet.small_cracked_white_tiles": "Small Cracked White Tiles", "block.new_soviet.glazed_white_tiles": "Glazed White Tiles", - "block.new_soviet.crackedglazed_white_tiles": "Cracked Glazed White Tiles" - + "block.new_soviet.cracked_glazed_white_tiles": "Cracked Glazed White Tiles", + "block.new_soviet.sand_tiles_slab": "Sand Tile Slab", + "block.new_soviet.sand_tiles_stairs": "Sand Tile Stairs", + "block.new_soviet.cracked_sand_tiles_slab": "Cracked Sand Tile Slab", + "block.new_soviet.cracked_sand_tiles_stairs": "Cracked Sand Tile Stairs", + "block.new_soviet.mossy_sand_tiles_slab": "Mossy Sand Tile Slab", + "block.new_soviet.mossy_sand_tiles_stairs": "Mossy Sand Tile Stairs", + "block.new_soviet.herringbone_sand_tiles_slab": "Herringbone Sand Tile Slab", + "block.new_soviet.herringbone_sand_tiles_stairs": "Herringbone Sand Tile Stairs", + "block.new_soviet.cross_sand_tiles_slab": "Cross Sand Tile Slab", + "block.new_soviet.cross_sand_tiles_stairs": "Cross Sand Tile Stairs", + "block.new_soviet.sand_bricks_slab": "Sand Brick Slab", + "block.new_soviet.sand_bricks_stairs": "Sand Brick Stairs", + "block.new_soviet.cracked_sand_bricks_slab": "Cracked Sand Brick Slab", + "block.new_soviet.cracked_sand_bricks_stairs": "Cracked Sand Brick Stairs", + "block.new_soviet.mossy_sand_bricks_slab": "Mossy Sand Brick Slab", + "block.new_soviet.mossy_sand_bricks_stairs": "Mossy Sand Brick Stairs", + "block.new_soviet.big_sand_bricks_slab": "Big Sand Brick Slab", + "block.new_soviet.big_sand_bricks_stairs": "Big Sand Brick Stairs", + "block.new_soviet.brick_tiles_slab": "Brick Tile Slab", + "block.new_soviet.brick_tiles_stairs": "Brick Tile Stairs", + "block.new_soviet.cracked_brick_tiles_slab": "Cracked Brick Tile Slab", + "block.new_soviet.cracked_brick_tiles_stairs": "Cracked Brick Tile Stairs", + "block.new_soviet.mossy_brick_tiles_slab": "Mossy Brick Tile Slab", + "block.new_soviet.mossy_brick_tiles_stairs": "Mossy Brick Tile Stairs", + "block.new_soviet.dirty_brick_tiles_slab": "Dirty Brick Tile Slab", + "block.new_soviet.dirty_brick_tiles_stairs": "Dirty Brick Tile Stairs", + "block.new_soviet.dark_brick_tiles_slab": "Dark Brick Tile Slab", + "block.new_soviet.dark_brick_tiles_stairs": "Dark Brick Tile Stairs", + "block.new_soviet.cracked_dark_brick_tiles_slab": "Cracked Dark Brick Tile Slab", + "block.new_soviet.cracked_dark_brick_tiles_stairs": "Cracked Dark Brick Tile Stairs", + "block.new_soviet.mossy_dark_brick_tiles_slab": "Mossy Dark Brick Tile Slab", + "block.new_soviet.mossy_dark_brick_tiles_stairs": "Mossy Dark Brick Tile Stairs", + "block.new_soviet.dirty_dark_brick_tiles_slab": "Dirty Dark Brick Tile Slab", + "block.new_soviet.dirty_dark_brick_tiles_stairs": "Dirty Dark Brick Tile Stairs", + "block.new_soviet.red_bricks_slab": "Red Brick Slab", + "block.new_soviet.red_bricks_stairs": "Red Brick Stairs", + "block.new_soviet.cracked_red_bricks_slab": "Cracked Red Brick Slab", + "block.new_soviet.cracked_red_bricks_stairs": "Cracked Red Brick Stairs", + "block.new_soviet.mossy_red_bricks_slab": "Mossy Red Brick Slab", + "block.new_soviet.mossy_red_bricks_stairs": "Mossy Red Brick Stairs", + "block.new_soviet.teal_tiles_slab": "Teal Tile Slab", + "block.new_soviet.teal_tiles_stairs": "Teal Tile Stairs", + "block.new_soviet.cracked_teal_tiles_slab": "Cracked Teal Tile Slab", + "block.new_soviet.cracked_teal_tiles_stairs": "Cracked Teal Tile Stairs", + "block.new_soviet.mossy_teal_tiles_slab": "Mossy Teal Tile Slab", + "block.new_soviet.mossy_teal_tiles_stairs": "Mossy Teal Tile Stairs", + "block.new_soviet.variated_teal_tiles_slab": "Variated Teal Tile Slab", + "block.new_soviet.variated_teal_tiles_stairs": "Variated Teal Tile Stairs", + "block.new_soviet.green_bricks_slab": "Green Brick Slab", + "block.new_soviet.green_bricks_stairs": "Green Brick Stairs", + "block.new_soviet.cracked_green_bricks_slab": "Cracked Green Brick Slab", + "block.new_soviet.cracked_green_bricks_stairs": "Cracked Green Brick Stairs", + "block.new_soviet.mossy_green_bricks_slab": "Mossy Green Brick Slab", + "block.new_soviet.mossy_green_bricks_stairs": "Mossy Green Brick Stairs", + "block.new_soviet.green_bricks_2_slab": "Mixed Green Brick Slab", + "block.new_soviet.green_bricks_2_stairs": "Mixed Green Brick Stairs", + "block.new_soviet.cracked_green_bricks_2_slab": "Mixed Cracked Green Brick Slab", + "block.new_soviet.cracked_green_bricks_2_stairs": "Mixed Cracked Green Brick Stairs", + "block.new_soviet.mossy_green_bricks_2_slab": "Mossy Mixed Green Brick Slab", + "block.new_soviet.mossy_green_bricks_2_stairs": "Mossy Mixed Green Brick Stairs", + "block.new_soviet.aquamarine_tiles_slab": "Aquamarine Tile Slab", + "block.new_soviet.aquamarine_tiles_stairs": "Aquamarine Tile Stairs", + "block.new_soviet.cracked_aquamarine_tiles_slab": "Cracked Aquamarine Tile Slab", + "block.new_soviet.cracked_aquamarine_tiles_stairs": "Cracked Aquamarine Tile Stairs", + "block.new_soviet.mossy_aquamarine_tiles_slab": "Mossy Aquamarine Tile Slab", + "block.new_soviet.mossy_aquamarine_tiles_stairs": "Mossy Aquamarine Tile Stairs", + "block.new_soviet.dirty_aquamarine_tiles_slab": "Dirty Aquamarine Tile Slab", + "block.new_soviet.dirty_aquamarine_tiles_stairs": "Dirty Aquamarine Tile Stairs", + "block.new_soviet.diorite_bricks_slab": "Diorite Brick Slab", + "block.new_soviet.diorite_bricks_stairs": "Diorite Brick Stairs", + "block.new_soviet.cracked_diorite_bricks_slab": "Cracked Diorite Brick Slab", + "block.new_soviet.cracked_diorite_bricks_stairs": "Cracked Diorite Brick Stairs", + "block.new_soviet.mossy_diorite_bricks_slab": "Mossy Diorite Brick Slab", + "block.new_soviet.mossy_diorite_bricks_stairs": "Mossy Diorite Brick Stairs", + "block.new_soviet.calcite_tiles_slab": "Calcite Tile Slab", + "block.new_soviet.calcite_tiles_stairs": "Calcite Tile Stairs", + "block.new_soviet.cracked_calcite_tiles_slab": "Cracked Calcite Tile Slab", + "block.new_soviet.cracked_calcite_tiles_stairs": "Cracked Calcite Tile Stairs", + "block.new_soviet.mossy_calcite_tiles_slab": "Mossy Calcite Tile Slab", + "block.new_soviet.mossy_calcite_tiles_stairs": "Mossy Calcite Tile Stairs", + "block.new_soviet.dripstone_tiles_slab": "Dripstone Tile Slab", + "block.new_soviet.dripstone_tiles_stairs": "Dripstone Tile Stairs", + "block.new_soviet.cracked_dripstone_tiles_slab": "Cracked Dripstone Tile Slab", + "block.new_soviet.cracked_dripstone_tiles_stairs": "Cracked Dripstone Tile Stairs", + "block.new_soviet.mossy_dripstone_tiles_slab": "Mossy Dripstone Tile Slab", + "block.new_soviet.mossy_dripstone_tiles_stairs": "Mossy Dripstone Tile Stairs", + "block.new_soviet.deepslate_tiles_slab": "Deepslate Tile Slab", + "block.new_soviet.deepslate_tiles_stairs": "Deepslate Tile Stairs", + "block.new_soviet.cracked_deepslate_tiles_slab": "Cracked Deepslate Tile Slab", + "block.new_soviet.cracked_deepslate_tiles_stairs": "Cracked Deepslate Tile Stairs", + "block.new_soviet.mossy_deepslate_tiles_slab": "Mossy Deepslate Tile Slab", + "block.new_soviet.mossy_deepslate_tiles_stairs": "Mossy Deepslate Tile Stairs", + "block.new_soviet.light_blue_tiles_slab": "Light Blue Tile Slab", + "block.new_soviet.light_blue_tiles_stairs": "Light Blue Tile Stairs", + "block.new_soviet.cracked_light_blue_tiles_slab": "Cracked Light Blue Tile Slab", + "block.new_soviet.cracked_light_blue_tiles_stairs": "Cracked Light Blue Tile Stairs", + "block.new_soviet.mossy_light_blue_tiles_slab": "Mossy Light Blue Tile Slab", + "block.new_soviet.mossy_light_blue_tiles_stairs": "Mossy Light Blue Tile Stairs", + "block.new_soviet.variated_light_blue_tiles_slab": "Variated Light Blue Tile Slab", + "block.new_soviet.variated_light_blue_tiles_stairs": "Variated Light Blue Tile Stairs", + "block.new_soviet.light_blue_bricks_slab": "Light Blue Brick Slab", + "block.new_soviet.light_blue_bricks_stairs": "Light Blue Brick Stairs", + "block.new_soviet.cracked_light_blue_bricks_slab": "Cracked Light Blue Brick Slab", + "block.new_soviet.cracked_light_blue_bricks_stairs": "Cracked Light Blue Brick Stairs", + "block.new_soviet.mossy_light_blue_bricks_slab": "Mossy Light Blue Brick Slab", + "block.new_soviet.mossy_light_blue_bricks_stairs": "Mossy Light Blue Brick Stairs", + "block.new_soviet.green_white_tiles_slab": "Green White Tile Slab", + "block.new_soviet.green_white_tiles_stairs": "Green White Tile Stairs", + "block.new_soviet.cracked_green_white_tiles_slab": "Cracked Green White Tile Slab", + "block.new_soviet.cracked_green_white_tiles_stairs": "Cracked Green White Tile Stairs", + "block.new_soviet.mossy_green_white_tiles_slab": "Mossy Green White Tile Slab", + "block.new_soviet.mossy_green_white_tiles_stairs": "Mossy Green White Tile Stairs", + "block.new_soviet.tuff_tiles_slab": "Tuff Tile Slab", + "block.new_soviet.tuff_tiles_stairs": "Tuff Tile Stairs", + "block.new_soviet.cracked_tuff_tiles_slab": "Cracked Tuff Tile Slab", + "block.new_soviet.cracked_tuff_tiles_stairs": "Cracked Tuff Tile Stairs", + "block.new_soviet.mossy_tuff_tiles_slab": "Mossy Tuff Tile Slab", + "block.new_soviet.mossy_tuff_tiles_stairs": "Mossy Tuff Tile Stairs", + "block.new_soviet.tuff_bricks_slab": "Tuff Brick Slab", + "block.new_soviet.tuff_bricks_stairs": "Tuff Brick Stairs", + "block.new_soviet.cracked_tuff_bricks_slab": "Cracked Tuff Brick Slab", + "block.new_soviet.cracked_tuff_bricks_stairs": "Cracked Tuff Brick Stairs", + "block.new_soviet.mossy_tuff_bricks_slab": "Mossy Tuff Brick Slab", + "block.new_soviet.mossy_tuff_bricks_stairs": "Mossy Tuff Brick Stairs", + "block.new_soviet.white_concrete_slab": "White Concrete Slab", + "block.new_soviet.white_concrete_stairs": "White Concrete Stairs", + "block.new_soviet.cracked_white_concrete_slab": "Cracked White Concrete Slab", + "block.new_soviet.cracked_white_concrete_stairs": "Cracked White Concrete Stairs", + "block.new_soviet.beige_concrete_slab": "Beige Concrete Slab", + "block.new_soviet.beige_concrete_stairs": "Beige Concrete Stairs", + "block.new_soviet.cracked_beige_concrete_slab": "Cracked Beige Concrete Slab", + "block.new_soviet.cracked_beige_concrete_stairs": "Cracked Beige Concrete Stairs", + "block.new_soviet.blue_concrete_slab": "Blue Concrete Slab", + "block.new_soviet.blue_concrete_stairs": "Blue Concrete Stairs", + "block.new_soviet.cracked_blue_concrete_slab": "Cracked Blue Concrete Slab", + "block.new_soviet.cracked_blue_concrete_stairs": "Cracked Blue Concrete Stairs", + "block.new_soviet.red_concrete_slab": "Red Concrete Slab", + "block.new_soviet.red_concrete_stairs": "Red Concrete Stairs", + "block.new_soviet.cracked_red_concrete_slab": "Cracked Red Concrete Slab", + "block.new_soviet.cracked_red_concrete_stairs": "Cracked Red Concrete Stairs", + "block.new_soviet.yellow_concrete_slab": "Yellow Concrete Slab", + "block.new_soviet.yellow_concrete_stairs": "Yellow Concrete Stairs", + "block.new_soviet.cracked_yellow_concrete_slab": "Cracked Yellow Concrete Slab", + "block.new_soviet.cracked_yellow_concrete_stairs": "Cracked Yellow Concrete Stairs", + "block.new_soviet.green_concrete_slab": "Green Concrete Slab", + "block.new_soviet.green_concrete_stairs": "Green Concrete Stairs", + "block.new_soviet.cracked_green_concrete_slab": "Cracked Green Concrete Slab", + "block.new_soviet.cracked_green_concrete_stairs": "Cracked Green Concrete Stairs", + "block.new_soviet.nii_floor_slab": "Nii Floor Slab", + "block.new_soviet.nii_floor_stairs": "Nii Floor Stairs", + "block.new_soviet.herringbone_acacia_planks_slab": "Herringbone Acacia Slab", + "block.new_soviet.herringbone_acacia_planks_stairs": "Herringbone Acacia Stairs", + "block.new_soviet.cross_acacia_planks_slab": "Cross Acacia Slab", + "block.new_soviet.cross_acacia_planks_stairs": "Cross Acacia Stairs", + "block.new_soviet.herringbone_oak_planks_slab": "Herringbone Oak Slab", + "block.new_soviet.herringbone_oak_planks_stairs": "Herringbone Oak Stairs", + "block.new_soviet.cross_oak_planks_slab": "Cross Oak Slab", + "block.new_soviet.cross_oak_planks_stairs": "Cross Oak Stairs", + "block.new_soviet.herringbone_birch_planks_slab": "Herringbone Birch Slab", + "block.new_soviet.herringbone_birch_planks_stairs": "Herringbone Birch Stairs", + "block.new_soviet.cross_birch_planks_slab": "Cross Birch Slab", + "block.new_soviet.cross_birch_planks_stairs": "Cross Birch Stairs", + "block.new_soviet.herringbone_crimson_planks_slab": "Herringbone Crimson Slab", + "block.new_soviet.herringbone_crimson_planks_stairs": "Herringbone Crimson Stairs", + "block.new_soviet.cross_crimson_planks_slab": "Cross Crimson Slab", + "block.new_soviet.cross_crimson_planks_stairs": "Cross Crimson Stairs", + "block.new_soviet.herringbone_dark_oak_planks_slab": "Herringbone Dark Oak Slab", + "block.new_soviet.herringbone_dark_oak_planks_stairs": "Herringbone Dark Oak Stairs", + "block.new_soviet.cross_dark_oak_planks_slab": "Cross Dark Oak Slab", + "block.new_soviet.cross_dark_oak_planks_stairs": "Cross Dark Oak Stairs", + "block.new_soviet.herringbone_jungle_planks_slab": "Herringbone Jungle Slab", + "block.new_soviet.herringbone_jungle_planks_stairs": "Herringbone Jungle Stairs", + "block.new_soviet.cross_jungle_planks_slab": "Cross Jungle Slab", + "block.new_soviet.cross_jungle_planks_stairs": "Cross Jungle Stairs", + "block.new_soviet.herringbone_mangrove_planks_slab": "Herringbone Mangrove Slab", + "block.new_soviet.herringbone_mangrove_planks_stairs": "Herringbone Mangrove Stairs", + "block.new_soviet.cross_mangrove_planks_slab": "Cross Mangrove Slab", + "block.new_soviet.cross_mangrove_planks_stairs": "Cross Mangrove Stairs", + "block.new_soviet.herringbone_spruce_planks_slab": "Herringbone Spruce Slab", + "block.new_soviet.herringbone_spruce_planks_stairs": "Herringbone Spruce Stairs", + "block.new_soviet.cross_spruce_planks_slab": "Cross Spruce Slab", + "block.new_soviet.cross_spruce_planks_stairs": "Cross Spruce Stairs", + "block.new_soviet.herringbone_parquet_slab": "Herringbone Parquet Slab", + "block.new_soviet.herringbone_parquet_stairs": "Herringbone Parquet Stairs", + "block.new_soviet.straight_parquet_slab": "Straight Parquet Slab", + "block.new_soviet.straight_parquet_stairs": "Straight Parquet Stairs", + "block.new_soviet.separated_parquet_slab": "Separated Parquet Slab", + "block.new_soviet.separated_parquet_stairs": "Separated Parquet Stairs", + "block.new_soviet.green_linoleum_slab": "Green Linoleum Slab", + "block.new_soviet.green_linoleum_stairs": "Green Linoleum Stairs", + "block.new_soviet.blue_linoleum_slab": "Blue Linoleum Slab", + "block.new_soviet.blue_linoleum_stairs": "Blue Linoleum Stairs", + "block.new_soviet.red_linoleum_slab": "Red Linoleum Slab", + "block.new_soviet.red_linoleum_stairs": "Red Linoleum Stairs", + "block.new_soviet.gray_linoleum_slab": "Gray Linoleum Slab", + "block.new_soviet.gray_linoleum_stairs": "Gray Linoleum Stairs", + "block.new_soviet.orange_linoleum_slab": "Orange Linoleum Slab", + "block.new_soviet.orange_linoleum_stairs": "Orange Linoleum Stairs", + "block.new_soviet.brown_linoleum_slab": "Brown Linoleum Slab", + "block.new_soviet.brown_linoleum_stairs": "Brown Linoleum Stairs", + "block.new_soviet.cyan_linoleum_slab": "Cyan Linoleum Slab", + "block.new_soviet.cyan_linoleum_stairs": "Cyan Linoleum Stairs", + "block.new_soviet.metal_plating_slab": "Metal Plating Slab", + "block.new_soviet.metal_plating_stairs": "Metal Plating Stairs" } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab.json new file mode 100644 index 0000000..659cdda --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/aquamarine/aquamarine_tiles", + "side": "new_soviet:block/aquamarine/aquamarine_tiles", + "top": "new_soviet:block/aquamarine/aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab_top.json new file mode 100644 index 0000000..e4abf41 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/aquamarine/aquamarine_tiles", + "side": "new_soviet:block/aquamarine/aquamarine_tiles", + "top": "new_soviet:block/aquamarine/aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..059dcbe --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/aquamarine_tiles", + "side": "new_soviet:block/aquamarine/aquamarine_tiles", + "top": "new_soviet:block/aquamarine/aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_inner.json new file mode 100644 index 0000000..2e91001 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/aquamarine_tiles", + "side": "new_soviet:block/aquamarine/aquamarine_tiles", + "top": "new_soviet:block/aquamarine/aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_outer.json new file mode 100644 index 0000000..d98b501 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/aquamarine_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/aquamarine_tiles", + "side": "new_soviet:block/aquamarine/aquamarine_tiles", + "top": "new_soviet:block/aquamarine/aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab.json new file mode 100644 index 0000000..6a8766d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/beige_concrete", + "side": "new_soviet:block/concrete/beige_concrete", + "top": "new_soviet:block/concrete/beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab_top.json new file mode 100644 index 0000000..673ea7f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/beige_concrete", + "side": "new_soviet:block/concrete/beige_concrete", + "top": "new_soviet:block/concrete/beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs.json new file mode 100644 index 0000000..bba25ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/beige_concrete", + "side": "new_soviet:block/concrete/beige_concrete", + "top": "new_soviet:block/concrete/beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_inner.json new file mode 100644 index 0000000..62e34e3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/beige_concrete", + "side": "new_soviet:block/concrete/beige_concrete", + "top": "new_soviet:block/concrete/beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_outer.json new file mode 100644 index 0000000..9be338e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/beige_concrete", + "side": "new_soviet:block/concrete/beige_concrete", + "top": "new_soviet:block/concrete/beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab.json new file mode 100644 index 0000000..157af7f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/big_sand_bricks", + "side": "new_soviet:block/sand/big_sand_bricks", + "top": "new_soviet:block/sand/big_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab_top.json new file mode 100644 index 0000000..2347b8b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/big_sand_bricks", + "side": "new_soviet:block/sand/big_sand_bricks", + "top": "new_soviet:block/sand/big_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs.json new file mode 100644 index 0000000..c429b52 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/big_sand_bricks", + "side": "new_soviet:block/sand/big_sand_bricks", + "top": "new_soviet:block/sand/big_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_inner.json new file mode 100644 index 0000000..de591f7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/big_sand_bricks", + "side": "new_soviet:block/sand/big_sand_bricks", + "top": "new_soviet:block/sand/big_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_outer.json new file mode 100644 index 0000000..1a5d399 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/big_sand_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/big_sand_bricks", + "side": "new_soviet:block/sand/big_sand_bricks", + "top": "new_soviet:block/sand/big_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab.json new file mode 100644 index 0000000..f81c180 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/blue_concrete", + "side": "new_soviet:block/concrete/blue_concrete", + "top": "new_soviet:block/concrete/blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab_top.json new file mode 100644 index 0000000..90f8b94 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/blue_concrete", + "side": "new_soviet:block/concrete/blue_concrete", + "top": "new_soviet:block/concrete/blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs.json new file mode 100644 index 0000000..be9990f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/blue_concrete", + "side": "new_soviet:block/concrete/blue_concrete", + "top": "new_soviet:block/concrete/blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_inner.json new file mode 100644 index 0000000..10e1104 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/blue_concrete", + "side": "new_soviet:block/concrete/blue_concrete", + "top": "new_soviet:block/concrete/blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_outer.json new file mode 100644 index 0000000..e0fec71 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/blue_concrete", + "side": "new_soviet:block/concrete/blue_concrete", + "top": "new_soviet:block/concrete/blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab.json new file mode 100644 index 0000000..46cd0c6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/blue_linoleum", + "side": "new_soviet:block/floor/linoleum/blue_linoleum", + "top": "new_soviet:block/floor/linoleum/blue_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab_top.json new file mode 100644 index 0000000..daae826 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/blue_linoleum", + "side": "new_soviet:block/floor/linoleum/blue_linoleum", + "top": "new_soviet:block/floor/linoleum/blue_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs.json new file mode 100644 index 0000000..fac8c7a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/blue_linoleum", + "side": "new_soviet:block/floor/linoleum/blue_linoleum", + "top": "new_soviet:block/floor/linoleum/blue_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_inner.json new file mode 100644 index 0000000..642207c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/blue_linoleum", + "side": "new_soviet:block/floor/linoleum/blue_linoleum", + "top": "new_soviet:block/floor/linoleum/blue_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_outer.json new file mode 100644 index 0000000..f993155 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/blue_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/blue_linoleum", + "side": "new_soviet:block/floor/linoleum/blue_linoleum", + "top": "new_soviet:block/floor/linoleum/blue_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab.json new file mode 100644 index 0000000..2b5f1ce --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/brick_tiles", + "side": "new_soviet:block/brick/brick_tiles", + "top": "new_soviet:block/brick/brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab_top.json new file mode 100644 index 0000000..0b6eae8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/brick_tiles", + "side": "new_soviet:block/brick/brick_tiles", + "top": "new_soviet:block/brick/brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs.json new file mode 100644 index 0000000..791014a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/brick_tiles", + "side": "new_soviet:block/brick/brick_tiles", + "top": "new_soviet:block/brick/brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_inner.json new file mode 100644 index 0000000..8e44b9d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/brick_tiles", + "side": "new_soviet:block/brick/brick_tiles", + "top": "new_soviet:block/brick/brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_outer.json new file mode 100644 index 0000000..21529c9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/brick_tiles", + "side": "new_soviet:block/brick/brick_tiles", + "top": "new_soviet:block/brick/brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab.json new file mode 100644 index 0000000..047cb46 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/brown_linoleum", + "side": "new_soviet:block/floor/linoleum/brown_linoleum", + "top": "new_soviet:block/floor/linoleum/brown_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab_top.json new file mode 100644 index 0000000..7982ffd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/brown_linoleum", + "side": "new_soviet:block/floor/linoleum/brown_linoleum", + "top": "new_soviet:block/floor/linoleum/brown_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs.json new file mode 100644 index 0000000..28f00e0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/brown_linoleum", + "side": "new_soviet:block/floor/linoleum/brown_linoleum", + "top": "new_soviet:block/floor/linoleum/brown_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_inner.json new file mode 100644 index 0000000..458af95 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/brown_linoleum", + "side": "new_soviet:block/floor/linoleum/brown_linoleum", + "top": "new_soviet:block/floor/linoleum/brown_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_outer.json new file mode 100644 index 0000000..36a8e3a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/brown_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/brown_linoleum", + "side": "new_soviet:block/floor/linoleum/brown_linoleum", + "top": "new_soviet:block/floor/linoleum/brown_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab.json new file mode 100644 index 0000000..9391220 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/calcite/calcite_tiles", + "side": "new_soviet:block/calcite/calcite_tiles", + "top": "new_soviet:block/calcite/calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab_top.json new file mode 100644 index 0000000..7593c2d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/calcite/calcite_tiles", + "side": "new_soviet:block/calcite/calcite_tiles", + "top": "new_soviet:block/calcite/calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs.json new file mode 100644 index 0000000..8214284 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/calcite/calcite_tiles", + "side": "new_soviet:block/calcite/calcite_tiles", + "top": "new_soviet:block/calcite/calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_inner.json new file mode 100644 index 0000000..0d50486 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/calcite_tiles", + "side": "new_soviet:block/calcite/calcite_tiles", + "top": "new_soviet:block/calcite/calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_outer.json new file mode 100644 index 0000000..55f0498 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/calcite_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/calcite_tiles", + "side": "new_soviet:block/calcite/calcite_tiles", + "top": "new_soviet:block/calcite/calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..347d39b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab_top.json new file mode 100644 index 0000000..703c1de --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..455fa19 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_inner.json new file mode 100644 index 0000000..56b4855 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_outer.json new file mode 100644 index 0000000..72e5a98 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_aquamarine_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/cracked_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/cracked_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..56277f7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_beige_concrete", + "side": "new_soviet:block/concrete/cracked_beige_concrete", + "top": "new_soviet:block/concrete/cracked_beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab_top.json new file mode 100644 index 0000000..85462fa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_beige_concrete", + "side": "new_soviet:block/concrete/cracked_beige_concrete", + "top": "new_soviet:block/concrete/cracked_beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..c825c73 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_beige_concrete", + "side": "new_soviet:block/concrete/cracked_beige_concrete", + "top": "new_soviet:block/concrete/cracked_beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_inner.json new file mode 100644 index 0000000..21e666f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_beige_concrete", + "side": "new_soviet:block/concrete/cracked_beige_concrete", + "top": "new_soviet:block/concrete/cracked_beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_outer.json new file mode 100644 index 0000000..e93ee58 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_beige_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_beige_concrete", + "side": "new_soviet:block/concrete/cracked_beige_concrete", + "top": "new_soviet:block/concrete/cracked_beige_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..a52e40e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_blue_concrete", + "side": "new_soviet:block/concrete/cracked_blue_concrete", + "top": "new_soviet:block/concrete/cracked_blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab_top.json new file mode 100644 index 0000000..bdf2252 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_blue_concrete", + "side": "new_soviet:block/concrete/cracked_blue_concrete", + "top": "new_soviet:block/concrete/cracked_blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..77775a4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_blue_concrete", + "side": "new_soviet:block/concrete/cracked_blue_concrete", + "top": "new_soviet:block/concrete/cracked_blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_inner.json new file mode 100644 index 0000000..e845239 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_blue_concrete", + "side": "new_soviet:block/concrete/cracked_blue_concrete", + "top": "new_soviet:block/concrete/cracked_blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_outer.json new file mode 100644 index 0000000..89bd138 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_blue_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_blue_concrete", + "side": "new_soviet:block/concrete/cracked_blue_concrete", + "top": "new_soviet:block/concrete/cracked_blue_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..c47965a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/cracked_brick_tiles", + "side": "new_soviet:block/brick/cracked_brick_tiles", + "top": "new_soviet:block/brick/cracked_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab_top.json new file mode 100644 index 0000000..ff46e96 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/cracked_brick_tiles", + "side": "new_soviet:block/brick/cracked_brick_tiles", + "top": "new_soviet:block/brick/cracked_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..1f58298 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_brick_tiles", + "side": "new_soviet:block/brick/cracked_brick_tiles", + "top": "new_soviet:block/brick/cracked_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..b9ae640 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_brick_tiles", + "side": "new_soviet:block/brick/cracked_brick_tiles", + "top": "new_soviet:block/brick/cracked_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..7aebd8f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_brick_tiles", + "side": "new_soviet:block/brick/cracked_brick_tiles", + "top": "new_soviet:block/brick/cracked_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..12eaec8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/calcite/cracked_calcite_tiles", + "side": "new_soviet:block/calcite/cracked_calcite_tiles", + "top": "new_soviet:block/calcite/cracked_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab_top.json new file mode 100644 index 0000000..9701da4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/calcite/cracked_calcite_tiles", + "side": "new_soviet:block/calcite/cracked_calcite_tiles", + "top": "new_soviet:block/calcite/cracked_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..4964d72 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/calcite/cracked_calcite_tiles", + "side": "new_soviet:block/calcite/cracked_calcite_tiles", + "top": "new_soviet:block/calcite/cracked_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_inner.json new file mode 100644 index 0000000..d6dd744 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/cracked_calcite_tiles", + "side": "new_soviet:block/calcite/cracked_calcite_tiles", + "top": "new_soviet:block/calcite/cracked_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_outer.json new file mode 100644 index 0000000..e57901a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_calcite_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/cracked_calcite_tiles", + "side": "new_soviet:block/calcite/cracked_calcite_tiles", + "top": "new_soviet:block/calcite/cracked_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..af39b8c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/cracked_dark_brick_tiles", + "side": "new_soviet:block/brick/cracked_dark_brick_tiles", + "top": "new_soviet:block/brick/cracked_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab_top.json new file mode 100644 index 0000000..d48fc7e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/cracked_dark_brick_tiles", + "side": "new_soviet:block/brick/cracked_dark_brick_tiles", + "top": "new_soviet:block/brick/cracked_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..214068c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_dark_brick_tiles", + "side": "new_soviet:block/brick/cracked_dark_brick_tiles", + "top": "new_soviet:block/brick/cracked_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..b2dfb61 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_dark_brick_tiles", + "side": "new_soviet:block/brick/cracked_dark_brick_tiles", + "top": "new_soviet:block/brick/cracked_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..240d05b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dark_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/cracked_dark_brick_tiles", + "side": "new_soviet:block/brick/cracked_dark_brick_tiles", + "top": "new_soviet:block/brick/cracked_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..1161686 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "side": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "top": "new_soviet:block/deepslate/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab_top.json new file mode 100644 index 0000000..5a377b3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "side": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "top": "new_soviet:block/deepslate/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..d7cf375 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "side": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "top": "new_soviet:block/deepslate/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_inner.json new file mode 100644 index 0000000..b1b4070 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "side": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "top": "new_soviet:block/deepslate/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_outer.json new file mode 100644 index 0000000..ec57a49 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_deepslate_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "side": "new_soviet:block/deepslate/cracked_deepslate_tiles", + "top": "new_soviet:block/deepslate/cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..a36c527 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/diorite/cracked_diorite_bricks", + "side": "new_soviet:block/diorite/cracked_diorite_bricks", + "top": "new_soviet:block/diorite/cracked_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab_top.json new file mode 100644 index 0000000..6b59e87 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/diorite/cracked_diorite_bricks", + "side": "new_soviet:block/diorite/cracked_diorite_bricks", + "top": "new_soviet:block/diorite/cracked_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..6ee12e7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/diorite/cracked_diorite_bricks", + "side": "new_soviet:block/diorite/cracked_diorite_bricks", + "top": "new_soviet:block/diorite/cracked_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_inner.json new file mode 100644 index 0000000..2dc75c8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/cracked_diorite_bricks", + "side": "new_soviet:block/diorite/cracked_diorite_bricks", + "top": "new_soviet:block/diorite/cracked_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_outer.json new file mode 100644 index 0000000..49b94e4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_diorite_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/cracked_diorite_bricks", + "side": "new_soviet:block/diorite/cracked_diorite_bricks", + "top": "new_soviet:block/diorite/cracked_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..6d1b692 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "side": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "top": "new_soviet:block/dripstone/cracked_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab_top.json new file mode 100644 index 0000000..b5445d1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "side": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "top": "new_soviet:block/dripstone/cracked_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..fe7e112 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "side": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "top": "new_soviet:block/dripstone/cracked_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_inner.json new file mode 100644 index 0000000..b31acfc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "side": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "top": "new_soviet:block/dripstone/cracked_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_outer.json new file mode 100644 index 0000000..03f83f9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_dripstone_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "side": "new_soviet:block/dripstone/cracked_dripstone_tiles", + "top": "new_soviet:block/dripstone/cracked_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json index eb62ad2..a38a307 100644 --- a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2.json @@ -1,7 +1,7 @@ { "parent": "block/cube_all", "textures": { - "all": "new_soviet:block/green/green_bricks_with_any_cracked", - "particle": "new_soviet:block/green/green_bricks_with_any_cracked" + "all": "new_soviet:block/green/cracked_green_bricks_with_any", + "particle": "new_soviet:block/green/cracked_green_bricks_with_any" } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..66a7e99 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks_with_any", + "side": "new_soviet:block/green/cracked_green_bricks_with_any", + "top": "new_soviet:block/green/cracked_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab_top.json new file mode 100644 index 0000000..4826145 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks_with_any", + "side": "new_soviet:block/green/cracked_green_bricks_with_any", + "top": "new_soviet:block/green/cracked_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..fb8a684 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks_with_any", + "side": "new_soviet:block/green/cracked_green_bricks_with_any", + "top": "new_soviet:block/green/cracked_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_inner.json new file mode 100644 index 0000000..823fb44 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks_with_any", + "side": "new_soviet:block/green/cracked_green_bricks_with_any", + "top": "new_soviet:block/green/cracked_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_outer.json new file mode 100644 index 0000000..af076ca --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_2_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks_with_any", + "side": "new_soviet:block/green/cracked_green_bricks_with_any", + "top": "new_soviet:block/green/cracked_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab.json new file mode 100644 index 0000000..02a8e86 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks", + "side": "new_soviet:block/green/cracked_green_bricks", + "top": "new_soviet:block/green/cracked_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab_top.json new file mode 100644 index 0000000..1728a48 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks", + "side": "new_soviet:block/green/cracked_green_bricks", + "top": "new_soviet:block/green/cracked_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..904cd93 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks", + "side": "new_soviet:block/green/cracked_green_bricks", + "top": "new_soviet:block/green/cracked_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_inner.json new file mode 100644 index 0000000..993dc63 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks", + "side": "new_soviet:block/green/cracked_green_bricks", + "top": "new_soviet:block/green/cracked_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_outer.json new file mode 100644 index 0000000..0c8adbb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/cracked_green_bricks", + "side": "new_soviet:block/green/cracked_green_bricks", + "top": "new_soviet:block/green/cracked_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab.json new file mode 100644 index 0000000..b89bf6b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_green_concrete", + "side": "new_soviet:block/concrete/cracked_green_concrete", + "top": "new_soviet:block/concrete/cracked_green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab_top.json new file mode 100644 index 0000000..5eef612 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_green_concrete", + "side": "new_soviet:block/concrete/cracked_green_concrete", + "top": "new_soviet:block/concrete/cracked_green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..0d59902 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_green_concrete", + "side": "new_soviet:block/concrete/cracked_green_concrete", + "top": "new_soviet:block/concrete/cracked_green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_inner.json new file mode 100644 index 0000000..c05fb8e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_green_concrete", + "side": "new_soviet:block/concrete/cracked_green_concrete", + "top": "new_soviet:block/concrete/cracked_green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_outer.json new file mode 100644 index 0000000..fd8e34b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_green_concrete", + "side": "new_soviet:block/concrete/cracked_green_concrete", + "top": "new_soviet:block/concrete/cracked_green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..e7689a1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green_white/cracked_green_white_tiles", + "side": "new_soviet:block/green_white/cracked_green_white_tiles", + "top": "new_soviet:block/green_white/cracked_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab_top.json new file mode 100644 index 0000000..b000aa4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green_white/cracked_green_white_tiles", + "side": "new_soviet:block/green_white/cracked_green_white_tiles", + "top": "new_soviet:block/green_white/cracked_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..f8cd32a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green_white/cracked_green_white_tiles", + "side": "new_soviet:block/green_white/cracked_green_white_tiles", + "top": "new_soviet:block/green_white/cracked_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_inner.json new file mode 100644 index 0000000..8d2e408 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/cracked_green_white_tiles", + "side": "new_soviet:block/green_white/cracked_green_white_tiles", + "top": "new_soviet:block/green_white/cracked_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_outer.json new file mode 100644 index 0000000..6636228 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_green_white_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/cracked_green_white_tiles", + "side": "new_soviet:block/green_white/cracked_green_white_tiles", + "top": "new_soviet:block/green_white/cracked_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..cabf4cb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "side": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "top": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab_top.json new file mode 100644 index 0000000..7a054fd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "side": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "top": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..aa8f97a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "side": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "top": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_inner.json new file mode 100644 index 0000000..0beb857 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "side": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "top": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_outer.json new file mode 100644 index 0000000..6fe8082 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "side": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1", + "top": "new_soviet:block/light_blue/variated/cracked_light_blue_bricks_1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..e679ac3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "side": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "top": "new_soviet:block/light_blue/cracked_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab_top.json new file mode 100644 index 0000000..a340894 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "side": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "top": "new_soviet:block/light_blue/cracked_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..9d03dec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "side": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "top": "new_soviet:block/light_blue/cracked_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_inner.json new file mode 100644 index 0000000..1c0c734 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "side": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "top": "new_soviet:block/light_blue/cracked_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_outer.json new file mode 100644 index 0000000..a3e31eb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_light_blue_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "side": "new_soviet:block/light_blue/cracked_light_blue_tiles", + "top": "new_soviet:block/light_blue/cracked_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab.json new file mode 100644 index 0000000..d2c62ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/red/cracked_red_bricks", + "side": "new_soviet:block/red/cracked_red_bricks", + "top": "new_soviet:block/red/cracked_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab_top.json new file mode 100644 index 0000000..b84daba --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/red/cracked_red_bricks", + "side": "new_soviet:block/red/cracked_red_bricks", + "top": "new_soviet:block/red/cracked_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..fc40e39 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/red/cracked_red_bricks", + "side": "new_soviet:block/red/cracked_red_bricks", + "top": "new_soviet:block/red/cracked_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_inner.json new file mode 100644 index 0000000..db6b514 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/red/cracked_red_bricks", + "side": "new_soviet:block/red/cracked_red_bricks", + "top": "new_soviet:block/red/cracked_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_outer.json new file mode 100644 index 0000000..d8d587c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/red/cracked_red_bricks", + "side": "new_soviet:block/red/cracked_red_bricks", + "top": "new_soviet:block/red/cracked_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab.json new file mode 100644 index 0000000..0d00b14 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_red_concrete", + "side": "new_soviet:block/concrete/cracked_red_concrete", + "top": "new_soviet:block/concrete/cracked_red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab_top.json new file mode 100644 index 0000000..38ef4f5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_red_concrete", + "side": "new_soviet:block/concrete/cracked_red_concrete", + "top": "new_soviet:block/concrete/cracked_red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..de8d73f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_red_concrete", + "side": "new_soviet:block/concrete/cracked_red_concrete", + "top": "new_soviet:block/concrete/cracked_red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_inner.json new file mode 100644 index 0000000..633098c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_red_concrete", + "side": "new_soviet:block/concrete/cracked_red_concrete", + "top": "new_soviet:block/concrete/cracked_red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_outer.json new file mode 100644 index 0000000..e9c75b6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_red_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_red_concrete", + "side": "new_soviet:block/concrete/cracked_red_concrete", + "top": "new_soviet:block/concrete/cracked_red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..430553c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_bricks", + "side": "new_soviet:block/sand/cracked_sand_bricks", + "top": "new_soviet:block/sand/cracked_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab_top.json new file mode 100644 index 0000000..f9dbaa7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_bricks", + "side": "new_soviet:block/sand/cracked_sand_bricks", + "top": "new_soviet:block/sand/cracked_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..3cbbc73 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_bricks", + "side": "new_soviet:block/sand/cracked_sand_bricks", + "top": "new_soviet:block/sand/cracked_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_inner.json new file mode 100644 index 0000000..ef437ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_bricks", + "side": "new_soviet:block/sand/cracked_sand_bricks", + "top": "new_soviet:block/sand/cracked_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_outer.json new file mode 100644 index 0000000..eceee6f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_bricks", + "side": "new_soviet:block/sand/cracked_sand_bricks", + "top": "new_soviet:block/sand/cracked_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..d26b275 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_tiles", + "side": "new_soviet:block/sand/cracked_sand_tiles", + "top": "new_soviet:block/sand/cracked_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab_top.json new file mode 100644 index 0000000..7827e53 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_tiles", + "side": "new_soviet:block/sand/cracked_sand_tiles", + "top": "new_soviet:block/sand/cracked_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..b4c553a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_tiles", + "side": "new_soviet:block/sand/cracked_sand_tiles", + "top": "new_soviet:block/sand/cracked_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_inner.json new file mode 100644 index 0000000..b87b8fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_tiles", + "side": "new_soviet:block/sand/cracked_sand_tiles", + "top": "new_soviet:block/sand/cracked_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_outer.json new file mode 100644 index 0000000..e1093da --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_sand_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cracked_sand_tiles", + "side": "new_soviet:block/sand/cracked_sand_tiles", + "top": "new_soviet:block/sand/cracked_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..b301055 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/teal/cracked_teal_tiles", + "side": "new_soviet:block/teal/cracked_teal_tiles", + "top": "new_soviet:block/teal/cracked_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab_top.json new file mode 100644 index 0000000..9189de0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/teal/cracked_teal_tiles", + "side": "new_soviet:block/teal/cracked_teal_tiles", + "top": "new_soviet:block/teal/cracked_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..d0523fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/teal/cracked_teal_tiles", + "side": "new_soviet:block/teal/cracked_teal_tiles", + "top": "new_soviet:block/teal/cracked_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_inner.json new file mode 100644 index 0000000..4da5286 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/teal/cracked_teal_tiles", + "side": "new_soviet:block/teal/cracked_teal_tiles", + "top": "new_soviet:block/teal/cracked_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_outer.json new file mode 100644 index 0000000..61abc1a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_teal_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/teal/cracked_teal_tiles", + "side": "new_soviet:block/teal/cracked_teal_tiles", + "top": "new_soviet:block/teal/cracked_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..2b0e23d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_bricks", + "side": "new_soviet:block/tuff/cracked_tuff_bricks", + "top": "new_soviet:block/tuff/cracked_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab_top.json new file mode 100644 index 0000000..fd41339 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_bricks", + "side": "new_soviet:block/tuff/cracked_tuff_bricks", + "top": "new_soviet:block/tuff/cracked_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..3ed92f5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_bricks", + "side": "new_soviet:block/tuff/cracked_tuff_bricks", + "top": "new_soviet:block/tuff/cracked_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_inner.json new file mode 100644 index 0000000..43e6149 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_bricks", + "side": "new_soviet:block/tuff/cracked_tuff_bricks", + "top": "new_soviet:block/tuff/cracked_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_outer.json new file mode 100644 index 0000000..551f06c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_bricks", + "side": "new_soviet:block/tuff/cracked_tuff_bricks", + "top": "new_soviet:block/tuff/cracked_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..ca3f77b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_tiles", + "side": "new_soviet:block/tuff/cracked_tuff_tiles", + "top": "new_soviet:block/tuff/cracked_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab_top.json new file mode 100644 index 0000000..e869d94 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_tiles", + "side": "new_soviet:block/tuff/cracked_tuff_tiles", + "top": "new_soviet:block/tuff/cracked_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..ed7476f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_tiles", + "side": "new_soviet:block/tuff/cracked_tuff_tiles", + "top": "new_soviet:block/tuff/cracked_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_inner.json new file mode 100644 index 0000000..f0967ba --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_tiles", + "side": "new_soviet:block/tuff/cracked_tuff_tiles", + "top": "new_soviet:block/tuff/cracked_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_outer.json new file mode 100644 index 0000000..7c5a905 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_tuff_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/cracked_tuff_tiles", + "side": "new_soviet:block/tuff/cracked_tuff_tiles", + "top": "new_soviet:block/tuff/cracked_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab.json new file mode 100644 index 0000000..91d045a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_white_concrete", + "side": "new_soviet:block/concrete/cracked_white_concrete", + "top": "new_soviet:block/concrete/cracked_white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab_top.json new file mode 100644 index 0000000..4eb1a84 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_white_concrete", + "side": "new_soviet:block/concrete/cracked_white_concrete", + "top": "new_soviet:block/concrete/cracked_white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..019b41e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_white_concrete", + "side": "new_soviet:block/concrete/cracked_white_concrete", + "top": "new_soviet:block/concrete/cracked_white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_inner.json new file mode 100644 index 0000000..fe121fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_white_concrete", + "side": "new_soviet:block/concrete/cracked_white_concrete", + "top": "new_soviet:block/concrete/cracked_white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_outer.json new file mode 100644 index 0000000..acdf51c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_white_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_white_concrete", + "side": "new_soviet:block/concrete/cracked_white_concrete", + "top": "new_soviet:block/concrete/cracked_white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..e39cf21 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_yellow_concrete", + "side": "new_soviet:block/concrete/cracked_yellow_concrete", + "top": "new_soviet:block/concrete/cracked_yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab_top.json new file mode 100644 index 0000000..b0c6aaa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_yellow_concrete", + "side": "new_soviet:block/concrete/cracked_yellow_concrete", + "top": "new_soviet:block/concrete/cracked_yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..25b31c7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_yellow_concrete", + "side": "new_soviet:block/concrete/cracked_yellow_concrete", + "top": "new_soviet:block/concrete/cracked_yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_inner.json new file mode 100644 index 0000000..9f38f5a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_yellow_concrete", + "side": "new_soviet:block/concrete/cracked_yellow_concrete", + "top": "new_soviet:block/concrete/cracked_yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_outer.json new file mode 100644 index 0000000..ee4ccae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cracked_yellow_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/cracked_yellow_concrete", + "side": "new_soviet:block/concrete/cracked_yellow_concrete", + "top": "new_soviet:block/concrete/cracked_yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab.json new file mode 100644 index 0000000..99ce4fa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_acacia_planks", + "side": "new_soviet:block/floor/planks/cross_acacia_planks", + "top": "new_soviet:block/floor/planks/cross_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab_top.json new file mode 100644 index 0000000..bd3b642 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_acacia_planks", + "side": "new_soviet:block/floor/planks/cross_acacia_planks", + "top": "new_soviet:block/floor/planks/cross_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..00b9f73 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_acacia_planks", + "side": "new_soviet:block/floor/planks/cross_acacia_planks", + "top": "new_soviet:block/floor/planks/cross_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_inner.json new file mode 100644 index 0000000..b9908cb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_acacia_planks", + "side": "new_soviet:block/floor/planks/cross_acacia_planks", + "top": "new_soviet:block/floor/planks/cross_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_outer.json new file mode 100644 index 0000000..3a4a20c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_acacia_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_acacia_planks", + "side": "new_soviet:block/floor/planks/cross_acacia_planks", + "top": "new_soviet:block/floor/planks/cross_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab.json new file mode 100644 index 0000000..1f9dded --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_birch_planks", + "side": "new_soviet:block/floor/planks/cross_birch_planks", + "top": "new_soviet:block/floor/planks/cross_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab_top.json new file mode 100644 index 0000000..b38ac09 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_birch_planks", + "side": "new_soviet:block/floor/planks/cross_birch_planks", + "top": "new_soviet:block/floor/planks/cross_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs.json new file mode 100644 index 0000000..ef61212 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_birch_planks", + "side": "new_soviet:block/floor/planks/cross_birch_planks", + "top": "new_soviet:block/floor/planks/cross_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_inner.json new file mode 100644 index 0000000..e7643b2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_birch_planks", + "side": "new_soviet:block/floor/planks/cross_birch_planks", + "top": "new_soviet:block/floor/planks/cross_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_outer.json new file mode 100644 index 0000000..e461250 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_birch_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_birch_planks", + "side": "new_soviet:block/floor/planks/cross_birch_planks", + "top": "new_soviet:block/floor/planks/cross_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab.json new file mode 100644 index 0000000..d9b48bf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_crimson_planks", + "side": "new_soviet:block/floor/planks/cross_crimson_planks", + "top": "new_soviet:block/floor/planks/cross_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab_top.json new file mode 100644 index 0000000..b7686e2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_crimson_planks", + "side": "new_soviet:block/floor/planks/cross_crimson_planks", + "top": "new_soviet:block/floor/planks/cross_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..3dce0de --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_crimson_planks", + "side": "new_soviet:block/floor/planks/cross_crimson_planks", + "top": "new_soviet:block/floor/planks/cross_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_inner.json new file mode 100644 index 0000000..4f1893e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_crimson_planks", + "side": "new_soviet:block/floor/planks/cross_crimson_planks", + "top": "new_soviet:block/floor/planks/cross_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_outer.json new file mode 100644 index 0000000..2a6c689 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_crimson_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_crimson_planks", + "side": "new_soviet:block/floor/planks/cross_crimson_planks", + "top": "new_soviet:block/floor/planks/cross_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..36d5643 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "side": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "top": "new_soviet:block/floor/planks/cross_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab_top.json new file mode 100644 index 0000000..7dda461 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "side": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "top": "new_soviet:block/floor/planks/cross_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..b7cfbaf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "side": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "top": "new_soviet:block/floor/planks/cross_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_inner.json new file mode 100644 index 0000000..a92f50b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "side": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "top": "new_soviet:block/floor/planks/cross_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_outer.json new file mode 100644 index 0000000..c5bc155 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_dark_oak_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "side": "new_soviet:block/floor/planks/cross_dark_oak_planks", + "top": "new_soviet:block/floor/planks/cross_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab.json new file mode 100644 index 0000000..05fbbe7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_jungle_planks", + "side": "new_soviet:block/floor/planks/cross_jungle_planks", + "top": "new_soviet:block/floor/planks/cross_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab_top.json new file mode 100644 index 0000000..c9a598f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_jungle_planks", + "side": "new_soviet:block/floor/planks/cross_jungle_planks", + "top": "new_soviet:block/floor/planks/cross_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..0373aca --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_jungle_planks", + "side": "new_soviet:block/floor/planks/cross_jungle_planks", + "top": "new_soviet:block/floor/planks/cross_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_inner.json new file mode 100644 index 0000000..bf8023a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_jungle_planks", + "side": "new_soviet:block/floor/planks/cross_jungle_planks", + "top": "new_soviet:block/floor/planks/cross_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_outer.json new file mode 100644 index 0000000..cc230bc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_jungle_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_jungle_planks", + "side": "new_soviet:block/floor/planks/cross_jungle_planks", + "top": "new_soviet:block/floor/planks/cross_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..d87b781 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_mangrove_planks", + "side": "new_soviet:block/floor/planks/cross_mangrove_planks", + "top": "new_soviet:block/floor/planks/cross_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab_top.json new file mode 100644 index 0000000..82c9e3a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_mangrove_planks", + "side": "new_soviet:block/floor/planks/cross_mangrove_planks", + "top": "new_soviet:block/floor/planks/cross_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..b373723 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_mangrove_planks", + "side": "new_soviet:block/floor/planks/cross_mangrove_planks", + "top": "new_soviet:block/floor/planks/cross_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_inner.json new file mode 100644 index 0000000..5d6fde2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_mangrove_planks", + "side": "new_soviet:block/floor/planks/cross_mangrove_planks", + "top": "new_soviet:block/floor/planks/cross_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_outer.json new file mode 100644 index 0000000..1860192 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_mangrove_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_mangrove_planks", + "side": "new_soviet:block/floor/planks/cross_mangrove_planks", + "top": "new_soviet:block/floor/planks/cross_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab.json new file mode 100644 index 0000000..7c6010b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_oak_planks", + "side": "new_soviet:block/floor/planks/cross_oak_planks", + "top": "new_soviet:block/floor/planks/cross_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab_top.json new file mode 100644 index 0000000..a7f4302 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_oak_planks", + "side": "new_soviet:block/floor/planks/cross_oak_planks", + "top": "new_soviet:block/floor/planks/cross_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs.json new file mode 100644 index 0000000..cdf2f5c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_oak_planks", + "side": "new_soviet:block/floor/planks/cross_oak_planks", + "top": "new_soviet:block/floor/planks/cross_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_inner.json new file mode 100644 index 0000000..a58e527 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_oak_planks", + "side": "new_soviet:block/floor/planks/cross_oak_planks", + "top": "new_soviet:block/floor/planks/cross_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_outer.json new file mode 100644 index 0000000..91f1fcf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_oak_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_oak_planks", + "side": "new_soviet:block/floor/planks/cross_oak_planks", + "top": "new_soviet:block/floor/planks/cross_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab.json new file mode 100644 index 0000000..741a58a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/cross_sand_tiles", + "side": "new_soviet:block/sand/cross_sand_tiles", + "top": "new_soviet:block/sand/cross_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab_top.json new file mode 100644 index 0000000..72c71c5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/cross_sand_tiles", + "side": "new_soviet:block/sand/cross_sand_tiles", + "top": "new_soviet:block/sand/cross_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..39f47cd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/cross_sand_tiles", + "side": "new_soviet:block/sand/cross_sand_tiles", + "top": "new_soviet:block/sand/cross_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_inner.json new file mode 100644 index 0000000..ed389d5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cross_sand_tiles", + "side": "new_soviet:block/sand/cross_sand_tiles", + "top": "new_soviet:block/sand/cross_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_outer.json new file mode 100644 index 0000000..1c513f8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_sand_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/cross_sand_tiles", + "side": "new_soviet:block/sand/cross_sand_tiles", + "top": "new_soviet:block/sand/cross_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab.json new file mode 100644 index 0000000..9bbd4da --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_spruce_planks", + "side": "new_soviet:block/floor/planks/cross_spruce_planks", + "top": "new_soviet:block/floor/planks/cross_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab_top.json new file mode 100644 index 0000000..bb87d76 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_spruce_planks", + "side": "new_soviet:block/floor/planks/cross_spruce_planks", + "top": "new_soviet:block/floor/planks/cross_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..f7c03b5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_spruce_planks", + "side": "new_soviet:block/floor/planks/cross_spruce_planks", + "top": "new_soviet:block/floor/planks/cross_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_inner.json new file mode 100644 index 0000000..d7f317e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_spruce_planks", + "side": "new_soviet:block/floor/planks/cross_spruce_planks", + "top": "new_soviet:block/floor/planks/cross_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_outer.json new file mode 100644 index 0000000..6285466 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cross_spruce_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/cross_spruce_planks", + "side": "new_soviet:block/floor/planks/cross_spruce_planks", + "top": "new_soviet:block/floor/planks/cross_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab.json new file mode 100644 index 0000000..de903dd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/cyan_linoleum", + "side": "new_soviet:block/floor/linoleum/cyan_linoleum", + "top": "new_soviet:block/floor/linoleum/cyan_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab_top.json new file mode 100644 index 0000000..c401741 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/cyan_linoleum", + "side": "new_soviet:block/floor/linoleum/cyan_linoleum", + "top": "new_soviet:block/floor/linoleum/cyan_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs.json new file mode 100644 index 0000000..ada75f4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/cyan_linoleum", + "side": "new_soviet:block/floor/linoleum/cyan_linoleum", + "top": "new_soviet:block/floor/linoleum/cyan_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_inner.json new file mode 100644 index 0000000..241d314 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/cyan_linoleum", + "side": "new_soviet:block/floor/linoleum/cyan_linoleum", + "top": "new_soviet:block/floor/linoleum/cyan_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_outer.json new file mode 100644 index 0000000..cbc0934 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/cyan_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/cyan_linoleum", + "side": "new_soviet:block/floor/linoleum/cyan_linoleum", + "top": "new_soviet:block/floor/linoleum/cyan_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab.json new file mode 100644 index 0000000..7b6777a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/dark_brick_tiles", + "side": "new_soviet:block/brick/dark_brick_tiles", + "top": "new_soviet:block/brick/dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab_top.json new file mode 100644 index 0000000..07eaa37 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/dark_brick_tiles", + "side": "new_soviet:block/brick/dark_brick_tiles", + "top": "new_soviet:block/brick/dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..1122d1d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/dark_brick_tiles", + "side": "new_soviet:block/brick/dark_brick_tiles", + "top": "new_soviet:block/brick/dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..2523a71 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dark_brick_tiles", + "side": "new_soviet:block/brick/dark_brick_tiles", + "top": "new_soviet:block/brick/dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..a8e6841 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dark_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dark_brick_tiles", + "side": "new_soviet:block/brick/dark_brick_tiles", + "top": "new_soviet:block/brick/dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab.json new file mode 100644 index 0000000..6ca6b6f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/deepslate/deepslate_tiles", + "side": "new_soviet:block/deepslate/deepslate_tiles", + "top": "new_soviet:block/deepslate/deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab_top.json new file mode 100644 index 0000000..3ee9e9d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/deepslate/deepslate_tiles", + "side": "new_soviet:block/deepslate/deepslate_tiles", + "top": "new_soviet:block/deepslate/deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs.json new file mode 100644 index 0000000..ad17a85 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/deepslate_tiles", + "side": "new_soviet:block/deepslate/deepslate_tiles", + "top": "new_soviet:block/deepslate/deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_inner.json new file mode 100644 index 0000000..df12b18 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/deepslate_tiles", + "side": "new_soviet:block/deepslate/deepslate_tiles", + "top": "new_soviet:block/deepslate/deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_outer.json new file mode 100644 index 0000000..1b11215 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/deepslate_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/deepslate_tiles", + "side": "new_soviet:block/deepslate/deepslate_tiles", + "top": "new_soviet:block/deepslate/deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab.json new file mode 100644 index 0000000..30c3773 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/diorite/diorite_bricks", + "side": "new_soviet:block/diorite/diorite_bricks", + "top": "new_soviet:block/diorite/diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab_top.json new file mode 100644 index 0000000..7e37c0f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/diorite/diorite_bricks", + "side": "new_soviet:block/diorite/diorite_bricks", + "top": "new_soviet:block/diorite/diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs.json new file mode 100644 index 0000000..85b4df4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/diorite/diorite_bricks", + "side": "new_soviet:block/diorite/diorite_bricks", + "top": "new_soviet:block/diorite/diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_inner.json new file mode 100644 index 0000000..0f34972 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/diorite_bricks", + "side": "new_soviet:block/diorite/diorite_bricks", + "top": "new_soviet:block/diorite/diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_outer.json new file mode 100644 index 0000000..8c69c5f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/diorite_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/diorite_bricks", + "side": "new_soviet:block/diorite/diorite_bricks", + "top": "new_soviet:block/diorite/diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..e321f9e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab_top.json new file mode 100644 index 0000000..8842dbd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..6952114 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_inner.json new file mode 100644 index 0000000..4abaad3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_outer.json new file mode 100644 index 0000000..15979e3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_aquamarine_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/dirty_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/dirty_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..d15df95 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/dirty_brick_tiles", + "side": "new_soviet:block/brick/dirty_brick_tiles", + "top": "new_soviet:block/brick/dirty_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab_top.json new file mode 100644 index 0000000..432c408 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/dirty_brick_tiles", + "side": "new_soviet:block/brick/dirty_brick_tiles", + "top": "new_soviet:block/brick/dirty_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..2c27d0c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_brick_tiles", + "side": "new_soviet:block/brick/dirty_brick_tiles", + "top": "new_soviet:block/brick/dirty_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..a425640 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_brick_tiles", + "side": "new_soviet:block/brick/dirty_brick_tiles", + "top": "new_soviet:block/brick/dirty_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..d29b71a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_brick_tiles", + "side": "new_soviet:block/brick/dirty_brick_tiles", + "top": "new_soviet:block/brick/dirty_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..7b60794 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/dirty_dark_brick_tiles", + "side": "new_soviet:block/brick/dirty_dark_brick_tiles", + "top": "new_soviet:block/brick/dirty_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab_top.json new file mode 100644 index 0000000..9a3f549 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/dirty_dark_brick_tiles", + "side": "new_soviet:block/brick/dirty_dark_brick_tiles", + "top": "new_soviet:block/brick/dirty_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..871236c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_dark_brick_tiles", + "side": "new_soviet:block/brick/dirty_dark_brick_tiles", + "top": "new_soviet:block/brick/dirty_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..b1dadef --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_dark_brick_tiles", + "side": "new_soviet:block/brick/dirty_dark_brick_tiles", + "top": "new_soviet:block/brick/dirty_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..007f31c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dirty_dark_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/dirty_dark_brick_tiles", + "side": "new_soviet:block/brick/dirty_dark_brick_tiles", + "top": "new_soviet:block/brick/dirty_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab.json new file mode 100644 index 0000000..b171caf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/dripstone/dripstone_tiles", + "side": "new_soviet:block/dripstone/dripstone_tiles", + "top": "new_soviet:block/dripstone/dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab_top.json new file mode 100644 index 0000000..4bcc373 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/dripstone/dripstone_tiles", + "side": "new_soviet:block/dripstone/dripstone_tiles", + "top": "new_soviet:block/dripstone/dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs.json new file mode 100644 index 0000000..8ecc3a2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/dripstone_tiles", + "side": "new_soviet:block/dripstone/dripstone_tiles", + "top": "new_soviet:block/dripstone/dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_inner.json new file mode 100644 index 0000000..194fc5a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/dripstone_tiles", + "side": "new_soviet:block/dripstone/dripstone_tiles", + "top": "new_soviet:block/dripstone/dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_outer.json new file mode 100644 index 0000000..288fb18 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/dripstone_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/dripstone_tiles", + "side": "new_soviet:block/dripstone/dripstone_tiles", + "top": "new_soviet:block/dripstone/dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab.json new file mode 100644 index 0000000..b84fdbf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/gray_linoleum", + "side": "new_soviet:block/floor/linoleum/gray_linoleum", + "top": "new_soviet:block/floor/linoleum/gray_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab_top.json new file mode 100644 index 0000000..c2586ea --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/gray_linoleum", + "side": "new_soviet:block/floor/linoleum/gray_linoleum", + "top": "new_soviet:block/floor/linoleum/gray_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs.json new file mode 100644 index 0000000..8e9f2dc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/gray_linoleum", + "side": "new_soviet:block/floor/linoleum/gray_linoleum", + "top": "new_soviet:block/floor/linoleum/gray_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_inner.json new file mode 100644 index 0000000..6344d5e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/gray_linoleum", + "side": "new_soviet:block/floor/linoleum/gray_linoleum", + "top": "new_soviet:block/floor/linoleum/gray_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_outer.json new file mode 100644 index 0000000..2281913 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/gray_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/gray_linoleum", + "side": "new_soviet:block/floor/linoleum/gray_linoleum", + "top": "new_soviet:block/floor/linoleum/gray_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab.json new file mode 100644 index 0000000..2897ce2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/green_bricks_with_any", + "side": "new_soviet:block/green/green_bricks_with_any", + "top": "new_soviet:block/green/green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab_top.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab_top.json new file mode 100644 index 0000000..e5089d7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/green_bricks_with_any", + "side": "new_soviet:block/green/green_bricks_with_any", + "top": "new_soviet:block/green/green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs.json new file mode 100644 index 0000000..f1f1e77 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks_with_any", + "side": "new_soviet:block/green/green_bricks_with_any", + "top": "new_soviet:block/green/green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_inner.json new file mode 100644 index 0000000..88f05a6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks_with_any", + "side": "new_soviet:block/green/green_bricks_with_any", + "top": "new_soviet:block/green/green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_outer.json new file mode 100644 index 0000000..6ef393a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_2_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks_with_any", + "side": "new_soviet:block/green/green_bricks_with_any", + "top": "new_soviet:block/green/green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_slab.json new file mode 100644 index 0000000..a5b8750 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/green_bricks", + "side": "new_soviet:block/green/green_bricks", + "top": "new_soviet:block/green/green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_slab_top.json new file mode 100644 index 0000000..536bfd1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/green_bricks", + "side": "new_soviet:block/green/green_bricks", + "top": "new_soviet:block/green/green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs.json new file mode 100644 index 0000000..23d8f2d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks", + "side": "new_soviet:block/green/green_bricks", + "top": "new_soviet:block/green/green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_inner.json new file mode 100644 index 0000000..5600e74 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks", + "side": "new_soviet:block/green/green_bricks", + "top": "new_soviet:block/green/green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_outer.json new file mode 100644 index 0000000..b19cf4d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/green_bricks", + "side": "new_soviet:block/green/green_bricks", + "top": "new_soviet:block/green/green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/green_concrete_slab.json new file mode 100644 index 0000000..47f5938 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/green_concrete", + "side": "new_soviet:block/concrete/green_concrete", + "top": "new_soviet:block/concrete/green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/green_concrete_slab_top.json new file mode 100644 index 0000000..3935816 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/green_concrete", + "side": "new_soviet:block/concrete/green_concrete", + "top": "new_soviet:block/concrete/green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs.json new file mode 100644 index 0000000..7e4e6d1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/green_concrete", + "side": "new_soviet:block/concrete/green_concrete", + "top": "new_soviet:block/concrete/green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_inner.json new file mode 100644 index 0000000..7ae8589 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/green_concrete", + "side": "new_soviet:block/concrete/green_concrete", + "top": "new_soviet:block/concrete/green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_outer.json new file mode 100644 index 0000000..7cf1baa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/green_concrete", + "side": "new_soviet:block/concrete/green_concrete", + "top": "new_soviet:block/concrete/green_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab.json new file mode 100644 index 0000000..9eb2a67 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/green_linoleum", + "side": "new_soviet:block/floor/linoleum/green_linoleum", + "top": "new_soviet:block/floor/linoleum/green_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab_top.json new file mode 100644 index 0000000..6d37c60 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/green_linoleum", + "side": "new_soviet:block/floor/linoleum/green_linoleum", + "top": "new_soviet:block/floor/linoleum/green_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs.json new file mode 100644 index 0000000..392175c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/green_linoleum", + "side": "new_soviet:block/floor/linoleum/green_linoleum", + "top": "new_soviet:block/floor/linoleum/green_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_inner.json new file mode 100644 index 0000000..cb562a8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/green_linoleum", + "side": "new_soviet:block/floor/linoleum/green_linoleum", + "top": "new_soviet:block/floor/linoleum/green_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_outer.json new file mode 100644 index 0000000..e0871fa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/green_linoleum", + "side": "new_soviet:block/floor/linoleum/green_linoleum", + "top": "new_soviet:block/floor/linoleum/green_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab.json new file mode 100644 index 0000000..a15b6f7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green_white/green_white_tiles", + "side": "new_soviet:block/green_white/green_white_tiles", + "top": "new_soviet:block/green_white/green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab_top.json new file mode 100644 index 0000000..bfe7edf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green_white/green_white_tiles", + "side": "new_soviet:block/green_white/green_white_tiles", + "top": "new_soviet:block/green_white/green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs.json new file mode 100644 index 0000000..117ea06 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green_white/green_white_tiles", + "side": "new_soviet:block/green_white/green_white_tiles", + "top": "new_soviet:block/green_white/green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_inner.json new file mode 100644 index 0000000..4b58539 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/green_white_tiles", + "side": "new_soviet:block/green_white/green_white_tiles", + "top": "new_soviet:block/green_white/green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_outer.json new file mode 100644 index 0000000..270a3a5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/green_white_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/green_white_tiles", + "side": "new_soviet:block/green_white/green_white_tiles", + "top": "new_soviet:block/green_white/green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..f115515 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "side": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "top": "new_soviet:block/floor/planks/herringbone_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab_top.json new file mode 100644 index 0000000..fa64d3f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "side": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "top": "new_soviet:block/floor/planks/herringbone_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..c05ad1a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "side": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "top": "new_soviet:block/floor/planks/herringbone_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_inner.json new file mode 100644 index 0000000..9b476b6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "side": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "top": "new_soviet:block/floor/planks/herringbone_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_outer.json new file mode 100644 index 0000000..4513c0a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_acacia_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "side": "new_soviet:block/floor/planks/herringbone_acacia_planks", + "top": "new_soviet:block/floor/planks/herringbone_acacia_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..96f7220 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_birch_planks", + "side": "new_soviet:block/floor/planks/herringbone_birch_planks", + "top": "new_soviet:block/floor/planks/herringbone_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab_top.json new file mode 100644 index 0000000..7a70c25 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_birch_planks", + "side": "new_soviet:block/floor/planks/herringbone_birch_planks", + "top": "new_soviet:block/floor/planks/herringbone_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..dd625e5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_birch_planks", + "side": "new_soviet:block/floor/planks/herringbone_birch_planks", + "top": "new_soviet:block/floor/planks/herringbone_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_inner.json new file mode 100644 index 0000000..26554df --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_birch_planks", + "side": "new_soviet:block/floor/planks/herringbone_birch_planks", + "top": "new_soviet:block/floor/planks/herringbone_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_outer.json new file mode 100644 index 0000000..f6ee948 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_birch_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_birch_planks", + "side": "new_soviet:block/floor/planks/herringbone_birch_planks", + "top": "new_soviet:block/floor/planks/herringbone_birch_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..eec49b8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "side": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "top": "new_soviet:block/floor/planks/herringbone_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab_top.json new file mode 100644 index 0000000..49cc571 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "side": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "top": "new_soviet:block/floor/planks/herringbone_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..3b157ec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "side": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "top": "new_soviet:block/floor/planks/herringbone_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_inner.json new file mode 100644 index 0000000..bab406f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "side": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "top": "new_soviet:block/floor/planks/herringbone_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_outer.json new file mode 100644 index 0000000..6a038f1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_crimson_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "side": "new_soviet:block/floor/planks/herringbone_crimson_planks", + "top": "new_soviet:block/floor/planks/herringbone_crimson_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..521c120 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab_top.json new file mode 100644 index 0000000..2bae983 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..a78613c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_inner.json new file mode 100644 index 0000000..a72d2ce --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_outer.json new file mode 100644 index 0000000..d54442f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_dark_oak_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_dark_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_dark_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..0b97b87 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "side": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "top": "new_soviet:block/floor/planks/herringbone_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab_top.json new file mode 100644 index 0000000..9f08a0b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "side": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "top": "new_soviet:block/floor/planks/herringbone_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..46d1bd4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "side": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "top": "new_soviet:block/floor/planks/herringbone_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_inner.json new file mode 100644 index 0000000..d68d5a4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "side": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "top": "new_soviet:block/floor/planks/herringbone_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_outer.json new file mode 100644 index 0000000..4e4ed3d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_jungle_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "side": "new_soviet:block/floor/planks/herringbone_jungle_planks", + "top": "new_soviet:block/floor/planks/herringbone_jungle_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..7089985 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "side": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "top": "new_soviet:block/floor/planks/herringbone_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab_top.json new file mode 100644 index 0000000..ffe58f3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "side": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "top": "new_soviet:block/floor/planks/herringbone_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..a7b1152 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "side": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "top": "new_soviet:block/floor/planks/herringbone_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_inner.json new file mode 100644 index 0000000..b67dd1f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "side": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "top": "new_soviet:block/floor/planks/herringbone_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_outer.json new file mode 100644 index 0000000..23b83ff --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_mangrove_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "side": "new_soviet:block/floor/planks/herringbone_mangrove_planks", + "top": "new_soviet:block/floor/planks/herringbone_mangrove_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..91c204a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab_top.json new file mode 100644 index 0000000..8930c06 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..08d52c0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_inner.json new file mode 100644 index 0000000..c345ae8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_outer.json new file mode 100644 index 0000000..3b6c88d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_oak_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_oak_planks", + "side": "new_soviet:block/floor/planks/herringbone_oak_planks", + "top": "new_soviet:block/floor/planks/herringbone_oak_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab.json new file mode 100644 index 0000000..4ec8f19 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_parquet", + "side": "new_soviet:block/floor/planks/herringbone_parquet", + "top": "new_soviet:block/floor/planks/herringbone_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab_top.json new file mode 100644 index 0000000..516ffb5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_parquet", + "side": "new_soviet:block/floor/planks/herringbone_parquet", + "top": "new_soviet:block/floor/planks/herringbone_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs.json new file mode 100644 index 0000000..00ee32b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_parquet", + "side": "new_soviet:block/floor/planks/herringbone_parquet", + "top": "new_soviet:block/floor/planks/herringbone_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_inner.json new file mode 100644 index 0000000..25f1b49 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_parquet", + "side": "new_soviet:block/floor/planks/herringbone_parquet", + "top": "new_soviet:block/floor/planks/herringbone_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_outer.json new file mode 100644 index 0000000..c29a6d7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_parquet_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_parquet", + "side": "new_soviet:block/floor/planks/herringbone_parquet", + "top": "new_soviet:block/floor/planks/herringbone_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..bc8e7f3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/herringbone_sand_tiles", + "side": "new_soviet:block/sand/herringbone_sand_tiles", + "top": "new_soviet:block/sand/herringbone_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab_top.json new file mode 100644 index 0000000..98ba605 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/herringbone_sand_tiles", + "side": "new_soviet:block/sand/herringbone_sand_tiles", + "top": "new_soviet:block/sand/herringbone_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..7edeafa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/herringbone_sand_tiles", + "side": "new_soviet:block/sand/herringbone_sand_tiles", + "top": "new_soviet:block/sand/herringbone_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_inner.json new file mode 100644 index 0000000..333122f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/herringbone_sand_tiles", + "side": "new_soviet:block/sand/herringbone_sand_tiles", + "top": "new_soviet:block/sand/herringbone_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_outer.json new file mode 100644 index 0000000..99df108 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_sand_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/herringbone_sand_tiles", + "side": "new_soviet:block/sand/herringbone_sand_tiles", + "top": "new_soviet:block/sand/herringbone_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..bb50e60 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "side": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "top": "new_soviet:block/floor/planks/herringbone_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab_top.json new file mode 100644 index 0000000..a0af9b9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "side": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "top": "new_soviet:block/floor/planks/herringbone_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..0a62497 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "side": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "top": "new_soviet:block/floor/planks/herringbone_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_inner.json new file mode 100644 index 0000000..0e5b2cc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "side": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "top": "new_soviet:block/floor/planks/herringbone_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_outer.json new file mode 100644 index 0000000..98b1f15 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/herringbone_spruce_planks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "side": "new_soviet:block/floor/planks/herringbone_spruce_planks", + "top": "new_soviet:block/floor/planks/herringbone_spruce_planks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab.json new file mode 100644 index 0000000..65e65e9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_bricks", + "side": "new_soviet:block/light_blue/light_blue_bricks", + "top": "new_soviet:block/light_blue/light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab_top.json new file mode 100644 index 0000000..df7b3f3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_bricks", + "side": "new_soviet:block/light_blue/light_blue_bricks", + "top": "new_soviet:block/light_blue/light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs.json new file mode 100644 index 0000000..510091f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_bricks", + "side": "new_soviet:block/light_blue/light_blue_bricks", + "top": "new_soviet:block/light_blue/light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_inner.json new file mode 100644 index 0000000..80b4a2d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_bricks", + "side": "new_soviet:block/light_blue/light_blue_bricks", + "top": "new_soviet:block/light_blue/light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_outer.json new file mode 100644 index 0000000..4829e9f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_bricks", + "side": "new_soviet:block/light_blue/light_blue_bricks", + "top": "new_soviet:block/light_blue/light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab.json new file mode 100644 index 0000000..5f97bc4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_tiles", + "side": "new_soviet:block/light_blue/light_blue_tiles", + "top": "new_soviet:block/light_blue/light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab_top.json new file mode 100644 index 0000000..46a5d66 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_tiles", + "side": "new_soviet:block/light_blue/light_blue_tiles", + "top": "new_soviet:block/light_blue/light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs.json new file mode 100644 index 0000000..5ef807a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_tiles", + "side": "new_soviet:block/light_blue/light_blue_tiles", + "top": "new_soviet:block/light_blue/light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_inner.json new file mode 100644 index 0000000..bcf895e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_tiles", + "side": "new_soviet:block/light_blue/light_blue_tiles", + "top": "new_soviet:block/light_blue/light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_outer.json new file mode 100644 index 0000000..4af0737 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/light_blue_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/light_blue_tiles", + "side": "new_soviet:block/light_blue/light_blue_tiles", + "top": "new_soviet:block/light_blue/light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating_slab.json b/src/main/resources/assets/new_soviet/models/block/metal_plating_slab.json new file mode 100644 index 0000000..488f4ca --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/industrial/metal_plating", + "side": "new_soviet:block/industrial/metal_plating", + "top": "new_soviet:block/industrial/metal_plating" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating_slab_top.json b/src/main/resources/assets/new_soviet/models/block/metal_plating_slab_top.json new file mode 100644 index 0000000..a1c9e4d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/industrial/metal_plating", + "side": "new_soviet:block/industrial/metal_plating", + "top": "new_soviet:block/industrial/metal_plating" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs.json b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs.json new file mode 100644 index 0000000..c94d453 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/industrial/metal_plating", + "side": "new_soviet:block/industrial/metal_plating", + "top": "new_soviet:block/industrial/metal_plating" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_inner.json new file mode 100644 index 0000000..c2dae5c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/industrial/metal_plating", + "side": "new_soviet:block/industrial/metal_plating", + "top": "new_soviet:block/industrial/metal_plating" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_outer.json new file mode 100644 index 0000000..1084231 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/metal_plating_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/industrial/metal_plating", + "side": "new_soviet:block/industrial/metal_plating", + "top": "new_soviet:block/industrial/metal_plating" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..abdbaa7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab_top.json new file mode 100644 index 0000000..fe703aa --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..4445292 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_inner.json new file mode 100644 index 0000000..2e0f8dd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_outer.json new file mode 100644 index 0000000..cf62be9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_aquamarine_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "side": "new_soviet:block/aquamarine/mossy_aquamarine_tiles", + "top": "new_soviet:block/aquamarine/mossy_aquamarine_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..0c05c23 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/mossy_brick_tiles", + "side": "new_soviet:block/brick/mossy_brick_tiles", + "top": "new_soviet:block/brick/mossy_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab_top.json new file mode 100644 index 0000000..382ad01 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/mossy_brick_tiles", + "side": "new_soviet:block/brick/mossy_brick_tiles", + "top": "new_soviet:block/brick/mossy_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..e1637e5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_brick_tiles", + "side": "new_soviet:block/brick/mossy_brick_tiles", + "top": "new_soviet:block/brick/mossy_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..8ee9006 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_brick_tiles", + "side": "new_soviet:block/brick/mossy_brick_tiles", + "top": "new_soviet:block/brick/mossy_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..2f2816e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_brick_tiles", + "side": "new_soviet:block/brick/mossy_brick_tiles", + "top": "new_soviet:block/brick/mossy_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..a3ad33a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/calcite/mossy_calcite_tiles", + "side": "new_soviet:block/calcite/mossy_calcite_tiles", + "top": "new_soviet:block/calcite/mossy_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab_top.json new file mode 100644 index 0000000..dae13b0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/calcite/mossy_calcite_tiles", + "side": "new_soviet:block/calcite/mossy_calcite_tiles", + "top": "new_soviet:block/calcite/mossy_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..a971aae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/calcite/mossy_calcite_tiles", + "side": "new_soviet:block/calcite/mossy_calcite_tiles", + "top": "new_soviet:block/calcite/mossy_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_inner.json new file mode 100644 index 0000000..337bb00 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/mossy_calcite_tiles", + "side": "new_soviet:block/calcite/mossy_calcite_tiles", + "top": "new_soviet:block/calcite/mossy_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_outer.json new file mode 100644 index 0000000..c94dff1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_calcite_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/calcite/mossy_calcite_tiles", + "side": "new_soviet:block/calcite/mossy_calcite_tiles", + "top": "new_soviet:block/calcite/mossy_calcite_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..5b58e88 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/brick/mossy_dark_brick_tiles", + "side": "new_soviet:block/brick/mossy_dark_brick_tiles", + "top": "new_soviet:block/brick/mossy_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab_top.json new file mode 100644 index 0000000..a49782b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/brick/mossy_dark_brick_tiles", + "side": "new_soviet:block/brick/mossy_dark_brick_tiles", + "top": "new_soviet:block/brick/mossy_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..11926eb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_dark_brick_tiles", + "side": "new_soviet:block/brick/mossy_dark_brick_tiles", + "top": "new_soviet:block/brick/mossy_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_inner.json new file mode 100644 index 0000000..fc022f7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_dark_brick_tiles", + "side": "new_soviet:block/brick/mossy_dark_brick_tiles", + "top": "new_soviet:block/brick/mossy_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_outer.json new file mode 100644 index 0000000..2a97591 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dark_brick_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/brick/mossy_dark_brick_tiles", + "side": "new_soviet:block/brick/mossy_dark_brick_tiles", + "top": "new_soviet:block/brick/mossy_dark_brick_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..1bebc31 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "side": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "top": "new_soviet:block/deepslate/mossy_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab_top.json new file mode 100644 index 0000000..02630b0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "side": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "top": "new_soviet:block/deepslate/mossy_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..d26d6f8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "side": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "top": "new_soviet:block/deepslate/mossy_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_inner.json new file mode 100644 index 0000000..589d13c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "side": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "top": "new_soviet:block/deepslate/mossy_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_outer.json new file mode 100644 index 0000000..4becff5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_deepslate_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "side": "new_soviet:block/deepslate/mossy_deepslate_tiles", + "top": "new_soviet:block/deepslate/mossy_deepslate_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..cf7a9fe --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/diorite/mossy_diorite_bricks", + "side": "new_soviet:block/diorite/mossy_diorite_bricks", + "top": "new_soviet:block/diorite/mossy_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab_top.json new file mode 100644 index 0000000..6459a59 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/diorite/mossy_diorite_bricks", + "side": "new_soviet:block/diorite/mossy_diorite_bricks", + "top": "new_soviet:block/diorite/mossy_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..b12597f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/diorite/mossy_diorite_bricks", + "side": "new_soviet:block/diorite/mossy_diorite_bricks", + "top": "new_soviet:block/diorite/mossy_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_inner.json new file mode 100644 index 0000000..b653d0a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/mossy_diorite_bricks", + "side": "new_soviet:block/diorite/mossy_diorite_bricks", + "top": "new_soviet:block/diorite/mossy_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_outer.json new file mode 100644 index 0000000..111cee3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_diorite_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/diorite/mossy_diorite_bricks", + "side": "new_soviet:block/diorite/mossy_diorite_bricks", + "top": "new_soviet:block/diorite/mossy_diorite_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..840d2ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "side": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "top": "new_soviet:block/dripstone/mossy_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab_top.json new file mode 100644 index 0000000..33140de --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "side": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "top": "new_soviet:block/dripstone/mossy_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..c2c0dd4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "side": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "top": "new_soviet:block/dripstone/mossy_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_inner.json new file mode 100644 index 0000000..d0bd7df --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "side": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "top": "new_soviet:block/dripstone/mossy_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_outer.json new file mode 100644 index 0000000..3b83b90 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_dripstone_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "side": "new_soviet:block/dripstone/mossy_dripstone_tiles", + "top": "new_soviet:block/dripstone/mossy_dripstone_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..772fc48 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks_with_any", + "side": "new_soviet:block/green/mossy_green_bricks_with_any", + "top": "new_soviet:block/green/mossy_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab_top.json new file mode 100644 index 0000000..3fdbc17 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks_with_any", + "side": "new_soviet:block/green/mossy_green_bricks_with_any", + "top": "new_soviet:block/green/mossy_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..0877c95 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks_with_any", + "side": "new_soviet:block/green/mossy_green_bricks_with_any", + "top": "new_soviet:block/green/mossy_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_inner.json new file mode 100644 index 0000000..7a1ad7c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks_with_any", + "side": "new_soviet:block/green/mossy_green_bricks_with_any", + "top": "new_soviet:block/green/mossy_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_outer.json new file mode 100644 index 0000000..30229b4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_2_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks_with_any", + "side": "new_soviet:block/green/mossy_green_bricks_with_any", + "top": "new_soviet:block/green/mossy_green_bricks_with_any" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab.json new file mode 100644 index 0000000..61b796f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks", + "side": "new_soviet:block/green/mossy_green_bricks", + "top": "new_soviet:block/green/mossy_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab_top.json new file mode 100644 index 0000000..d7e33e0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks", + "side": "new_soviet:block/green/mossy_green_bricks", + "top": "new_soviet:block/green/mossy_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..2215fa9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks", + "side": "new_soviet:block/green/mossy_green_bricks", + "top": "new_soviet:block/green/mossy_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_inner.json new file mode 100644 index 0000000..34460ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks", + "side": "new_soviet:block/green/mossy_green_bricks", + "top": "new_soviet:block/green/mossy_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_outer.json new file mode 100644 index 0000000..6c5ce88 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green/mossy_green_bricks", + "side": "new_soviet:block/green/mossy_green_bricks", + "top": "new_soviet:block/green/mossy_green_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..a4dc22b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/green_white/mossy_green_white_tiles", + "side": "new_soviet:block/green_white/mossy_green_white_tiles", + "top": "new_soviet:block/green_white/mossy_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab_top.json new file mode 100644 index 0000000..8d039a7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/green_white/mossy_green_white_tiles", + "side": "new_soviet:block/green_white/mossy_green_white_tiles", + "top": "new_soviet:block/green_white/mossy_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..5f77e00 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/green_white/mossy_green_white_tiles", + "side": "new_soviet:block/green_white/mossy_green_white_tiles", + "top": "new_soviet:block/green_white/mossy_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_inner.json new file mode 100644 index 0000000..e23af7f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/mossy_green_white_tiles", + "side": "new_soviet:block/green_white/mossy_green_white_tiles", + "top": "new_soviet:block/green_white/mossy_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_outer.json new file mode 100644 index 0000000..d62efb9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_green_white_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/green_white/mossy_green_white_tiles", + "side": "new_soviet:block/green_white/mossy_green_white_tiles", + "top": "new_soviet:block/green_white/mossy_green_white_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..170cd8f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "side": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "top": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab_top.json new file mode 100644 index 0000000..83b32ef --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "side": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "top": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..8c08be7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "side": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "top": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_inner.json new file mode 100644 index 0000000..f792812 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "side": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "top": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_outer.json new file mode 100644 index 0000000..76b1fe3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "side": "new_soviet:block/light_blue/mossy_light_blue_bricks", + "top": "new_soviet:block/light_blue/mossy_light_blue_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..2929d1b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "side": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "top": "new_soviet:block/light_blue/mossy_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab_top.json new file mode 100644 index 0000000..63caf1b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "side": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "top": "new_soviet:block/light_blue/mossy_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..078c4ed --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "side": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "top": "new_soviet:block/light_blue/mossy_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_inner.json new file mode 100644 index 0000000..ec1968f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "side": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "top": "new_soviet:block/light_blue/mossy_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_outer.json new file mode 100644 index 0000000..e83a14d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_light_blue_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "side": "new_soviet:block/light_blue/mossy_light_blue_tiles", + "top": "new_soviet:block/light_blue/mossy_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab.json new file mode 100644 index 0000000..6ce255d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/red/mossy_red_bricks", + "side": "new_soviet:block/red/mossy_red_bricks", + "top": "new_soviet:block/red/mossy_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab_top.json new file mode 100644 index 0000000..b5bafda --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/red/mossy_red_bricks", + "side": "new_soviet:block/red/mossy_red_bricks", + "top": "new_soviet:block/red/mossy_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..8812723 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/red/mossy_red_bricks", + "side": "new_soviet:block/red/mossy_red_bricks", + "top": "new_soviet:block/red/mossy_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_inner.json new file mode 100644 index 0000000..815f144 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/red/mossy_red_bricks", + "side": "new_soviet:block/red/mossy_red_bricks", + "top": "new_soviet:block/red/mossy_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_outer.json new file mode 100644 index 0000000..4c546f0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_red_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/red/mossy_red_bricks", + "side": "new_soviet:block/red/mossy_red_bricks", + "top": "new_soviet:block/red/mossy_red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..16f1f3f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_bricks", + "side": "new_soviet:block/sand/mossy_sand_bricks", + "top": "new_soviet:block/sand/mossy_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab_top.json new file mode 100644 index 0000000..e2f5b10 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_bricks", + "side": "new_soviet:block/sand/mossy_sand_bricks", + "top": "new_soviet:block/sand/mossy_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..76db1ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_bricks", + "side": "new_soviet:block/sand/mossy_sand_bricks", + "top": "new_soviet:block/sand/mossy_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_inner.json new file mode 100644 index 0000000..b87cc4f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_bricks", + "side": "new_soviet:block/sand/mossy_sand_bricks", + "top": "new_soviet:block/sand/mossy_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_outer.json new file mode 100644 index 0000000..b4cf12c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_bricks", + "side": "new_soviet:block/sand/mossy_sand_bricks", + "top": "new_soviet:block/sand/mossy_sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..93bda40 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_tiles", + "side": "new_soviet:block/sand/mossy_sand_tiles", + "top": "new_soviet:block/sand/mossy_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab_top.json new file mode 100644 index 0000000..410f4df --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_tiles", + "side": "new_soviet:block/sand/mossy_sand_tiles", + "top": "new_soviet:block/sand/mossy_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..7705e3b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_tiles", + "side": "new_soviet:block/sand/mossy_sand_tiles", + "top": "new_soviet:block/sand/mossy_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_inner.json new file mode 100644 index 0000000..d8828cc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_tiles", + "side": "new_soviet:block/sand/mossy_sand_tiles", + "top": "new_soviet:block/sand/mossy_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_outer.json new file mode 100644 index 0000000..8ff0ecc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_sand_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/mossy_sand_tiles", + "side": "new_soviet:block/sand/mossy_sand_tiles", + "top": "new_soviet:block/sand/mossy_sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..b7e05a5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/teal/mossy_teal_tiles", + "side": "new_soviet:block/teal/mossy_teal_tiles", + "top": "new_soviet:block/teal/mossy_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab_top.json new file mode 100644 index 0000000..56e9be5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/teal/mossy_teal_tiles", + "side": "new_soviet:block/teal/mossy_teal_tiles", + "top": "new_soviet:block/teal/mossy_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..47e47fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/teal/mossy_teal_tiles", + "side": "new_soviet:block/teal/mossy_teal_tiles", + "top": "new_soviet:block/teal/mossy_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_inner.json new file mode 100644 index 0000000..4356972 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/teal/mossy_teal_tiles", + "side": "new_soviet:block/teal/mossy_teal_tiles", + "top": "new_soviet:block/teal/mossy_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_outer.json new file mode 100644 index 0000000..d635d00 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_teal_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/teal/mossy_teal_tiles", + "side": "new_soviet:block/teal/mossy_teal_tiles", + "top": "new_soviet:block/teal/mossy_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..27d2e0a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_bricks", + "side": "new_soviet:block/tuff/mossy_tuff_bricks", + "top": "new_soviet:block/tuff/mossy_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab_top.json new file mode 100644 index 0000000..a7c7439 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_bricks", + "side": "new_soviet:block/tuff/mossy_tuff_bricks", + "top": "new_soviet:block/tuff/mossy_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..92a1e6c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_bricks", + "side": "new_soviet:block/tuff/mossy_tuff_bricks", + "top": "new_soviet:block/tuff/mossy_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_inner.json new file mode 100644 index 0000000..b019b10 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_bricks", + "side": "new_soviet:block/tuff/mossy_tuff_bricks", + "top": "new_soviet:block/tuff/mossy_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_outer.json new file mode 100644 index 0000000..33d8bdb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_bricks", + "side": "new_soviet:block/tuff/mossy_tuff_bricks", + "top": "new_soviet:block/tuff/mossy_tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..5f2d934 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_tiles", + "side": "new_soviet:block/tuff/mossy_tuff_tiles", + "top": "new_soviet:block/tuff/mossy_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab_top.json new file mode 100644 index 0000000..46e8de7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_tiles", + "side": "new_soviet:block/tuff/mossy_tuff_tiles", + "top": "new_soviet:block/tuff/mossy_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..adc30fc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_tiles", + "side": "new_soviet:block/tuff/mossy_tuff_tiles", + "top": "new_soviet:block/tuff/mossy_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_inner.json new file mode 100644 index 0000000..0c4e3db --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_tiles", + "side": "new_soviet:block/tuff/mossy_tuff_tiles", + "top": "new_soviet:block/tuff/mossy_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_outer.json new file mode 100644 index 0000000..245ee0a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/mossy_tuff_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/mossy_tuff_tiles", + "side": "new_soviet:block/tuff/mossy_tuff_tiles", + "top": "new_soviet:block/tuff/mossy_tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor_slab.json b/src/main/resources/assets/new_soviet/models/block/nii_floor_slab.json new file mode 100644 index 0000000..a2c7618 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/research_institute/nii_floor", + "side": "new_soviet:block/research_institute/nii_floor", + "top": "new_soviet:block/research_institute/nii_floor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor_slab_top.json b/src/main/resources/assets/new_soviet/models/block/nii_floor_slab_top.json new file mode 100644 index 0000000..c64bab4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/research_institute/nii_floor", + "side": "new_soviet:block/research_institute/nii_floor", + "top": "new_soviet:block/research_institute/nii_floor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs.json b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs.json new file mode 100644 index 0000000..7efe9c4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/research_institute/nii_floor", + "side": "new_soviet:block/research_institute/nii_floor", + "top": "new_soviet:block/research_institute/nii_floor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_inner.json new file mode 100644 index 0000000..14c2e94 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/research_institute/nii_floor", + "side": "new_soviet:block/research_institute/nii_floor", + "top": "new_soviet:block/research_institute/nii_floor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_outer.json new file mode 100644 index 0000000..7c69143 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/nii_floor_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/research_institute/nii_floor", + "side": "new_soviet:block/research_institute/nii_floor", + "top": "new_soviet:block/research_institute/nii_floor" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab.json new file mode 100644 index 0000000..da8b534 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/orange_linoleum", + "side": "new_soviet:block/floor/linoleum/orange_linoleum", + "top": "new_soviet:block/floor/linoleum/orange_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab_top.json new file mode 100644 index 0000000..b6177c7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/orange_linoleum", + "side": "new_soviet:block/floor/linoleum/orange_linoleum", + "top": "new_soviet:block/floor/linoleum/orange_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs.json new file mode 100644 index 0000000..78f39d9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/orange_linoleum", + "side": "new_soviet:block/floor/linoleum/orange_linoleum", + "top": "new_soviet:block/floor/linoleum/orange_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_inner.json new file mode 100644 index 0000000..b45cf80 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/orange_linoleum", + "side": "new_soviet:block/floor/linoleum/orange_linoleum", + "top": "new_soviet:block/floor/linoleum/orange_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_outer.json new file mode 100644 index 0000000..636ec46 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/orange_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/orange_linoleum", + "side": "new_soviet:block/floor/linoleum/orange_linoleum", + "top": "new_soviet:block/floor/linoleum/orange_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/red_bricks_slab.json new file mode 100644 index 0000000..d9126ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/red/red_bricks", + "side": "new_soviet:block/red/red_bricks", + "top": "new_soviet:block/red/red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/red_bricks_slab_top.json new file mode 100644 index 0000000..8dee409 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/red/red_bricks", + "side": "new_soviet:block/red/red_bricks", + "top": "new_soviet:block/red/red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs.json new file mode 100644 index 0000000..ade2b12 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/red/red_bricks", + "side": "new_soviet:block/red/red_bricks", + "top": "new_soviet:block/red/red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_inner.json new file mode 100644 index 0000000..7f6f87c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/red/red_bricks", + "side": "new_soviet:block/red/red_bricks", + "top": "new_soviet:block/red/red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_outer.json new file mode 100644 index 0000000..cd46145 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/red/red_bricks", + "side": "new_soviet:block/red/red_bricks", + "top": "new_soviet:block/red/red_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/red_concrete_slab.json new file mode 100644 index 0000000..dc1cea9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/red_concrete", + "side": "new_soviet:block/concrete/red_concrete", + "top": "new_soviet:block/concrete/red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/red_concrete_slab_top.json new file mode 100644 index 0000000..0b0c2b3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/red_concrete", + "side": "new_soviet:block/concrete/red_concrete", + "top": "new_soviet:block/concrete/red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs.json new file mode 100644 index 0000000..629df12 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/red_concrete", + "side": "new_soviet:block/concrete/red_concrete", + "top": "new_soviet:block/concrete/red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_inner.json new file mode 100644 index 0000000..42de0f9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/red_concrete", + "side": "new_soviet:block/concrete/red_concrete", + "top": "new_soviet:block/concrete/red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_outer.json new file mode 100644 index 0000000..54f9928 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/red_concrete", + "side": "new_soviet:block/concrete/red_concrete", + "top": "new_soviet:block/concrete/red_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab.json new file mode 100644 index 0000000..20e3708 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/red_linoleum", + "side": "new_soviet:block/floor/linoleum/red_linoleum", + "top": "new_soviet:block/floor/linoleum/red_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab_top.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab_top.json new file mode 100644 index 0000000..2235a51 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/red_linoleum", + "side": "new_soviet:block/floor/linoleum/red_linoleum", + "top": "new_soviet:block/floor/linoleum/red_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs.json new file mode 100644 index 0000000..defb329 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/red_linoleum", + "side": "new_soviet:block/floor/linoleum/red_linoleum", + "top": "new_soviet:block/floor/linoleum/red_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_inner.json new file mode 100644 index 0000000..d683f1f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/red_linoleum", + "side": "new_soviet:block/floor/linoleum/red_linoleum", + "top": "new_soviet:block/floor/linoleum/red_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_outer.json new file mode 100644 index 0000000..a265e35 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/red_linoleum_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/linoleum/red_linoleum", + "side": "new_soviet:block/floor/linoleum/red_linoleum", + "top": "new_soviet:block/floor/linoleum/red_linoleum" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab.json new file mode 100644 index 0000000..4546c37 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/sand_bricks", + "side": "new_soviet:block/sand/sand_bricks", + "top": "new_soviet:block/sand/sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab_top.json new file mode 100644 index 0000000..4fbaddc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/sand_bricks", + "side": "new_soviet:block/sand/sand_bricks", + "top": "new_soviet:block/sand/sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs.json new file mode 100644 index 0000000..4fd3d48 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_bricks", + "side": "new_soviet:block/sand/sand_bricks", + "top": "new_soviet:block/sand/sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_inner.json new file mode 100644 index 0000000..fb76bf4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_bricks", + "side": "new_soviet:block/sand/sand_bricks", + "top": "new_soviet:block/sand/sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_outer.json new file mode 100644 index 0000000..7c2c997 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_bricks", + "side": "new_soviet:block/sand/sand_bricks", + "top": "new_soviet:block/sand/sand_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab.json new file mode 100644 index 0000000..2dac22f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/sand/sand_tiles", + "side": "new_soviet:block/sand/sand_tiles", + "top": "new_soviet:block/sand/sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab_top.json new file mode 100644 index 0000000..dac601a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/sand/sand_tiles", + "side": "new_soviet:block/sand/sand_tiles", + "top": "new_soviet:block/sand/sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs.json new file mode 100644 index 0000000..7bc5b5b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_tiles", + "side": "new_soviet:block/sand/sand_tiles", + "top": "new_soviet:block/sand/sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_inner.json new file mode 100644 index 0000000..bfbf35d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_tiles", + "side": "new_soviet:block/sand/sand_tiles", + "top": "new_soviet:block/sand/sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_outer.json new file mode 100644 index 0000000..ac4876f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/sand_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/sand/sand_tiles", + "side": "new_soviet:block/sand/sand_tiles", + "top": "new_soviet:block/sand/sand_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab.json new file mode 100644 index 0000000..60ccdb7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/separated_parquet", + "side": "new_soviet:block/floor/planks/separated_parquet", + "top": "new_soviet:block/floor/planks/separated_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab_top.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab_top.json new file mode 100644 index 0000000..d7db9b8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/separated_parquet", + "side": "new_soviet:block/floor/planks/separated_parquet", + "top": "new_soviet:block/floor/planks/separated_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs.json new file mode 100644 index 0000000..4968416 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/separated_parquet", + "side": "new_soviet:block/floor/planks/separated_parquet", + "top": "new_soviet:block/floor/planks/separated_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_inner.json new file mode 100644 index 0000000..f5e7d17 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/separated_parquet", + "side": "new_soviet:block/floor/planks/separated_parquet", + "top": "new_soviet:block/floor/planks/separated_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_outer.json new file mode 100644 index 0000000..244914d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/separated_parquet_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/separated_parquet", + "side": "new_soviet:block/floor/planks/separated_parquet", + "top": "new_soviet:block/floor/planks/separated_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab.json new file mode 100644 index 0000000..f56879d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/floor/planks/straight_parquet", + "side": "new_soviet:block/floor/planks/straight_parquet", + "top": "new_soviet:block/floor/planks/straight_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab_top.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab_top.json new file mode 100644 index 0000000..fe65e12 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/floor/planks/straight_parquet", + "side": "new_soviet:block/floor/planks/straight_parquet", + "top": "new_soviet:block/floor/planks/straight_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs.json new file mode 100644 index 0000000..86494be --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/straight_parquet", + "side": "new_soviet:block/floor/planks/straight_parquet", + "top": "new_soviet:block/floor/planks/straight_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_inner.json new file mode 100644 index 0000000..54beab5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/straight_parquet", + "side": "new_soviet:block/floor/planks/straight_parquet", + "top": "new_soviet:block/floor/planks/straight_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_outer.json new file mode 100644 index 0000000..99099a6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/straight_parquet_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/floor/planks/straight_parquet", + "side": "new_soviet:block/floor/planks/straight_parquet", + "top": "new_soviet:block/floor/planks/straight_parquet" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab.json new file mode 100644 index 0000000..6dc70f2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/teal/teal_tiles", + "side": "new_soviet:block/teal/teal_tiles", + "top": "new_soviet:block/teal/teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab_top.json new file mode 100644 index 0000000..81f78c0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/teal/teal_tiles", + "side": "new_soviet:block/teal/teal_tiles", + "top": "new_soviet:block/teal/teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs.json new file mode 100644 index 0000000..5a892c4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/teal/teal_tiles", + "side": "new_soviet:block/teal/teal_tiles", + "top": "new_soviet:block/teal/teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_inner.json new file mode 100644 index 0000000..d65be4a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/teal/teal_tiles", + "side": "new_soviet:block/teal/teal_tiles", + "top": "new_soviet:block/teal/teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_outer.json new file mode 100644 index 0000000..fbe39c0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/teal_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/teal/teal_tiles", + "side": "new_soviet:block/teal/teal_tiles", + "top": "new_soviet:block/teal/teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab.json new file mode 100644 index 0000000..66cd773 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_bricks", + "side": "new_soviet:block/tuff/tuff_bricks", + "top": "new_soviet:block/tuff/tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab_top.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab_top.json new file mode 100644 index 0000000..d07a54a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_bricks", + "side": "new_soviet:block/tuff/tuff_bricks", + "top": "new_soviet:block/tuff/tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs.json new file mode 100644 index 0000000..4429c22 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_bricks", + "side": "new_soviet:block/tuff/tuff_bricks", + "top": "new_soviet:block/tuff/tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_inner.json new file mode 100644 index 0000000..7d6b56e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_bricks", + "side": "new_soviet:block/tuff/tuff_bricks", + "top": "new_soviet:block/tuff/tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_outer.json new file mode 100644 index 0000000..56ffa30 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_bricks_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_bricks", + "side": "new_soviet:block/tuff/tuff_bricks", + "top": "new_soviet:block/tuff/tuff_bricks" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab.json new file mode 100644 index 0000000..20c2a12 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_tiles", + "side": "new_soviet:block/tuff/tuff_tiles", + "top": "new_soviet:block/tuff/tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab_top.json new file mode 100644 index 0000000..3179dc6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_tiles", + "side": "new_soviet:block/tuff/tuff_tiles", + "top": "new_soviet:block/tuff/tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs.json new file mode 100644 index 0000000..5f7c605 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_tiles", + "side": "new_soviet:block/tuff/tuff_tiles", + "top": "new_soviet:block/tuff/tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_inner.json new file mode 100644 index 0000000..559e397 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_tiles", + "side": "new_soviet:block/tuff/tuff_tiles", + "top": "new_soviet:block/tuff/tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_outer.json new file mode 100644 index 0000000..17c7818 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/tuff_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/tuff/tuff_tiles", + "side": "new_soviet:block/tuff/tuff_tiles", + "top": "new_soviet:block/tuff/tuff_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..765ced6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/light_blue/variated_light_blue_tiles", + "side": "new_soviet:block/light_blue/variated_light_blue_tiles", + "top": "new_soviet:block/light_blue/variated_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab_top.json new file mode 100644 index 0000000..e07afef --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/light_blue/variated_light_blue_tiles", + "side": "new_soviet:block/light_blue/variated_light_blue_tiles", + "top": "new_soviet:block/light_blue/variated_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..5b88220 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated_light_blue_tiles", + "side": "new_soviet:block/light_blue/variated_light_blue_tiles", + "top": "new_soviet:block/light_blue/variated_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_inner.json new file mode 100644 index 0000000..f2eb6c9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated_light_blue_tiles", + "side": "new_soviet:block/light_blue/variated_light_blue_tiles", + "top": "new_soviet:block/light_blue/variated_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_outer.json new file mode 100644 index 0000000..ba379bf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_light_blue_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/light_blue/variated_light_blue_tiles", + "side": "new_soviet:block/light_blue/variated_light_blue_tiles", + "top": "new_soviet:block/light_blue/variated_light_blue_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab.json new file mode 100644 index 0000000..18a712f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/teal/variated_teal_tiles", + "side": "new_soviet:block/teal/variated_teal_tiles", + "top": "new_soviet:block/teal/variated_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab_top.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab_top.json new file mode 100644 index 0000000..0611016 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/teal/variated_teal_tiles", + "side": "new_soviet:block/teal/variated_teal_tiles", + "top": "new_soviet:block/teal/variated_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..91ea8ed --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/teal/variated_teal_tiles", + "side": "new_soviet:block/teal/variated_teal_tiles", + "top": "new_soviet:block/teal/variated_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_inner.json new file mode 100644 index 0000000..b621c1e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/teal/variated_teal_tiles", + "side": "new_soviet:block/teal/variated_teal_tiles", + "top": "new_soviet:block/teal/variated_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_outer.json new file mode 100644 index 0000000..d1b2d38 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/variated_teal_tiles_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/teal/variated_teal_tiles", + "side": "new_soviet:block/teal/variated_teal_tiles", + "top": "new_soviet:block/teal/variated_teal_tiles" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/white_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/white_concrete_slab.json new file mode 100644 index 0000000..476a334 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/white_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/white_concrete", + "side": "new_soviet:block/concrete/white_concrete", + "top": "new_soviet:block/concrete/white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/white_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/white_concrete_slab_top.json new file mode 100644 index 0000000..254f2bf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/white_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/white_concrete", + "side": "new_soviet:block/concrete/white_concrete", + "top": "new_soviet:block/concrete/white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs.json new file mode 100644 index 0000000..fb58596 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/white_concrete", + "side": "new_soviet:block/concrete/white_concrete", + "top": "new_soviet:block/concrete/white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_inner.json new file mode 100644 index 0000000..f681a60 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/white_concrete", + "side": "new_soviet:block/concrete/white_concrete", + "top": "new_soviet:block/concrete/white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_outer.json new file mode 100644 index 0000000..e63ef0b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/white_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/white_concrete", + "side": "new_soviet:block/concrete/white_concrete", + "top": "new_soviet:block/concrete/white_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab.json new file mode 100644 index 0000000..0fb6282 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "new_soviet:block/concrete/yellow_concrete", + "side": "new_soviet:block/concrete/yellow_concrete", + "top": "new_soviet:block/concrete/yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab_top.json b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab_top.json new file mode 100644 index 0000000..cd9ff4b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "new_soviet:block/concrete/yellow_concrete", + "side": "new_soviet:block/concrete/yellow_concrete", + "top": "new_soviet:block/concrete/yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs.json new file mode 100644 index 0000000..2acb05d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "new_soviet:block/concrete/yellow_concrete", + "side": "new_soviet:block/concrete/yellow_concrete", + "top": "new_soviet:block/concrete/yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_inner.json b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_inner.json new file mode 100644 index 0000000..18079b5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/yellow_concrete", + "side": "new_soviet:block/concrete/yellow_concrete", + "top": "new_soviet:block/concrete/yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_outer.json b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_outer.json new file mode 100644 index 0000000..aa0ffc9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/block/yellow_concrete_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "new_soviet:block/concrete/yellow_concrete", + "side": "new_soviet:block/concrete/yellow_concrete", + "top": "new_soviet:block/concrete/yellow_concrete" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_slab.json new file mode 100644 index 0000000..109ef92 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/aquamarine_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_stairs.json new file mode 100644 index 0000000..b00a654 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/aquamarine_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/aquamarine_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/beige_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/beige_concrete_slab.json new file mode 100644 index 0000000..4774c24 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/beige_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/beige_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/beige_concrete_stairs.json new file mode 100644 index 0000000..8fe1110 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/beige_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/beige_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_slab.json new file mode 100644 index 0000000..8ddc118 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/big_sand_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_stairs.json new file mode 100644 index 0000000..8dd07b3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/big_sand_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/big_sand_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/blue_concrete_slab.json new file mode 100644 index 0000000..f5c09bb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/blue_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/blue_concrete_stairs.json new file mode 100644 index 0000000..f4a3777 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/blue_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/blue_linoleum_slab.json new file mode 100644 index 0000000..37b1dc9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/blue_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/blue_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/blue_linoleum_stairs.json new file mode 100644 index 0000000..04c85cc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/blue_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/blue_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/brick_tiles_slab.json new file mode 100644 index 0000000..b6119dc --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/brick_tiles_stairs.json new file mode 100644 index 0000000..696dae8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/brown_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/brown_linoleum_slab.json new file mode 100644 index 0000000..8a5263d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/brown_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/brown_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/brown_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/brown_linoleum_stairs.json new file mode 100644 index 0000000..00423f6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/brown_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/brown_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/calcite_tiles_slab.json new file mode 100644 index 0000000..37aa6e6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/calcite_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/calcite_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/calcite_tiles_stairs.json new file mode 100644 index 0000000..00feadb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/calcite_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/calcite_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_slab.json new file mode 100644 index 0000000..f701e84 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_aquamarine_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..0c2d299 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_aquamarine_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_aquamarine_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_slab.json new file mode 100644 index 0000000..5f0bdb2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_beige_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_stairs.json new file mode 100644 index 0000000..616a11e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_beige_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_beige_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_slab.json new file mode 100644 index 0000000..e0a64eb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_blue_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_stairs.json new file mode 100644 index 0000000..d0131f9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_blue_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_blue_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_slab.json new file mode 100644 index 0000000..fb8e237 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_stairs.json new file mode 100644 index 0000000..caaf4cb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_slab.json new file mode 100644 index 0000000..17f8e84 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_calcite_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_stairs.json new file mode 100644 index 0000000..8f1ce16 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_calcite_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_calcite_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_slab.json new file mode 100644 index 0000000..29b0305 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_dark_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..5f3b478 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_dark_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_dark_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_slab.json new file mode 100644 index 0000000..7ea85af --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_deepslate_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_stairs.json new file mode 100644 index 0000000..585aff1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_deepslate_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_deepslate_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_slab.json new file mode 100644 index 0000000..3cb25d7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_diorite_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_stairs.json new file mode 100644 index 0000000..f31f60c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_diorite_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_diorite_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_slab.json new file mode 100644 index 0000000..d2f6cf0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_dripstone_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_stairs.json new file mode 100644 index 0000000..ad22ecf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_dripstone_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_dripstone_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_slab.json new file mode 100644 index 0000000..9765884 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_bricks_2_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_stairs.json new file mode 100644 index 0000000..f5e6198 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_2_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_bricks_2_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_slab.json new file mode 100644 index 0000000..b79f1cd --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_stairs.json new file mode 100644 index 0000000..a5fa181 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_slab.json new file mode 100644 index 0000000..97741b0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_stairs.json new file mode 100644 index 0000000..7bf7e37 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_slab.json new file mode 100644 index 0000000..ba86297 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_white_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_stairs.json new file mode 100644 index 0000000..0e46a8e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_green_white_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_green_white_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_slab.json new file mode 100644 index 0000000..18f7e84 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_light_blue_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_stairs.json new file mode 100644 index 0000000..7144d55 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_light_blue_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_slab.json new file mode 100644 index 0000000..f830c85 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_light_blue_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_stairs.json new file mode 100644 index 0000000..ddabe07 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_light_blue_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_light_blue_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_slab.json new file mode 100644 index 0000000..0f83840 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_red_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_stairs.json new file mode 100644 index 0000000..63443ec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_red_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_red_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_slab.json new file mode 100644 index 0000000..e2dc3c7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_red_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_stairs.json new file mode 100644 index 0000000..6763b2c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_red_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_red_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_slab.json new file mode 100644 index 0000000..ea40432 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_sand_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_stairs.json new file mode 100644 index 0000000..4898128 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_sand_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_sand_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_slab.json new file mode 100644 index 0000000..b8e3fef --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_sand_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_stairs.json new file mode 100644 index 0000000..b530932 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_sand_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_sand_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_slab.json new file mode 100644 index 0000000..a8612d4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_teal_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_stairs.json new file mode 100644 index 0000000..2a3b46e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_teal_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_teal_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_slab.json new file mode 100644 index 0000000..a5c368c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_tuff_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_stairs.json new file mode 100644 index 0000000..a2aa14e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_tuff_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_slab.json new file mode 100644 index 0000000..708dd52 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_tuff_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_stairs.json new file mode 100644 index 0000000..687dee4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_tuff_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_tuff_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_slab.json new file mode 100644 index 0000000..808a1a3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_white_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_stairs.json new file mode 100644 index 0000000..6407aba --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_white_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_white_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_slab.json new file mode 100644 index 0000000..69a3900 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_yellow_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_stairs.json new file mode 100644 index 0000000..342e4d3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cracked_yellow_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cracked_yellow_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_slab.json new file mode 100644 index 0000000..1146fec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_acacia_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_stairs.json new file mode 100644 index 0000000..642cde4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_acacia_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_acacia_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_slab.json new file mode 100644 index 0000000..a24472f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_birch_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_stairs.json new file mode 100644 index 0000000..0996653 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_birch_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_birch_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_slab.json new file mode 100644 index 0000000..5bbaec1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_crimson_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_stairs.json new file mode 100644 index 0000000..ef3b6fb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_crimson_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_crimson_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_slab.json new file mode 100644 index 0000000..1bb62a1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_dark_oak_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_stairs.json new file mode 100644 index 0000000..59c1946 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_dark_oak_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_dark_oak_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_slab.json new file mode 100644 index 0000000..3b0cb59 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_jungle_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_stairs.json new file mode 100644 index 0000000..7c7a052 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_jungle_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_jungle_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_slab.json new file mode 100644 index 0000000..7212218 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_mangrove_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_stairs.json new file mode 100644 index 0000000..4b7f2a5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_mangrove_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_mangrove_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_slab.json new file mode 100644 index 0000000..57812ae --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_oak_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_stairs.json new file mode 100644 index 0000000..6fdac1d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_oak_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_oak_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_slab.json new file mode 100644 index 0000000..3bd3823 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_sand_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_stairs.json new file mode 100644 index 0000000..d6431c6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_sand_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_sand_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_slab.json new file mode 100644 index 0000000..1c7012f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_spruce_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_stairs.json new file mode 100644 index 0000000..f64aae6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cross_spruce_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cross_spruce_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_slab.json new file mode 100644 index 0000000..428140e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cyan_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_stairs.json new file mode 100644 index 0000000..a24a48d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/cyan_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/cyan_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_slab.json new file mode 100644 index 0000000..2ea7c56 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dark_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_stairs.json new file mode 100644 index 0000000..4ce46fe --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dark_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dark_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_slab.json new file mode 100644 index 0000000..db477f5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/deepslate_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_stairs.json new file mode 100644 index 0000000..f39a693 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/deepslate_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/deepslate_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/diorite_bricks_slab.json new file mode 100644 index 0000000..4cc9c9c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/diorite_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/diorite_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/diorite_bricks_stairs.json new file mode 100644 index 0000000..74b9cef --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/diorite_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/diorite_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_slab.json new file mode 100644 index 0000000..68ba81c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_aquamarine_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..f761116 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_aquamarine_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_aquamarine_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_slab.json new file mode 100644 index 0000000..7f51a60 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_stairs.json new file mode 100644 index 0000000..5c5acf8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_slab.json new file mode 100644 index 0000000..e41c725 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_dark_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..ec5f0ff --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dirty_dark_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dirty_dark_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_slab.json new file mode 100644 index 0000000..bcf72fe --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dripstone_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_stairs.json new file mode 100644 index 0000000..796db9a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/dripstone_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/dripstone_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/gray_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/gray_linoleum_slab.json new file mode 100644 index 0000000..830d953 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/gray_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/gray_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/gray_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/gray_linoleum_stairs.json new file mode 100644 index 0000000..583945c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/gray_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/gray_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/item/green_bricks_2_slab.json new file mode 100644 index 0000000..9c8dba0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_bricks_2_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_bricks_2_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/item/green_bricks_2_stairs.json new file mode 100644 index 0000000..5de539a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_bricks_2_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_bricks_2_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/green_bricks_slab.json new file mode 100644 index 0000000..b6a4510 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/green_bricks_stairs.json new file mode 100644 index 0000000..e89b6a1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/green_concrete_slab.json new file mode 100644 index 0000000..3ec65a9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/green_concrete_stairs.json new file mode 100644 index 0000000..60ec9a0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/green_linoleum_slab.json new file mode 100644 index 0000000..aed686d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/green_linoleum_stairs.json new file mode 100644 index 0000000..001043d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/green_white_tiles_slab.json new file mode 100644 index 0000000..2844d35 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_white_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_white_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/green_white_tiles_stairs.json new file mode 100644 index 0000000..4bb836d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/green_white_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/green_white_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_slab.json new file mode 100644 index 0000000..15061ac --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_acacia_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_stairs.json new file mode 100644 index 0000000..1bf439f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_acacia_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_acacia_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_slab.json new file mode 100644 index 0000000..83dcbfb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_birch_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_stairs.json new file mode 100644 index 0000000..b174eaf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_birch_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_birch_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_slab.json new file mode 100644 index 0000000..f6e2522 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_crimson_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_stairs.json new file mode 100644 index 0000000..405fda2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_crimson_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_crimson_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_slab.json new file mode 100644 index 0000000..2681c72 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_dark_oak_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_stairs.json new file mode 100644 index 0000000..56a2401 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_dark_oak_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_dark_oak_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_slab.json new file mode 100644 index 0000000..fe2b9c9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_jungle_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_stairs.json new file mode 100644 index 0000000..5a416b4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_jungle_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_jungle_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_slab.json new file mode 100644 index 0000000..7332851 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_mangrove_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_stairs.json new file mode 100644 index 0000000..5cdcc74 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_mangrove_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_mangrove_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_slab.json new file mode 100644 index 0000000..138892d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_oak_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_stairs.json new file mode 100644 index 0000000..a512ed2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_oak_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_oak_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_slab.json new file mode 100644 index 0000000..0d442e8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_parquet_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_stairs.json new file mode 100644 index 0000000..4ad636b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_parquet_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_parquet_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_slab.json new file mode 100644 index 0000000..9866b45 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_sand_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_stairs.json new file mode 100644 index 0000000..d7744e7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_sand_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_sand_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_slab.json b/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_slab.json new file mode 100644 index 0000000..0e49d92 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_spruce_planks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_stairs.json b/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_stairs.json new file mode 100644 index 0000000..1ef537d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/herringbone_spruce_planks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/herringbone_spruce_planks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_slab.json new file mode 100644 index 0000000..7b80e34 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/light_blue_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_stairs.json new file mode 100644 index 0000000..824ae19 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/light_blue_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_slab.json new file mode 100644 index 0000000..5959984 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/light_blue_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_stairs.json new file mode 100644 index 0000000..71e3f65 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/light_blue_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/light_blue_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/metal_plating_slab.json b/src/main/resources/assets/new_soviet/models/item/metal_plating_slab.json new file mode 100644 index 0000000..d56d5c6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/metal_plating_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/metal_plating_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/metal_plating_stairs.json b/src/main/resources/assets/new_soviet/models/item/metal_plating_stairs.json new file mode 100644 index 0000000..686a120 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/metal_plating_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/metal_plating_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_slab.json new file mode 100644 index 0000000..d90aaf1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_aquamarine_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_stairs.json new file mode 100644 index 0000000..ad51828 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_aquamarine_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_aquamarine_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_slab.json new file mode 100644 index 0000000..a9bc07d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_stairs.json new file mode 100644 index 0000000..30f7ff1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_slab.json new file mode 100644 index 0000000..446ee4c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_calcite_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_stairs.json new file mode 100644 index 0000000..d11fdaf --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_calcite_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_calcite_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_slab.json new file mode 100644 index 0000000..e24bf97 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_dark_brick_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_stairs.json new file mode 100644 index 0000000..aa59bf9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_dark_brick_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_dark_brick_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_slab.json new file mode 100644 index 0000000..d086ee2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_deepslate_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_stairs.json new file mode 100644 index 0000000..e8b1051 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_deepslate_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_deepslate_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_slab.json new file mode 100644 index 0000000..acb448f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_diorite_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_stairs.json new file mode 100644 index 0000000..a77fc6d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_diorite_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_diorite_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_slab.json new file mode 100644 index 0000000..5e53139 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_dripstone_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_stairs.json new file mode 100644 index 0000000..c46d4be --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_dripstone_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_dripstone_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_slab.json new file mode 100644 index 0000000..60f8e2c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_bricks_2_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_stairs.json new file mode 100644 index 0000000..9a0bfb5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_2_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_bricks_2_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_slab.json new file mode 100644 index 0000000..70141c0 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_stairs.json new file mode 100644 index 0000000..3933982 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_slab.json new file mode 100644 index 0000000..9357bec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_white_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_stairs.json new file mode 100644 index 0000000..4a2643b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_green_white_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_green_white_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_slab.json new file mode 100644 index 0000000..dc29de9 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_light_blue_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_stairs.json new file mode 100644 index 0000000..aa30e5c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_light_blue_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_slab.json new file mode 100644 index 0000000..baa096b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_light_blue_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_stairs.json new file mode 100644 index 0000000..610dd59 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_light_blue_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_light_blue_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_slab.json new file mode 100644 index 0000000..12338f5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_red_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_stairs.json new file mode 100644 index 0000000..ae4e135 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_red_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_red_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_slab.json new file mode 100644 index 0000000..11102ee --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_sand_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_stairs.json new file mode 100644 index 0000000..0dfb8fb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_sand_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_sand_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_slab.json new file mode 100644 index 0000000..1ff9382 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_sand_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_stairs.json new file mode 100644 index 0000000..db90189 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_sand_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_sand_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_slab.json new file mode 100644 index 0000000..0d8bd8d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_teal_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_stairs.json new file mode 100644 index 0000000..ae94b4b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_teal_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_teal_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_slab.json new file mode 100644 index 0000000..41511d7 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_tuff_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_stairs.json new file mode 100644 index 0000000..aaec027 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_tuff_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_slab.json new file mode 100644 index 0000000..3c0ac8d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_tuff_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_stairs.json new file mode 100644 index 0000000..fe7bd90 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/mossy_tuff_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/mossy_tuff_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/nii_floor_slab.json b/src/main/resources/assets/new_soviet/models/item/nii_floor_slab.json new file mode 100644 index 0000000..6594e5b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/nii_floor_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/nii_floor_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/nii_floor_stairs.json b/src/main/resources/assets/new_soviet/models/item/nii_floor_stairs.json new file mode 100644 index 0000000..adb517c --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/nii_floor_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/nii_floor_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/orange_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/orange_linoleum_slab.json new file mode 100644 index 0000000..a542f4e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/orange_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/orange_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/orange_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/orange_linoleum_stairs.json new file mode 100644 index 0000000..d718795 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/orange_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/orange_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/radio.json b/src/main/resources/assets/new_soviet/models/item/radio.json deleted file mode 100644 index 2a4c2bf..0000000 --- a/src/main/resources/assets/new_soviet/models/item/radio.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "parent": "new_soviet:block/radio" -} - diff --git a/src/main/resources/assets/new_soviet/models/item/radio_receiver.json b/src/main/resources/assets/new_soviet/models/item/radio_receiver.json new file mode 100644 index 0000000..4034046 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/radio_receiver.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/radio_receiver" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/red_bricks_slab.json new file mode 100644 index 0000000..f2e83a6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/red_bricks_stairs.json new file mode 100644 index 0000000..d410516 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/red_concrete_slab.json new file mode 100644 index 0000000..974d12d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/red_concrete_stairs.json new file mode 100644 index 0000000..4d03e0b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_linoleum_slab.json b/src/main/resources/assets/new_soviet/models/item/red_linoleum_slab.json new file mode 100644 index 0000000..a2ad7d1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_linoleum_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_linoleum_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/red_linoleum_stairs.json b/src/main/resources/assets/new_soviet/models/item/red_linoleum_stairs.json new file mode 100644 index 0000000..1eaa3fb --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/red_linoleum_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/red_linoleum_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/sand_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/sand_bricks_slab.json new file mode 100644 index 0000000..4ce3fec --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/sand_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/sand_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/sand_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/sand_bricks_stairs.json new file mode 100644 index 0000000..f3d6a8a --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/sand_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/sand_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/sand_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/sand_tiles_slab.json new file mode 100644 index 0000000..cc01431 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/sand_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/sand_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/sand_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/sand_tiles_stairs.json new file mode 100644 index 0000000..7e6849e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/sand_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/sand_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/separated_parquet_slab.json b/src/main/resources/assets/new_soviet/models/item/separated_parquet_slab.json new file mode 100644 index 0000000..1348f00 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/separated_parquet_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/separated_parquet_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/separated_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/item/separated_parquet_stairs.json new file mode 100644 index 0000000..ea142e8 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/separated_parquet_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/separated_parquet_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/straight_parquet_slab.json b/src/main/resources/assets/new_soviet/models/item/straight_parquet_slab.json new file mode 100644 index 0000000..f8f8ea4 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/straight_parquet_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/straight_parquet_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/straight_parquet_stairs.json b/src/main/resources/assets/new_soviet/models/item/straight_parquet_stairs.json new file mode 100644 index 0000000..3c87d15 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/straight_parquet_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/straight_parquet_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/teal_tiles_slab.json new file mode 100644 index 0000000..93c1cde --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/teal_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/teal_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/teal_tiles_stairs.json new file mode 100644 index 0000000..88fa801 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/teal_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/teal_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_bricks_slab.json b/src/main/resources/assets/new_soviet/models/item/tuff_bricks_slab.json new file mode 100644 index 0000000..a7028d2 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_bricks_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/tuff_bricks_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_bricks_stairs.json b/src/main/resources/assets/new_soviet/models/item/tuff_bricks_stairs.json new file mode 100644 index 0000000..a6296c6 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_bricks_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/tuff_bricks_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/tuff_tiles_slab.json new file mode 100644 index 0000000..8c4b3e1 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/tuff_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/tuff_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/tuff_tiles_stairs.json new file mode 100644 index 0000000..9ddae5e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/tuff_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/tuff_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_slab.json new file mode 100644 index 0000000..4c5996d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/variated_light_blue_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_stairs.json new file mode 100644 index 0000000..1cba6b3 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/variated_light_blue_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/variated_light_blue_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_slab.json b/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_slab.json new file mode 100644 index 0000000..916c05f --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/variated_teal_tiles_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_stairs.json b/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_stairs.json new file mode 100644 index 0000000..75cab31 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/variated_teal_tiles_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/variated_teal_tiles_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/white_concrete_slab.json new file mode 100644 index 0000000..1791b9e --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/white_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/white_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/white_concrete_stairs.json new file mode 100644 index 0000000..39a3d8d --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/white_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/white_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/yellow_concrete_slab.json b/src/main/resources/assets/new_soviet/models/item/yellow_concrete_slab.json new file mode 100644 index 0000000..8b83dd5 --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/yellow_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/yellow_concrete_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/yellow_concrete_stairs.json b/src/main/resources/assets/new_soviet/models/item/yellow_concrete_stairs.json new file mode 100644 index 0000000..ba05f3b --- /dev/null +++ b/src/main/resources/assets/new_soviet/models/item/yellow_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "new_soviet:block/yellow_concrete_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/green/green_bricks_with_any_cracked.png b/src/main/resources/assets/new_soviet/textures/block/green/cracked_green_bricks_with_any.png similarity index 100% rename from src/main/resources/assets/new_soviet/textures/block/green/green_bricks_with_any_cracked.png rename to src/main/resources/assets/new_soviet/textures/block/green/cracked_green_bricks_with_any.png From b390026a1f077c018936cf8b9e0016d97feab6fb Mon Sep 17 00:00:00 2001 From: Andrew-71 Date: Wed, 30 Aug 2023 01:15:02 +0300 Subject: [PATCH 9/9] Count all missing recipes --- recipeTODO.txt | 22 +++++++++++++++++++ .../su/a71/new_soviet/DataGeneration.java | 1 + 2 files changed, 23 insertions(+) create mode 100644 recipeTODO.txt diff --git a/recipeTODO.txt b/recipeTODO.txt new file mode 100644 index 0000000..af71283 --- /dev/null +++ b/recipeTODO.txt @@ -0,0 +1,22 @@ +moss - add moss as alternative to vine +moss - allow mossing stairs and slabs +add stonecutting recipe for slabs and stairs +dirty - add dirty recipes +aquamarine recipe +whitewash recipe +concrete recipe +concrete with bars recipe +parquet recipe +linoleum recipe +metal plating recipe +crate recipe +po-2 recipe +no wallpaper recipes (intended?) +no handrail recipe +no nutrient block recipe (intended? compressed bread?) +light bulb recipe +sigarette recipe +siren recipe +no landmine recipe - intended +switch recipe +checkers and chess recipe diff --git a/src/main/java/su/a71/new_soviet/DataGeneration.java b/src/main/java/su/a71/new_soviet/DataGeneration.java index ee8054e..842999e 100644 --- a/src/main/java/su/a71/new_soviet/DataGeneration.java +++ b/src/main/java/su/a71/new_soviet/DataGeneration.java @@ -1057,6 +1057,7 @@ public class DataGeneration implements DataGeneratorEntrypoint { offerCrackingRecipe(exporter, NSE_Blocks.CRACKED_GREEN_BRICKS, NSE_Blocks.GREEN_BRICKS); offerCrackingRecipe(exporter, NSE_Blocks.CRACKED_GREEN_BRICKS_2, NSE_Blocks.GREEN_BRICKS_2); offerCrackingRecipe(exporter, NSE_Blocks.BIG_GREEN_TILES_CRACKED, NSE_Blocks.BIG_GREEN_TILES); + offerCrackingRecipe(exporter, NSE_Blocks.CRACKED_RED_BRICKS, NSE_Blocks.RED_BRICKS); // Mossy variants mossRecipe(exporter, NSE_Blocks.MOSSY_SAND_TILES, NSE_Blocks.SAND_TILES);