Fix brick filenames and improve block model files

This commit is contained in:
Andrew-71 2023-08-29 16:34:50 +03:00
parent 04b8143ff7
commit 9ba3a3cf76
171 changed files with 154 additions and 404 deletions

View file

@ -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 {

View file

@ -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);

View file

@ -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))

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/aquamarine/aquamarine_tiles",
"particle": "new_soviet:block/aquamarine/aquamarine_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/wallpapers/beige_wallpaper",
"particle": "new_soviet:block/wallpapers/beige_wallpaper"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/diorite/big_diorite_tiles",
"particle": "new_soviet:block/diorite/big_diorite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/granite/big_granite_tiles",
"particle": "new_soviet:block/granite/big_granite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/green/big_green_tiles",
"particle": "new_soviet:block/green/big_green_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/sand/big_sand_bricks",
"particle": "new_soviet:block/sand/big_sand_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/sand/big_sand_tiles",
"particle": "new_soviet:block/sand/big_sand_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/tuff/big_tuff_tiles",
"particle": "new_soviet:block/tuff/big_tuff_tiles"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/blue_warning_stripes",
"particle": "new_soviet:block/industrial/blue_warning_stripes"
}
}

View file

@ -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"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/brown_linoleum",
"particle": "new_soviet:block/floor/linoleum/brown_linoleum"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/wallpapers/brown_wallpaper",
"particle": "new_soviet:block/wallpapers/brown_wallpaper"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/calcite/calcite_tiles",
"particle": "new_soviet:block/calcite/calcite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/aquamarine/cracked_aquamarine_tiles",
"particle": "new_soviet:block/aquamarine/cracked_aquamarine_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/calcite/cracked_calcite_tiles",
"particle": "new_soviet:block/calcite/cracked_calcite_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/deepslate/cracked_deepslate_tiles",
"particle": "new_soviet:block/deepslate/cracked_deepslate_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/diorite/cracked_diorite_bricks",
"particle": "new_soviet:block/diorite/cracked_diorite_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/diorite/cracked_diorite_tiles",
"particle": "new_soviet:block/diorite/cracked_diorite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/dripstone/cracked_dripstone_tiles",
"particle": "new_soviet:block/dripstone/cracked_dripstone_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/aquamarine/cracked_glazed_aquamarine_tiles",
"particle": "new_soviet:block/aquamarine/cracked_glazed_aquamarine_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/red/cracked_glazed_red_tiles",
"particle": "new_soviet:block/red/cracked_glazed_red_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/teal/cracked_glazed_teal_tiles",
"particle": "new_soviet:block/teal/cracked_glazed_teal_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/green/cracked_green_bricks",
"particle": "new_soviet:block/green/cracked_green_bricks"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/light_blue/cracked_light_blue_tiles",
"particle": "new_soviet:block/light_blue/cracked_light_blue_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/red/cracked_red_bricks",
"particle": "new_soviet:block/red/cracked_red_bricks"
}
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/sand/cracked_sand_bricks",
"particle": "new_soviet:block/sand/cracked_sand_bricks"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/sand/cracked_sand_tiles",
"particle": "new_soviet:block/sand/cracked_sand_tiles"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/teal/cracked_teal_tiles",
"particle": "new_soviet:block/teal/cracked_teal_tiles"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/tuff/cracked_tuff_bricks",
"particle": "new_soviet:block/tuff/cracked_tuff_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/tuff/cracked_tuff_tiles",
"particle": "new_soviet:block/tuff/cracked_tuff_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/whitewash/cracked_whitewash",
"particle": "new_soviet:block/whitewash/cracked_whitewash"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_acacia_planks",
"particle": "new_soviet:block/floor/planks/cross_acacia_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_birch_planks",
"particle": "new_soviet:block/floor/planks/cross_birch_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/cross_brown_linoleum",
"particle": "new_soviet:block/floor/linoleum/cross_brown_linoleum"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_crimson_planks",
"particle": "new_soviet:block/floor/planks/cross_crimson_planks"
}
}

View file

@ -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"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_jungle_planks",
"particle": "new_soviet:block/floor/planks/cross_jungle_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_mangrove_planks",
"particle": "new_soviet:block/floor/planks/cross_mangrove_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_oak_planks",
"particle": "new_soviet:block/floor/planks/cross_oak_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/cross_orange_linoleum",
"particle": "new_soviet:block/floor/linoleum/cross_orange_linoleum"
}
}

View file

@ -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"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/cross_spruce_planks",
"particle": "new_soviet:block/floor/planks/cross_spruce_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/cyan_linoleum",
"particle": "new_soviet:block/floor/linoleum/cyan_linoleum"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/cyan_warning_stripes",
"particle": "new_soviet:block/industrial/cyan_warning_stripes"
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/deepslate/deepslate_tiles",
"particle": "new_soviet:block/deepslate/deepslate_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/calcite/diagonal_calcite_tiles",
"particle": "new_soviet:block/calcite/diagonal_calcite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/deepslate/diagonal_deepslate_tiles",
"particle": "new_soviet:block/deepslate/diagonal_deepslate_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/diorite/diorite_bricks",
"particle": "new_soviet:block/diorite/diorite_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/diorite/diorite_tiles",
"particle": "new_soviet:block/diorite/diorite_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/aquamarine/dirty_aquamarine_tiles",
"particle": "new_soviet:block/aquamarine/dirty_aquamarine_tiles"
}
}
}

View file

@ -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"
}
}
}

View file

@ -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"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/dripstone/dripstone_bricks",
"particle": "new_soviet:block/dripstone/dripstone_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/dripstone/dripstone_tiles",
"particle": "new_soviet:block/dripstone/dripstone_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/aquamarine/glazed_aquamarine_tiles",
"particle": "new_soviet:block/aquamarine/glazed_aquamarine_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/red/glazed_red_tiles",
"particle": "new_soviet:block/red/glazed_red_tiles"
}
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/light_blue/glazed_light_blue_tiles",
"particle": "new_soviet:block/light_blue/glazed_light_blue_tiles"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/teal/glazed_teal_tiles",
"particle": "new_soviet:block/teal/glazed_teal_tiles"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/gray_linoleum",
"particle": "new_soviet:block/floor/linoleum/gray_linoleum"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/gray_warning_stripes",
"particle": "new_soviet:block/industrial/gray_warning_stripes"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/green/green_bricks",
"particle": "new_soviet:block/green/green_bricks"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/green/green_bricks_with_any",
"particle": "new_soviet:block/green/green_bricks_with_any"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/linoleum/green_linoleum",
"particle": "new_soviet:block/floor/linoleum/green_linoleum"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/wallpapers/green_wallpaper",
"particle": "new_soviet:block/wallpapers/green_wallpaper"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/green_warning_stripes",
"particle": "new_soviet:block/industrial/green_warning_stripes"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/green_white/green_white_tiles",
"particle": "new_soviet:block/green_white/green_white_tiles"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_acacia_planks",
"particle": "new_soviet:block/floor/planks/herringbone_acacia_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_birch_planks",
"particle": "new_soviet:block/floor/planks/herringbone_birch_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_crimson_planks",
"particle": "new_soviet:block/floor/planks/herringbone_crimson_planks"
}
}

View file

@ -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"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_jungle_planks",
"particle": "new_soviet:block/floor/planks/herringbone_jungle_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_mangrove_planks",
"particle": "new_soviet:block/floor/planks/herringbone_mangrove_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_oak_planks",
"particle": "new_soviet:block/floor/planks/herringbone_oak_planks"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_parquet",
"particle": "new_soviet:block/floor/planks/herringbone_parquet"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/sand/herringbone_sand_tiles",
"particle": "new_soviet:block/sand/herringbone_sand_tiles"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/floor/planks/herringbone_spruce_planks",
"particle": "new_soviet:block/floor/planks/herringbone_spruce_planks"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/industrial_warning_stripes",
"particle": "new_soviet:block/industrial/industrial_warning_stripes"
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/light_blue/light_blue_bricks",
"particle": "new_soviet:block/light_blue/light_blue_bricks"
}
}
}

View file

@ -4,5 +4,4 @@
"all": "new_soviet:block/light_blue/light_blue_tiles",
"particle": "new_soviet:block/light_blue/light_blue_tiles"
}
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/light_blue_warning_stripes",
"particle": "new_soviet:block/industrial/light_blue_warning_stripes"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/lime_warning_stripes",
"particle": "new_soviet:block/industrial/lime_warning_stripes"
}
}

View file

@ -3,6 +3,5 @@
"textures": {
"all": "new_soviet:block/industrial/magenta_warning_stripes",
"particle": "new_soviet:block/industrial/magenta_warning_stripes"
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/meat/meat",
"particle": "new_soviet:block/meat/meat"
}
}
}

View file

@ -3,7 +3,5 @@
"textures": {
"all": "new_soviet:block/meat/meat2",
"particle": "new_soviet:block/meat/meat2"
}
}
}

Some files were not shown because too many files have changed in this diff Show more