diff --git a/CHANGELOG b/CHANGELOG index 0cdd7ec..91cd50d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,12 +1,25 @@ -0.1 -> 0.2 +### Changelog 0.1 -> 0.2 * Added new "Dirt Road" block - * Made by tilling coarse dirt with a rake + * Made by tilling coarse dirt with a rake. Right now you get 1 flint out of the process as a placeholder drop * Behaves like gravel -* Added golden lamp crafting recipe + * Drops with silk touch, otherwise result is dirt + * Texture will likely be adjusted in a future update * Improved TVs - * Re-made textures and models - * Added white noise animation if TV is powered with redstone - * Added cracked screen if TV is hit with a snowball + * Re-made texture and model to better fit the USSR aesthetic + * Added white noise animation if TV is powered with redstone or right-clicked (same as lamps). White noise emits a bit of light. + * Added cracked screen if TV is hit with a snowball (reset when block is broken) * TVs can now be waterlogged -* Re-made Radio texure and model to make it fit the USSR aesthetic more -* Several tiny fixes \ No newline at end of file +* Improved Radio + * Re-made texture and model to better fit the USSR aesthetic + * Added ability to waterlog radios +* Re-made ceiling fan texture and model to better fit the USSR aesthetic +* Added golden lamp crafting recipe +* Several tiny fixes + * Light bulb break noise is now in correct category + * Barbed wire drops iron nugget without silk touch + * Expanded description and removed dead link in metadata +* Technical changes + * Optimised chess model files + * Removed several unused textures (may reduce file size) + * Updated one of authors' nicks in credits + * Moved to newer versions of Yarn, Loom, Fabric loader & API \ No newline at end of file diff --git a/LICENSE b/LICENSE index 3d07e08..2ac819c 100644 --- a/LICENSE +++ b/LICENSE @@ -5,7 +5,7 @@ the license below. The only exceptions are some files in /src/main/resources/assets/new_soviet/sounds, see relevant LICENSE file there All Rights Reserved -Copyright (c) 2023 Andrey Nikitin and Рюжин Юрий. +Copyright (c) 2023 Andrew_7_1 and Feulim Temly. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR @@ -16,7 +16,7 @@ All other files within this repository are subject to the license below. MIT License -Copyright (c) 2023 Andrey Nikitin. +Copyright (c) 2023 Andrew_7_1. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/TODO.md b/TODO.md index 97aa041..801b4ce 100644 --- a/TODO.md +++ b/TODO.md @@ -4,12 +4,15 @@ * Add (with functionality) present appliance/furniture/electronics textures * Cigarette and handrail are BROKEN and the code is a MESS sorry, but it needs CLEANUP * Fix post lamp hitboxes -* Add credits in models - -* Create integration - tags, recipes +* Better landmines + * more types + * create integration ("landmine base" item) +* Add pipes/heating +* Add rubbish, rocks +* Figure out electronic devices - function + === ACHIEVEMENTS === -Kolkhoz warrior - kill someone with a sickle Gambler - throw dice 100 times One In 64 Million - roll perfect d20 x 6 Serious Addiction - throw a dice 1000 times, and then reevaluate your life choices diff --git a/gradle.properties b/gradle.properties index 1976e9e..ae18aef 100644 --- a/gradle.properties +++ b/gradle.properties @@ -9,7 +9,7 @@ yarn_mappings=1.20.1+build.10 loader_version=0.14.23 # Mod Properties -mod_version=0.1 +mod_version=0.2 maven_group=su.a71 mod_id=new_soviet diff --git a/src/client/java/su/a71/new_soviet/NewSovietClient.java b/src/client/java/su/a71/new_soviet/NewSovietClient.java index cb7c049..a9b27a7 100644 --- a/src/client/java/su/a71/new_soviet/NewSovietClient.java +++ b/src/client/java/su/a71/new_soviet/NewSovietClient.java @@ -41,6 +41,8 @@ public class NewSovietClient implements ClientModInitializer { // BlockEntityRendererRegistry.register(NSE_Custom.TV_BLOCK_ENTITY, TVBlockEntityRenderer::new); BlockRenderLayerMap.INSTANCE.putBlock(NSE_Custom.TV, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(NSE_Custom.RED_TV, RenderLayer.getCutout()); + BlockRenderLayerMap.INSTANCE.putBlock(NSE_Custom.BROWN_TV, RenderLayer.getCutout()); BlockRenderLayerMap.INSTANCE.putBlock(NSE_Custom.RADIO_RECEIVER, RenderLayer.getCutout()); diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/barbed_wire.json b/src/main/generated/data/new_soviet/loot_tables/blocks/barbed_wire.json index 54b86d4..1d0cfb2 100644 --- a/src/main/generated/data/new_soviet/loot_tables/blocks/barbed_wire.json +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/barbed_wire.json @@ -1,6 +1,16 @@ { "type": "minecraft:block", "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_nugget" + } + ], + "rolls": 1.0 + }, { "bonus_rolls": 0.0, "conditions": [ diff --git a/src/main/generated/data/new_soviet/loot_tables/blocks/dirt_road.json b/src/main/generated/data/new_soviet/loot_tables/blocks/dirt_road.json index 7b4acd3..523572d 100644 --- a/src/main/generated/data/new_soviet/loot_tables/blocks/dirt_road.json +++ b/src/main/generated/data/new_soviet/loot_tables/blocks/dirt_road.json @@ -3,11 +3,6 @@ "pools": [ { "bonus_rolls": 0.0, - "conditions": [ - { - "condition": "minecraft:survives_explosion" - } - ], "entries": [ { "type": "minecraft:item", @@ -15,6 +10,31 @@ } ], "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "new_soviet:dirt_road" + } + ], + "rolls": 1.0 } ] } \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/blocks/CeilingFanBlock.java b/src/main/java/su/a71/new_soviet/blocks/CeilingFanBlock.java index ed69602..9958218 100644 --- a/src/main/java/su/a71/new_soviet/blocks/CeilingFanBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/CeilingFanBlock.java @@ -83,7 +83,7 @@ public class CeilingFanBlock extends Block implements Waterloggable { } static { - SHAPE = VoxelShapes.union(Block.createCuboidShape(4.0, 2.0, 4.0, 12.0, 7.0, 12.0), Block.createCuboidShape(7.0, 7.0, 7.0, 9.0, 13.0, 9.0), Block.createCuboidShape(6.0, 13.0, 6.0, 10.0, 16.0, 10.0)); + SHAPE = VoxelShapes.union(Block.createCuboidShape(4.0, 1.0, 4.0, 12.0, 4.0, 12.0), Block.createCuboidShape(6.5, 3.0, 6.5, 9.5, 7.0, 9.5), Block.createCuboidShape(7.5, 7.0, 7.5, 8.5, 13.0, 8.5), Block.createCuboidShape(6.5, 13.0, 6.5, 9.5, 16.0, 9.5)); ON = RedstoneTorchBlock.LIT; WATERLOGGED = Properties.WATERLOGGED; } diff --git a/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java b/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java index cb48fda..c85fd7b 100644 --- a/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/RadioReceiverBlock.java @@ -3,25 +3,33 @@ package su.a71.new_soviet.blocks; import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings; import net.minecraft.block.*; import net.minecraft.block.piston.PistonBehavior; +import net.minecraft.fluid.FluidState; +import net.minecraft.fluid.Fluids; import net.minecraft.item.ItemPlacementContext; import net.minecraft.sound.BlockSoundGroup; import net.minecraft.state.StateManager; +import net.minecraft.state.property.BooleanProperty; import net.minecraft.state.property.Properties; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Direction; import net.minecraft.util.shape.VoxelShape; import net.minecraft.util.shape.VoxelShapes; import net.minecraft.world.BlockView; +import net.minecraft.world.WorldAccess; + +public class RadioReceiverBlock extends HorizontalFacingBlock implements Waterloggable { + public static final BooleanProperty WATERLOGGED; -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)); + setDefaultState(getDefaultState() + .with(Properties.HORIZONTAL_FACING, Direction.NORTH) + .with(WATERLOGGED, false)); } @Override protected void appendProperties(StateManager.Builder builder) { - builder.add(Properties.HORIZONTAL_FACING); + builder.add(Properties.HORIZONTAL_FACING, WATERLOGGED); } @Override @@ -36,6 +44,26 @@ public class RadioReceiverBlock extends HorizontalFacingBlock { @Override public BlockState getPlacementState(ItemPlacementContext ctx) { - return super.getPlacementState(ctx).with(Properties.HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite()); + FluidState fluidState = ctx.getWorld().getFluidState(ctx.getBlockPos()); + + return super.getPlacementState(ctx) + .with(Properties.HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite()) + .with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER); + } + + public BlockState getStateForNeighborUpdate(BlockState state, Direction direction, BlockState neighborState, WorldAccess world, BlockPos pos, BlockPos neighborPos) { + if (state.get(WATERLOGGED)) { + world.scheduleFluidTick(pos, Fluids.WATER, Fluids.WATER.getTickRate(world)); + } + + return !state.canPlaceAt(world, pos) ? Blocks.AIR.getDefaultState() : super.getStateForNeighborUpdate(state, direction, neighborState, world, pos, neighborPos); + } + + public FluidState getFluidState(BlockState state) { + return state.get(WATERLOGGED) ? Fluids.WATER.getStill(false) : super.getFluidState(state); + } + + static { + WATERLOGGED = Properties.WATERLOGGED; } } \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/blocks/TVBlock.java b/src/main/java/su/a71/new_soviet/blocks/TVBlock.java index 3580d9b..391dfe0 100644 --- a/src/main/java/su/a71/new_soviet/blocks/TVBlock.java +++ b/src/main/java/su/a71/new_soviet/blocks/TVBlock.java @@ -3,6 +3,7 @@ package su.a71.new_soviet.blocks; import net.minecraft.block.*; import net.minecraft.block.entity.BlockEntity; import net.minecraft.block.piston.PistonBehavior; +import net.minecraft.entity.player.PlayerEntity; import net.minecraft.entity.projectile.ProjectileEntity; import net.minecraft.fluid.FluidState; import net.minecraft.fluid.Fluids; @@ -13,6 +14,8 @@ import net.minecraft.sound.SoundCategory; import net.minecraft.state.StateManager; import net.minecraft.state.property.BooleanProperty; import net.minecraft.state.property.Properties; +import net.minecraft.util.ActionResult; +import net.minecraft.util.Hand; import net.minecraft.util.hit.BlockHitResult; import net.minecraft.util.math.BlockPos; import net.minecraft.util.math.Direction; @@ -35,10 +38,20 @@ public class TVBlock extends HorizontalFacingBlock implements BlockEntityProvide public static final BooleanProperty BROKEN; public static final BooleanProperty ON; public static final BooleanProperty WATERLOGGED; - + public static final BooleanProperty INVERTED; public TVBlock(AbstractBlock.Settings settings) { - super(settings.sounds(BlockSoundGroup.METAL).pistonBehavior(PistonBehavior.BLOCK).strength(1f, 2f)); + super(settings.sounds(BlockSoundGroup.METAL).pistonBehavior(PistonBehavior.BLOCK).strength(1f, 2f) + .luminance((BlockState state) -> { + if (state.get(BROKEN)) { + return 0; + } + if (state.get(INVERTED)) { + return state.get(ON) ? 0 : 5; + } else { + return state.get(ON) ? 5 : 0; + } + })); setDefaultState(getDefaultState() .with(Properties.HORIZONTAL_FACING, Direction.NORTH) .with(WATERLOGGED, false) @@ -47,7 +60,7 @@ public class TVBlock extends HorizontalFacingBlock implements BlockEntityProvide @Override protected void appendProperties(StateManager.Builder builder) { - builder.add(Properties.HORIZONTAL_FACING, WATERLOGGED, ON, BROKEN); + builder.add(Properties.HORIZONTAL_FACING, WATERLOGGED, ON, BROKEN, INVERTED); } @Override @@ -68,9 +81,20 @@ public class TVBlock extends HorizontalFacingBlock implements BlockEntityProvide .with(Properties.HORIZONTAL_FACING, ctx.getHorizontalPlayerFacing().getOpposite()) .with(WATERLOGGED, fluidState.getFluid() == Fluids.WATER) .with(ON, ctx.getWorld().isReceivingRedstonePower(ctx.getBlockPos())) + .with(INVERTED, false) .with(BROKEN, false); } + @Override + public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) { + if (!world.isClient) { + world.setBlockState(pos, state.cycle(INVERTED), 2); + } + float f = state.get(ON) ? 1f : 0.9f; + world.playSound(null, pos, NSE_Sounds.SWITCH_PRESS, SoundCategory.BLOCKS, 0.6f, f); + return ActionResult.SUCCESS; + } + @Override public void onProjectileHit(World world, BlockState state, BlockHitResult hit, ProjectileEntity projectile) { if (!state.get(BROKEN)) { @@ -121,5 +145,6 @@ public class TVBlock extends HorizontalFacingBlock implements BlockEntityProvide ON = RedstoneTorchBlock.LIT; WATERLOGGED = Properties.WATERLOGGED; BROKEN = Properties.CRACKED; + INVERTED = Properties.INVERTED; } } \ No newline at end of file diff --git a/src/main/java/su/a71/new_soviet/datagen/BlockLootTables.java b/src/main/java/su/a71/new_soviet/datagen/BlockLootTables.java index b055503..634bca7 100644 --- a/src/main/java/su/a71/new_soviet/datagen/BlockLootTables.java +++ b/src/main/java/su/a71/new_soviet/datagen/BlockLootTables.java @@ -4,7 +4,12 @@ package su.a71.new_soviet.datagen; import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput; import net.fabricmc.fabric.api.datagen.v1.provider.FabricBlockLootTableProvider; import net.minecraft.block.Blocks; +import net.minecraft.item.ItemConvertible; import net.minecraft.item.Items; +import net.minecraft.loot.LootPool; +import net.minecraft.loot.LootTable; +import net.minecraft.loot.entry.ItemEntry; +import net.minecraft.loot.provider.number.ConstantLootNumberProvider; import su.a71.new_soviet.registration.NSE_Blocks; import su.a71.new_soviet.registration.NSE_Custom; @@ -13,6 +18,12 @@ public class BlockLootTables extends FabricBlockLootTableProvider { super(dataOutput); } + public static LootTable.Builder dropSilkAndNot(ItemConvertible drop, ItemConvertible drop_silk) { + return LootTable.builder() + .pool(LootPool.builder().rolls(ConstantLootNumberProvider.create(1.0F)).with(ItemEntry.builder(drop))) + .pool(LootPool.builder().conditionally(WITH_SILK_TOUCH).rolls(ConstantLootNumberProvider.create(1.0F)).with(ItemEntry.builder(drop_silk))); + } + @Override public void generate() { // Drops for building blocks @@ -430,11 +441,10 @@ public class BlockLootTables extends FabricBlockLootTableProvider { addDrop(NSE_Blocks.CYAN_LINOLEUM_STAIRS); addDrop(NSE_Blocks.METAL_PLATING_SLAB); addDrop(NSE_Blocks.METAL_PLATING_STAIRS); - addDrop(NSE_Blocks.BARBED_WIRE, Items.IRON_NUGGET); - addDrop(NSE_Blocks.DIRT_ROAD, Blocks.DIRT); + + addDrop(NSE_Blocks.BARBED_WIRE, dropSilkAndNot(Items.IRON_NUGGET, NSE_Blocks.BARBED_WIRE)); + addDrop(NSE_Blocks.DIRT_ROAD, dropSilkAndNot(Blocks.DIRT, NSE_Blocks.DIRT_ROAD)); addDropWithSilkTouch(NSE_Custom.LIGHT_BULB_LAMP); - addDropWithSilkTouch(NSE_Blocks.BARBED_WIRE); -// addDropWithSilkTouch(NSE_Blocks.DIRT_ROAD); } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/black_checker.json b/src/main/resources/assets/new_soviet/blockstates/black_checker.json index 75a59b5..399b379 100644 --- a/src/main/resources/assets/new_soviet/blockstates/black_checker.json +++ b/src/main/resources/assets/new_soviet/blockstates/black_checker.json @@ -1,16 +1,16 @@ { "variants": { "checkers=1": { - "model": "new_soviet:block/black_checker" + "model": "new_soviet:block/checkers/black_checker" }, "checkers=2": { - "model": "new_soviet:block/black_checker2" + "model": "new_soviet:block/checkers/black_checker2" }, "checkers=3": { - "model": "new_soviet:block/black_checker3" + "model": "new_soviet:block/checkers/black_checker3" }, "checkers=4": { - "model": "new_soviet:block/black_checker4" + "model": "new_soviet:block/checkers/black_checker4" } } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/blockstates/brown_tv.json b/src/main/resources/assets/new_soviet/blockstates/brown_tv.json index 2887be5..46fd4c8 100644 --- a/src/main/resources/assets/new_soviet/blockstates/brown_tv.json +++ b/src/main/resources/assets/new_soviet/blockstates/brown_tv.json @@ -1,11 +1,17 @@ { "variants": { - "facing=north,lit=false,cracked=false": { + "facing=north,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/brown_tv", "uvlock": true }, - "facing=north,lit=true,cracked=false": { + "facing=north,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/brown_tv_on", "uvlock": true }, + "facing=north,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv_on", "uvlock": true + }, + "facing=north,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv", "uvlock": true + }, "facing=north,lit=false,cracked=true": [{ "model": "new_soviet:block/tv/brown_tv_broken1", "uvlock": true }, @@ -16,55 +22,113 @@ "model": "new_soviet:block/tv/brown_tv_broken3", "uvlock": true } ], + "facing=north,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/brown_tv_broken1", "uvlock": true + }, + { + "model": "new_soviet:block/tv/brown_tv_broken2", "uvlock": true + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "uvlock": true + } + ], - "facing=east,lit=false,cracked=false": { + "facing=east,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/brown_tv", "y": 90, "uvlock": false }, - "facing=east,lit=true,cracked=false": { + "facing=east,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/brown_tv_on", "y": 90, "uvlock": false }, - "facing=east,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/brown_tv_broken1","y": 90, "uvlock": false + "facing=east,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv_on", "y": 90, "uvlock": false }, - { - "model": "new_soviet:block/tv/brown_tv_broken2","y": 90, "uvlock": false + "facing=east,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv", "y": 90, "uvlock": false + }, + "facing=east,lit=false,cracked=true": [{ + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 90, "uvlock": false }, { - "model": "new_soviet:block/tv/brown_tv_broken3","y": 90, "uvlock": false + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 90, "uvlock": false + } + ], + "facing=east,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 90, "uvlock": false } ], - "facing=south,lit=false,cracked=false": { - "model": "new_soviet:block/tv/brown_tv", "y": 180, "uvlock": false + "facing=south,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/brown_tv", "y": 180, "uvlock": false }, - "facing=south,lit=true,cracked=false": { - "model": "new_soviet:block/tv/brown_tv_on", "y": 180, "uvlock": false + "facing=south,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/brown_tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv", "y": 180, "uvlock": false }, "facing=south,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/brown_tv_broken1","y": 180, "uvlock": false - }, - { - "model": "new_soviet:block/tv/brown_tv_broken2","y": 180, "uvlock": false + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 180, "uvlock": false }, { - "model": "new_soviet:block/tv/brown_tv_broken3","y": 180, "uvlock": false + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 180, "uvlock": false + } + ], + "facing=south,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 180, "uvlock": false } ], - "facing=west,lit=false,cracked=false": { - "model": "new_soviet:block/tv/brown_tv", "y": 270, "uvlock": false + "facing=west,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/brown_tv", "y": 270, "uvlock": false }, - "facing=west,lit=true,cracked=false": { - "model": "new_soviet:block/tv/brown_tv_on", "y": 270, "uvlock": false + "facing=west,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/brown_tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/brown_tv", "y": 270, "uvlock": false }, "facing=west,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/brown_tv_broken1","y": 270, "uvlock": false - }, - { - "model": "new_soviet:block/tv/brown_tv_broken2","y": 270, "uvlock": false + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 270, "uvlock": false }, { - "model": "new_soviet:block/tv/brown_tv_broken3","y": 270, "uvlock": false + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 270, "uvlock": false + } + ], + "facing=west,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/brown_tv_broken1", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/brown_tv_broken3", "y": 270, "uvlock": false } ] } diff --git a/src/main/resources/assets/new_soviet/blockstates/red_tv.json b/src/main/resources/assets/new_soviet/blockstates/red_tv.json index 4bb35f0..52e86f2 100644 --- a/src/main/resources/assets/new_soviet/blockstates/red_tv.json +++ b/src/main/resources/assets/new_soviet/blockstates/red_tv.json @@ -1,11 +1,17 @@ { "variants": { - "facing=north,lit=false,cracked=false": { + "facing=north,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/red_tv", "uvlock": true }, - "facing=north,lit=true,cracked=false": { + "facing=north,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/red_tv_on", "uvlock": true }, + "facing=north,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv_on", "uvlock": true + }, + "facing=north,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv", "uvlock": true + }, "facing=north,lit=false,cracked=true": [{ "model": "new_soviet:block/tv/red_tv_broken1", "uvlock": true }, @@ -16,15 +22,41 @@ "model": "new_soviet:block/tv/red_tv_broken3", "uvlock": true } ], + "facing=north,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/red_tv_broken1", "uvlock": true + }, + { + "model": "new_soviet:block/tv/red_tv_broken2", "uvlock": true + }, + { + "model": "new_soviet:block/tv/red_tv_broken3", "uvlock": true + } + ], - "facing=east,lit=false,cracked=false": { + "facing=east,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/red_tv", "y": 90, "uvlock": false }, - "facing=east,lit=true,cracked=false": { + "facing=east,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/red_tv_on", "y": 90, "uvlock": false }, + "facing=east,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv_on", "y": 90, "uvlock": false + }, + "facing=east,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv", "y": 90, "uvlock": false + }, "facing=east,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/red_tv_broken1","y": 90, "uvlock": false + "model": "new_soviet:block/tv/red_tv_broken1", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken2","y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken3","y": 90, "uvlock": false + } + ], + "facing=east,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/red_tv_broken1", "y": 90, "uvlock": false }, { "model": "new_soviet:block/tv/red_tv_broken2","y": 90, "uvlock": false @@ -34,37 +66,69 @@ } ], - "facing=south,lit=false,cracked=false": { - "model": "new_soviet:block/tv/red_tv", "y": 180, "uvlock": false + "facing=south,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/red_tv", "y": 180, "uvlock": false }, - "facing=south,lit=true,cracked=false": { - "model": "new_soviet:block/tv/red_tv_on", "y": 180, "uvlock": false + "facing=south,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/red_tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv", "y": 180, "uvlock": false }, "facing=south,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/red_tv_broken1","y": 180, "uvlock": false - }, - { - "model": "new_soviet:block/tv/red_tv_broken2","y": 180, "uvlock": false + "model": "new_soviet:block/tv/red_tv_broken1", "y": 180, "uvlock": false }, { - "model": "new_soviet:block/tv/red_tv_broken3","y": 180, "uvlock": false + "model": "new_soviet:block/tv/red_tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken3", "y": 180, "uvlock": false + } + ], + "facing=south,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/red_tv_broken1", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken3", "y": 180, "uvlock": false } ], - "facing=west,lit=false,cracked=false": { - "model": "new_soviet:block/tv/red_tv", "y": 270, "uvlock": false + "facing=west,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/red_tv", "y": 270, "uvlock": false }, - "facing=west,lit=true,cracked=false": { - "model": "new_soviet:block/tv/red_tv_on", "y": 270, "uvlock": false + "facing=west,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/red_tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/red_tv", "y": 270, "uvlock": false }, "facing=west,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/red_tv_broken1","y": 270, "uvlock": false - }, - { - "model": "new_soviet:block/tv/red_tv_broken2","y": 270, "uvlock": false + "model": "new_soviet:block/tv/red_tv_broken1", "y": 270, "uvlock": false }, { - "model": "new_soviet:block/tv/red_tv_broken3","y": 270, "uvlock": false + "model": "new_soviet:block/tv/red_tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken3", "y": 270, "uvlock": false + } + ], + "facing=west,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/red_tv_broken1", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/red_tv_broken3", "y": 270, "uvlock": false } ] } diff --git a/src/main/resources/assets/new_soviet/blockstates/tv.json b/src/main/resources/assets/new_soviet/blockstates/tv.json index d51dd67..e3bbe8f 100644 --- a/src/main/resources/assets/new_soviet/blockstates/tv.json +++ b/src/main/resources/assets/new_soviet/blockstates/tv.json @@ -1,11 +1,17 @@ { "variants": { - "facing=north,lit=false,cracked=false": { + "facing=north,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/tv", "uvlock": true }, - "facing=north,lit=true,cracked=false": { + "facing=north,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/tv_on", "uvlock": true }, + "facing=north,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv_on", "uvlock": true + }, + "facing=north,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv", "uvlock": true + }, "facing=north,lit=false,cracked=true": [{ "model": "new_soviet:block/tv/tv_broken1", "uvlock": true }, @@ -16,55 +22,113 @@ "model": "new_soviet:block/tv/tv_broken3", "uvlock": true } ], + "facing=north,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/tv_broken1", "uvlock": true + }, + { + "model": "new_soviet:block/tv/tv_broken2", "uvlock": true + }, + { + "model": "new_soviet:block/tv/tv_broken3", "uvlock": true + } + ], - "facing=east,lit=false,cracked=false": { + "facing=east,lit=false,cracked=false,inverted=false": { "model": "new_soviet:block/tv/tv", "y": 90, "uvlock": false }, - "facing=east,lit=true,cracked=false": { + "facing=east,lit=true,cracked=false,inverted=false": { "model": "new_soviet:block/tv/tv_on", "y": 90, "uvlock": false }, - "facing=east,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/tv_broken1","y": 90, "uvlock": false + "facing=east,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv_on", "y": 90, "uvlock": false }, - { - "model": "new_soviet:block/tv/tv_broken2","y": 90, "uvlock": false + "facing=east,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv", "y": 90, "uvlock": false + }, + "facing=east,lit=false,cracked=true": [{ + "model": "new_soviet:block/tv/tv_broken1", "y": 90, "uvlock": false }, { - "model": "new_soviet:block/tv/tv_broken3","y": 90, "uvlock": false + "model": "new_soviet:block/tv/tv_broken2", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 90, "uvlock": false + } + ], + "facing=east,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/tv_broken1", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken2", "y": 90, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 90, "uvlock": false } ], - "facing=south,lit=false,cracked=false": { - "model": "new_soviet:block/tv/tv", "y": 180, "uvlock": false + "facing=south,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/tv", "y": 180, "uvlock": false }, - "facing=south,lit=true,cracked=false": { - "model": "new_soviet:block/tv/tv_on", "y": 180, "uvlock": false + "facing=south,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv_on", "y": 180, "uvlock": false + }, + "facing=south,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv", "y": 180, "uvlock": false }, "facing=south,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/tv_broken1","y": 180, "uvlock": false - }, - { - "model": "new_soviet:block/tv/tv_broken2","y": 180, "uvlock": false + "model": "new_soviet:block/tv/tv_broken1", "y": 180, "uvlock": false }, { - "model": "new_soviet:block/tv/tv_broken3","y": 180, "uvlock": false + "model": "new_soviet:block/tv/tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 180, "uvlock": false + } + ], + "facing=south,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/tv_broken1", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken2", "y": 180, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 180, "uvlock": false } ], - "facing=west,lit=false,cracked=false": { - "model": "new_soviet:block/tv/tv", "y": 270, "uvlock": false + "facing=west,lit=false,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/tv", "y": 270, "uvlock": false }, - "facing=west,lit=true,cracked=false": { - "model": "new_soviet:block/tv/tv_on", "y": 270, "uvlock": false + "facing=west,lit=true,cracked=false,inverted=false": { + "model": "new_soviet:block/tv/tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=false,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv_on", "y": 270, "uvlock": false + }, + "facing=west,lit=true,cracked=false,inverted=true": { + "model": "new_soviet:block/tv/tv", "y": 270, "uvlock": false }, "facing=west,lit=false,cracked=true": [{ - "model": "new_soviet:block/tv/tv_broken1","y": 270, "uvlock": false - }, - { - "model": "new_soviet:block/tv/tv_broken2","y": 270, "uvlock": false + "model": "new_soviet:block/tv/tv_broken1", "y": 270, "uvlock": false }, { - "model": "new_soviet:block/tv/tv_broken3","y": 270, "uvlock": false + "model": "new_soviet:block/tv/tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 270, "uvlock": false + } + ], + "facing=west,lit=true,cracked=true": [{ + "model": "new_soviet:block/tv/tv_broken1", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken2", "y": 270, "uvlock": false + }, + { + "model": "new_soviet:block/tv/tv_broken3", "y": 270, "uvlock": false } ] } diff --git a/src/main/resources/assets/new_soviet/blockstates/white_checker.json b/src/main/resources/assets/new_soviet/blockstates/white_checker.json index e1a7f20..835b3ca 100644 --- a/src/main/resources/assets/new_soviet/blockstates/white_checker.json +++ b/src/main/resources/assets/new_soviet/blockstates/white_checker.json @@ -1,16 +1,16 @@ { "variants": { "checkers=1": { - "model": "new_soviet:block/white_checker" + "model": "new_soviet:block/checkers/white_checker" }, "checkers=2": { - "model": "new_soviet:block/white_checker2" + "model": "new_soviet:block/checkers/white_checker2" }, "checkers=3": { - "model": "new_soviet:block/white_checker3" + "model": "new_soviet:block/checkers/white_checker3" }, "checkers=4": { - "model": "new_soviet:block/white_checker4" + "model": "new_soviet:block/checkers/white_checker4" } } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/beige_concrete_with_bars.json b/src/main/resources/assets/new_soviet/models/block/beige_concrete_with_bars.json index 95f12fe..bfb58ba 100644 --- a/src/main/resources/assets/new_soviet/models/block/beige_concrete_with_bars.json +++ b/src/main/resources/assets/new_soviet/models/block/beige_concrete_with_bars.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "parent": "block/cube_all", "texture_size": [32, 32], "textures": { diff --git a/src/main/resources/assets/new_soviet/models/block/caged_lamp.json b/src/main/resources/assets/new_soviet/models/block/caged_lamp.json index 6a3e03e..ad8d054 100644 --- a/src/main/resources/assets/new_soviet/models/block/caged_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/caged_lamp.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "0": "lamp_post", diff --git a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json index 3687c54..cfed6f9 100644 --- a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json +++ b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_off.json @@ -1,117 +1,145 @@ { - "credit": "Made with Blockbench", - "texture_size": [64, 64], + "credit": "Made by Feulim Temly with Blockbench", + "texture_size": [32, 32], "textures": { - "1": "new_soviet:block/custom/appliances/fan_base", - "2": "new_soviet:block/custom/appliances/fan_static", - "particle": "new_soviet:block/custom/appliances/fan_base_particle" + "0": "new_soviet:block/custom/appliances/ceiling_fan", + "1": "new_soviet:block/custom/appliances/fan_static", + "particle": "new_soviet:block/custom/appliances/ceiling_fan" }, "elements": [ { "name": "root", - "from": [6, 13, 6], - "to": [10, 16, 10], + "from": [4, 1, 4], + "to": [12, 4, 12], "faces": { - "north": {"uv": [1, 4.25, 2, 5], "texture": "#1"}, - "east": {"uv": [0, 4.25, 1, 5], "texture": "#1"}, - "south": {"uv": [3, 4.25, 4, 5], "texture": "#1"}, - "west": {"uv": [2, 4.25, 3, 5], "texture": "#1"}, - "up": {"uv": [2, 4.25, 1, 3.25], "texture": "#1"}, - "down": {"uv": [3, 3.25, 2, 4.25], "texture": "#1"} + "north": {"uv": [4, 4, 8, 5.5], "texture": "#0"}, + "east": {"uv": [0, 4, 4, 5.5], "texture": "#0"}, + "south": {"uv": [12, 4, 16, 5.5], "texture": "#0"}, + "west": {"uv": [8, 4, 12, 5.5], "texture": "#0"}, + "up": {"uv": [8, 4, 4, 0], "texture": "#0"}, + "down": {"uv": [12, 0, 8, 4], "texture": "#0"} } }, { "name": "root", - "from": [7, 7, 7], - "to": [9, 13, 9], + "from": [6.5, 13, 6.5], + "to": [9.5, 16, 9.5], "faces": { - "north": {"uv": [0.5, 0.5, 1, 2], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 2], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 2], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} + "north": {"uv": [1.5, 9.5, 3, 11], "texture": "#0"}, + "east": {"uv": [0, 9.5, 1.5, 11], "texture": "#0"}, + "south": {"uv": [4.5, 9.5, 6, 11], "texture": "#0"}, + "west": {"uv": [3, 9.5, 4.5, 11], "texture": "#0"}, + "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, + "down": {"uv": [4.5, 8, 3, 9.5], "texture": "#0"} } }, { "name": "root", - "from": [4, 2, 4], - "to": [12, 7, 12], + "from": [6.5, 4, 6.5], + "to": [9.5, 7, 9.5], "faces": { - "north": {"uv": [2, 2, 4, 3.25], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 3.25], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 3.25], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 3.25], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} + "north": {"uv": [7.5, 8, 9, 9.5], "texture": "#0"}, + "east": {"uv": [6, 8, 7.5, 9.5], "texture": "#0"}, + "south": {"uv": [10.5, 8, 12, 9.5], "texture": "#0"}, + "west": {"uv": [9, 8, 10.5, 9.5], "texture": "#0"}, + "up": {"uv": [9, 8, 7.5, 6.5], "texture": "#0"}, + "down": {"uv": [10.5, 6.5, 9, 8], "texture": "#0"} } }, { "name": "root", - "from": [6, 0, 6], - "to": [10, 2, 10], + "from": [5.5, 7, 5.5], + "to": [10.5, 7, 10.5], "faces": { - "north": {"uv": [4, 5, 5, 5.5], "texture": "#1"}, - "east": {"uv": [3, 5, 4, 5.5], "texture": "#1"}, - "south": {"uv": [6, 5, 7, 5.5], "texture": "#1"}, - "west": {"uv": [5, 5, 6, 5.5], "texture": "#1"}, - "up": {"uv": [5, 5, 4, 4], "texture": "#1"}, - "down": {"uv": [6, 4, 5, 5], "texture": "#1"} + "north": {"uv": [2.5, 8, 5, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 2.5, 8], "texture": "#0"}, + "south": {"uv": [7.5, 8, 10, 8], "texture": "#0"}, + "west": {"uv": [5, 8, 7.5, 8], "texture": "#0"}, + "up": {"uv": [5, 8, 2.5, 5.5], "texture": "#0"}, + "down": {"uv": [7.5, 5.5, 5, 8], "texture": "#0"} } }, { "name": "root", - "from": [-8, 1, -8], - "to": [24, 1, 24], + "from": [7.5, 6, 7.5], + "to": [8.5, 13, 8.5], "faces": { - "up": {"uv": [16, 16, 0, 0], "texture": "#2"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#2"} + "north": {"uv": [0.5, 0.5, 1, 4], "texture": "#0"}, + "east": {"uv": [0, 0.5, 0.5, 4], "texture": "#0"}, + "south": {"uv": [1.5, 0.5, 2, 4], "texture": "#0"}, + "west": {"uv": [1, 0.5, 1.5, 4], "texture": "#0"}, + "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#0"}, + "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#0"} + } + }, + { + "name": "root", + "from": [-8, 2.5, -8], + "to": [24, 2.5, 24], + "faces": { + "north": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "east": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "south": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "west": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "up": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} } } ], "display": { "thirdperson_righthand": { "rotation": [0, 0, 180], - "scale": [0.4, 0.4, 0.4] + "translation": [0, 1.75, 1], + "scale": [0.25, 0.25, 0.25] }, "thirdperson_lefthand": { "rotation": [0, 0, 180], - "scale": [0.4, 0.4, 0.4] + "translation": [0, 1.75, 1], + "scale": [0.25, 0.25, 0.25] }, "firstperson_righthand": { - "rotation": [-46, 0, 180], - "translation": [1.5, 0, 1.25], - "scale": [0.4, 0.4, 0.4] + "rotation": [0, -90, -145], + "translation": [1.13, 3.2, 1.13], + "scale": [0.5, 0.5, 0.5] }, "firstperson_lefthand": { - "rotation": [-46, 0, 180], - "translation": [1.5, 0, 1.25], - "scale": [0.4, 0.4, 0.4] + "rotation": [0, -90, -145], + "translation": [1.13, 3.2, 1.13], + "scale": [0.5, 0.5, 0.5] }, "ground": { - "scale": [0.4, 0.4, 0.4] + "translation": [0, 2, 0], + "scale": [0.5, 0.5, 0.5] }, "gui": { - "rotation": [45, 45, 0], - "translation": [0, 1.75, 0], - "scale": [0.6, 0.6, 0.6] + "rotation": [30, 225, 0], + "translation": [0, 1.5, 0], + "scale": [0.625, 0.625, 0.625] }, "head": { "rotation": [0, 0, 180], - "translation": [0, 2.5, 0] - }, - "fixed": { - "rotation": [90, 0, 0], - "translation": [0, 0, 4.75] + "translation": [0, 5.75, 0], + "scale": [0.75, 0.75, 0.75] } }, "groups": [ { - "name": "root", - "origin": [0, 0, 0], + "name": "group", + "origin": [8, 8, 8], "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4] + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [5] + } + ] } ] } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json index 4cad0af..fc3ed9e 100644 --- a/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json +++ b/src/main/resources/assets/new_soviet/models/block/ceiling_fan_on.json @@ -1,82 +1,111 @@ { - "credit": "Made with Blockbench", - "texture_size": [64, 64], + "credit": "Made by Feulim Temly with Blockbench", + "texture_size": [32, 32], "textures": { - "0": "new_soviet:block/custom/appliances/fan_animated", - "1": "new_soviet:block/custom/appliances/fan_base", - "particle": "new_soviet:block/custom/appliances/fan_base_particle" + "0": "new_soviet:block/custom/appliances/ceiling_fan", + "1": "new_soviet:block/custom/appliances/fan_animated", + "particle": "new_soviet:block/custom/appliances/ceiling_fan" }, "elements": [ { "name": "root", - "from": [6, 13, 6], - "to": [10, 16, 10], + "from": [4, 1, 4], + "to": [12, 4, 12], "faces": { - "north": {"uv": [1, 4.25, 2, 5], "texture": "#1"}, - "east": {"uv": [0, 4.25, 1, 5], "texture": "#1"}, - "south": {"uv": [3, 4.25, 4, 5], "texture": "#1"}, - "west": {"uv": [2, 4.25, 3, 5], "texture": "#1"}, - "up": {"uv": [2, 4.25, 1, 3.25], "texture": "#1"}, - "down": {"uv": [3, 3.25, 2, 4.25], "texture": "#1"} + "north": {"uv": [4, 4, 8, 5.5], "texture": "#0"}, + "east": {"uv": [0, 4, 4, 5.5], "texture": "#0"}, + "south": {"uv": [12, 4, 16, 5.5], "texture": "#0"}, + "west": {"uv": [8, 4, 12, 5.5], "texture": "#0"}, + "up": {"uv": [8, 4, 4, 0], "texture": "#0"}, + "down": {"uv": [12, 0, 8, 4], "texture": "#0"} } }, { "name": "root", - "from": [7, 7, 7], - "to": [9, 13, 9], + "from": [6.5, 13, 6.5], + "to": [9.5, 16, 9.5], "faces": { - "north": {"uv": [0.5, 0.5, 1, 2], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 2], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 2], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} + "north": {"uv": [1.5, 9.5, 3, 11], "texture": "#0"}, + "east": {"uv": [0, 9.5, 1.5, 11], "texture": "#0"}, + "south": {"uv": [4.5, 9.5, 6, 11], "texture": "#0"}, + "west": {"uv": [3, 9.5, 4.5, 11], "texture": "#0"}, + "up": {"uv": [3, 9.5, 1.5, 8], "texture": "#0"}, + "down": {"uv": [4.5, 8, 3, 9.5], "texture": "#0"} } }, { "name": "root", - "from": [4, 2, 4], - "to": [12, 7, 12], + "from": [6.5, 4, 6.5], + "to": [9.5, 7, 9.5], "faces": { - "north": {"uv": [2, 2, 4, 3.25], "texture": "#1"}, - "east": {"uv": [0, 2, 2, 3.25], "texture": "#1"}, - "south": {"uv": [6, 2, 8, 3.25], "texture": "#1"}, - "west": {"uv": [4, 2, 6, 3.25], "texture": "#1"}, - "up": {"uv": [4, 2, 2, 0], "texture": "#1"}, - "down": {"uv": [6, 0, 4, 2], "texture": "#1"} + "north": {"uv": [7.5, 8, 9, 9.5], "texture": "#0"}, + "east": {"uv": [6, 8, 7.5, 9.5], "texture": "#0"}, + "south": {"uv": [10.5, 8, 12, 9.5], "texture": "#0"}, + "west": {"uv": [9, 8, 10.5, 9.5], "texture": "#0"}, + "up": {"uv": [9, 8, 7.5, 6.5], "texture": "#0"}, + "down": {"uv": [10.5, 6.5, 9, 8], "texture": "#0"} } }, { "name": "root", - "from": [6, 0, 6], - "to": [10, 2, 10], + "from": [5.5, 7, 5.5], + "to": [10.5, 7, 10.5], "faces": { - "north": {"uv": [4, 5, 5, 5.5], "texture": "#1"}, - "east": {"uv": [3, 5, 4, 5.5], "texture": "#1"}, - "south": {"uv": [6, 5, 7, 5.5], "texture": "#1"}, - "west": {"uv": [5, 5, 6, 5.5], "texture": "#1"}, - "up": {"uv": [5, 5, 4, 4], "texture": "#1"}, - "down": {"uv": [6, 4, 5, 5], "texture": "#1"} + "north": {"uv": [2.5, 8, 5, 8], "texture": "#0"}, + "east": {"uv": [0, 8, 2.5, 8], "texture": "#0"}, + "south": {"uv": [7.5, 8, 10, 8], "texture": "#0"}, + "west": {"uv": [5, 8, 7.5, 8], "texture": "#0"}, + "up": {"uv": [5, 8, 2.5, 5.5], "texture": "#0"}, + "down": {"uv": [7.5, 5.5, 5, 8], "texture": "#0"} } }, { "name": "root", - "from": [-8, 1, -8], - "to": [24, 1, 24], + "from": [7.5, 6, 7.5], + "to": [8.5, 13, 8.5], "faces": { - "up": {"uv": [16, 16, 0, 0], "texture": "#0"}, - "down": {"uv": [16, 0, 0, 16], "texture": "#0"} + "north": {"uv": [0.5, 0.5, 1, 4], "texture": "#0"}, + "east": {"uv": [0, 0.5, 0.5, 4], "texture": "#0"}, + "south": {"uv": [1.5, 0.5, 2, 4], "texture": "#0"}, + "west": {"uv": [1, 0.5, 1.5, 4], "texture": "#0"}, + "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#0"}, + "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#0"} + } + }, + { + "name": "root", + "from": [-8, 2.5, -8], + "to": [24, 2.5, 24], + "faces": { + "north": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "east": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "south": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "west": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "up": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} } } ], - "display": {}, "groups": [ { - "name": "root", - "origin": [0, 0, 0], + "name": "group", + "origin": [8, 8, 8], "color": 0, "nbt": "{}", - "children": [0, 1, 2, 3, 4] + "children": [ + 0, + 1, + 2, + 3, + 4, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "nbt": "{}", + "children": [5] + } + ] } ] } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/ceiling_lamp.json b/src/main/resources/assets/new_soviet/models/block/ceiling_lamp.json index f7a1822..5048ecd 100644 --- a/src/main/resources/assets/new_soviet/models/block/ceiling_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/ceiling_lamp.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/furniture/ceiling_lamp", "particle": "new_soviet:block/custom/furniture/ceiling_lamp" diff --git a/src/main/resources/assets/new_soviet/models/block/black_checker.json b/src/main/resources/assets/new_soviet/models/block/checkers/black_checker.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/black_checker.json rename to src/main/resources/assets/new_soviet/models/block/checkers/black_checker.json diff --git a/src/main/resources/assets/new_soviet/models/block/black_checker2.json b/src/main/resources/assets/new_soviet/models/block/checkers/black_checker2.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/black_checker2.json rename to src/main/resources/assets/new_soviet/models/block/checkers/black_checker2.json diff --git a/src/main/resources/assets/new_soviet/models/block/black_checker3.json b/src/main/resources/assets/new_soviet/models/block/checkers/black_checker3.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/black_checker3.json rename to src/main/resources/assets/new_soviet/models/block/checkers/black_checker3.json diff --git a/src/main/resources/assets/new_soviet/models/block/black_checker4.json b/src/main/resources/assets/new_soviet/models/block/checkers/black_checker4.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/black_checker4.json rename to src/main/resources/assets/new_soviet/models/block/checkers/black_checker4.json diff --git a/src/main/resources/assets/new_soviet/models/block/white_checker.json b/src/main/resources/assets/new_soviet/models/block/checkers/white_checker.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/white_checker.json rename to src/main/resources/assets/new_soviet/models/block/checkers/white_checker.json diff --git a/src/main/resources/assets/new_soviet/models/block/white_checker2.json b/src/main/resources/assets/new_soviet/models/block/checkers/white_checker2.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/white_checker2.json rename to src/main/resources/assets/new_soviet/models/block/checkers/white_checker2.json diff --git a/src/main/resources/assets/new_soviet/models/block/white_checker3.json b/src/main/resources/assets/new_soviet/models/block/checkers/white_checker3.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/white_checker3.json rename to src/main/resources/assets/new_soviet/models/block/checkers/white_checker3.json diff --git a/src/main/resources/assets/new_soviet/models/block/white_checker4.json b/src/main/resources/assets/new_soviet/models/block/checkers/white_checker4.json similarity index 100% rename from src/main/resources/assets/new_soviet/models/block/white_checker4.json rename to src/main/resources/assets/new_soviet/models/block/checkers/white_checker4.json diff --git a/src/main/resources/assets/new_soviet/models/block/chess/bishop.json b/src/main/resources/assets/new_soviet/models/block/chess/bishop.json index 0b7e971..0d63090 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/bishop.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/bishop.json @@ -1,17 +1,21 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/bishop", + "particle": "new_soviet:block/games/chess/white/bishop" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 10, 10], "faces": { - "north": {"uv": [3, 0, 5, 3], "texture": "#missing"}, - "east": {"uv": [3, 0, 5, 3], "texture": "#missing"}, - "south": {"uv": [3, 0, 5, 3], "texture": "#missing"}, - "west": {"uv": [3, 0, 5, 3], "texture": "#missing"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#missing"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#missing"} + "north": {"uv": [3, 0, 5, 3], "texture": "#0"}, + "east": {"uv": [3, 0, 5, 3], "texture": "#0"}, + "south": {"uv": [3, 0, 5, 3], "texture": "#0"}, + "west": {"uv": [3, 0, 5, 3], "texture": "#0"}, + "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, + "down": {"uv": [3, 0, 5, 2], "texture": "#0"} } }, { @@ -19,12 +23,12 @@ "to": [11, 16, 11], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [10.5, 3, 13.5, 6], "texture": "#missing"}, - "east": {"uv": [10.5, 0, 13.5, 3], "texture": "#missing"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#missing"}, - "west": {"uv": [13.5, 0, 10.5, 3], "texture": "#missing"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#missing"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#missing"} + "north": {"uv": [10.5, 3, 13.5, 6], "texture": "#0"}, + "east": {"uv": [10.5, 0, 13.5, 3], "texture": "#0"}, + "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, + "west": {"uv": [13.5, 0, 10.5, 3], "texture": "#0"}, + "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, + "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} } }, { @@ -32,36 +36,36 @@ "to": [11, 9, 11], "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 3, 0.5]}, "faces": { - "north": {"uv": [1, 4.5, 4, 5], "texture": "#missing"}, - "east": {"uv": [1, 4.5, 4, 5], "texture": "#missing"}, - "south": {"uv": [1, 4.5, 4, 5], "texture": "#missing"}, - "west": {"uv": [1, 4.5, 4, 5], "texture": "#missing"}, - "up": {"uv": [1, 5, 4, 8], "texture": "#missing"}, - "down": {"uv": [1, 5, 4, 8], "texture": "#missing"} + "north": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, + "east": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, + "south": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, + "west": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, + "up": {"uv": [1, 5, 4, 8], "texture": "#0"}, + "down": {"uv": [1, 5, 4, 8], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } }, { @@ -69,12 +73,12 @@ "to": [9, 19, 9], "rotation": {"angle": 0, "axis": "y", "origin": [5, 16, 7]}, "faces": { - "north": {"uv": [3, 3, 4, 4.5], "texture": "#missing"}, - "east": {"uv": [3, 3, 4, 4.5], "texture": "#missing"}, - "south": {"uv": [3, 3, 4, 4.5], "texture": "#missing"}, - "west": {"uv": [3, 3, 4, 4.5], "texture": "#missing"}, - "up": {"uv": [4, 3, 5, 4], "texture": "#missing"}, - "down": {"uv": [4, 3, 5, 4], "texture": "#missing"} + "north": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, + "east": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, + "south": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, + "west": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, + "up": {"uv": [4, 3, 5, 4], "texture": "#0"}, + "down": {"uv": [4, 3, 5, 4], "texture": "#0"} } } ], diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/bishop.json b/src/main/resources/assets/new_soviet/models/block/chess/black/bishop.json index ad92e68..71f02ca 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/bishop.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/bishop.json @@ -1,130 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/bishop", "textures": { "0": "new_soviet:block/games/chess/black/bishop", "particle": "new_soviet:block/games/chess/black/bishop" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 10, 10], - "faces": { - "north": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5, 10, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [10.5, 3, 13.5, 6], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 3], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "west": {"uv": [13.5, 0, 10.5, 3], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 8, 5], - "to": [11, 9, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 3, 0.5]}, - "faces": { - "north": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "east": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "south": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "west": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "up": {"uv": [1, 5, 4, 8], "texture": "#0"}, - "down": {"uv": [1, 5, 4, 8], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [7, 16, 7], - "to": [9, 19, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 16, 7]}, - "faces": { - "north": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "east": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "south": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "west": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "up": {"uv": [4, 3, 5, 4], "texture": "#0"}, - "down": {"uv": [4, 3, 5, 4], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/king.json b/src/main/resources/assets/new_soviet/models/block/chess/black/king.json index c16c75d..d65b721 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/king.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/king.json @@ -1,241 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/king", "textures": { "0": "new_soviet:block/games/chess/black/king", "particle": "new_soviet:block/games/chess/black/king" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 13, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 13, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [8, 19, 5], - "to": [8, 21, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} - } - }, - { - "from": [8, 16, 6], - "to": [8, 17, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} - } - }, - { - "from": [8, 17, 7], - "to": [8, 19, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} - } - }, - { - "from": [8, 21, 7], - "to": [8, 23, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} - } - }, - { - "from": [6, 16, 8], - "to": [10, 17, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} - } - }, - { - "from": [7, 17, 8], - "to": [9, 19, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} - } - }, - { - "from": [7, 21, 8], - "to": [9, 23, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} - } - }, - { - "from": [5, 19, 8], - "to": [11, 21, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - }, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/knight.json b/src/main/resources/assets/new_soviet/models/block/chess/black/knight.json index 637ad67..006e482 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/knight.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/knight.json @@ -1,142 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/knight", "textures": { "0": "new_soviet:block/games/chess/black/knight", "particle": "new_soviet:block/games/chess/black/knight" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 12, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 0, 3, 4], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 11, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [9, 2, 11.5, 4], "texture": "#0"}, - "east": {"uv": [9, 0, 5, 2], "texture": "#0"}, - "south": {"uv": [8.5, 0, 9, 2], "texture": "#0"}, - "west": {"uv": [5, 0, 9, 2], "texture": "#0"}, - "up": {"uv": [7.5, 4, 11.5, 6.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [9, 1.5, 5, 2], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [7.5, 8, 6], - "to": [8.5, 17, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [13.5, 3, 14, 7.5], "texture": "#0"}, - "east": {"uv": [16, 3, 13.5, 7.5], "texture": "#0"}, - "south": {"uv": [15.5, 3, 16, 7.5], "texture": "#0"}, - "west": {"uv": [13.5, 3, 16, 7.5], "texture": "#0"}, - "up": {"uv": [13.5, 3, 16, 3.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [15.5, 3, 16, 5.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/pawn.json b/src/main/resources/assets/new_soviet/models/block/chess/black/pawn.json index 3566af9..974f75d 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/pawn.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/pawn.json @@ -1,116 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/pawn", "textures": { "0": "new_soviet:block/games/chess/black/pawn", "particle": "new_soviet:block/games/chess/black/pawn" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 9, 10], - "faces": { - "north": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5, 8, 5], - "to": [11, 14, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "east": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "west": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/queen.json b/src/main/resources/assets/new_soviet/models/block/chess/black/queen.json index 5742ab3..44b987d 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/queen.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/queen.json @@ -1,185 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/queen", "textures": { "0": "new_soviet:block/games/chess/black/queen", "particle": "new_soviet:block/games/chess/black/queen" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 13, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 13, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [8, 16, 5], - "to": [8, 19, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "east": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "west": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "texture": "#0"} - } - }, - { - "from": [8, 19, 6], - "to": [8, 20, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "east": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "south": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "west": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "up": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "down": {"uv": [8, 3, 10, 3.5], "texture": "#0"} - } - }, - { - "from": [5, 16, 8], - "to": [11, 19, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "south": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [6, 19, 8], - "to": [10, 20, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "east": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "south": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "west": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "up": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "down": {"uv": [8, 3, 10, 3.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - }, - 6, - 7, - 8, - 9 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/black/rook.json b/src/main/resources/assets/new_soviet/models/block/chess/black/rook.json index 6447de6..cbe1662 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/black/rook.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/black/rook.json @@ -1,131 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/rook", "textures": { "0": "new_soviet:block/games/chess/black/rook", "particle": "new_soviet:block/games/chess/black/rook" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 10, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -2, 0]}, - "faces": { - "north": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 1, 3, 4], "texture": "#0"}, - "south": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "west": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "up": {"uv": [3, 0.5, 5, 2.5], "texture": "#0"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} - } - }, - { - "from": [5, 10, 5], - "to": [11, 15, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 9]}, - "faces": { - "north": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "east": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "west": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [8, 0, 11, 3], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4] - }, - 5 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/king.json b/src/main/resources/assets/new_soviet/models/block/chess/king.json index c5d265d..cf450d9 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/king.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/king.json @@ -1,29 +1,33 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/king", + "particle": "new_soviet:block/games/chess/white/king" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 13, 10], "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#missing"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#missing"} + "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, + "down": {"uv": [3, 0, 5, 2], "texture": "#0"} } }, { "from": [5.5, 5, 5.5], "to": [10.5, 6, 10.5], "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"} + "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, + "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} } }, { @@ -31,12 +35,12 @@ "to": [10.5, 8, 10.5], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"} + "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, + "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} } }, { @@ -44,62 +48,140 @@ "to": [11, 16, 11], "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#missing"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#missing"} + "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, + "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } }, { - "from": [8, 16, 5], - "to": [8, 23, 11], + "from": [8, 16, 6], + "to": [8, 17, 10], "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "east": {"uv": [7.5, 3, 10.5, 6.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "west": {"uv": [7.5, 3, 10.5, 6.5], "texture": "#missing"}, - "up": {"uv": [0, 0, 0, 3], "texture": "#missing"}, - "down": {"uv": [0, 0, 0, 3], "texture": "#missing"} + "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} } }, { - "from": [5, 16, 8], - "to": [11, 23, 8], + "from": [8, 17, 7], + "to": [8, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, + "faces": { + "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} + } + }, + { + "from": [8, 21, 7], + "to": [8, 23, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, + "faces": { + "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} + } + }, + { + "from": [8, 19, 5], + "to": [8, 21, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, + "faces": { + "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} + } + }, + { + "from": [5, 19, 8], + "to": [11, 21, 8], "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, "faces": { - "north": {"uv": [7.5, 3, 10.5, 6.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "south": {"uv": [7.5, 3, 10.5, 6.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#missing"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#missing"} + "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, + "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} + } + }, + { + "from": [7, 21, 8], + "to": [9, 23, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, + "faces": { + "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, + "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} + } + }, + { + "from": [7, 17, 8], + "to": [9, 19, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, + "faces": { + "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, + "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} + } + }, + { + "from": [6, 16, 8], + "to": [10, 17, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, + "faces": { + "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, + "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} } } ], @@ -148,6 +230,12 @@ "children": [0, 1, 2, 3, 4, 5] }, 6, - 7 + 7, + 8, + 9, + 10, + 11, + 12, + 13 ] } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/knight.json b/src/main/resources/assets/new_soviet/models/block/chess/knight.json index 2eba977..7514819 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/knight.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/knight.json @@ -1,17 +1,21 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/knight", + "particle": "new_soviet:block/games/chess/white/knight" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 12, 10], "faces": { - "north": {"uv": [3, 0, 5, 4], "texture": "#missing"}, - "east": {"uv": [5, 0, 3, 4], "texture": "#missing"}, - "south": {"uv": [3, 0, 5, 4], "texture": "#missing"}, - "west": {"uv": [3, 0, 5, 4], "texture": "#missing"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#missing"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#missing"} + "north": {"uv": [3, 0, 5, 4], "texture": "#0"}, + "east": {"uv": [5, 0, 3, 4], "texture": "#0"}, + "south": {"uv": [3, 0, 5, 4], "texture": "#0"}, + "west": {"uv": [3, 0, 5, 4], "texture": "#0"}, + "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, + "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} } }, { @@ -19,12 +23,12 @@ "to": [10.5, 11, 13.5], "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 1, 0]}, "faces": { - "north": {"uv": [9, 2, 11.5, 4], "texture": "#missing"}, - "east": {"uv": [9, 0, 5, 2], "texture": "#missing"}, - "south": {"uv": [8.5, 0, 9, 2], "texture": "#missing"}, - "west": {"uv": [5, 0, 9, 2], "texture": "#missing"}, - "up": {"uv": [7.5, 4, 11.5, 6.5], "rotation": 90, "texture": "#missing"}, - "down": {"uv": [9, 1.5, 5, 2], "rotation": 90, "texture": "#missing"} + "north": {"uv": [9, 2, 11.5, 4], "texture": "#0"}, + "east": {"uv": [9, 0, 5, 2], "texture": "#0"}, + "south": {"uv": [8.5, 0, 9, 2], "texture": "#0"}, + "west": {"uv": [5, 0, 9, 2], "texture": "#0"}, + "up": {"uv": [7.5, 4, 11.5, 6.5], "rotation": 90, "texture": "#0"}, + "down": {"uv": [9, 1.5, 5, 2], "rotation": 90, "texture": "#0"} } }, { @@ -32,48 +36,48 @@ "to": [8.5, 17, 11], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [13.5, 3, 14, 7.5], "texture": "#missing"}, - "east": {"uv": [16, 3, 13.5, 7.5], "texture": "#missing"}, - "south": {"uv": [15.5, 3, 16, 7.5], "texture": "#missing"}, - "west": {"uv": [13.5, 3, 16, 7.5], "texture": "#missing"}, - "up": {"uv": [13.5, 3, 16, 3.5], "rotation": 90, "texture": "#missing"}, - "down": {"uv": [15.5, 3, 16, 5.5], "texture": "#missing"} + "north": {"uv": [13.5, 3, 14, 7.5], "texture": "#0"}, + "east": {"uv": [16, 3, 13.5, 7.5], "texture": "#0"}, + "south": {"uv": [15.5, 3, 16, 7.5], "texture": "#0"}, + "west": {"uv": [13.5, 3, 16, 7.5], "texture": "#0"}, + "up": {"uv": [13.5, 3, 16, 3.5], "rotation": 90, "texture": "#0"}, + "down": {"uv": [15.5, 3, 16, 5.5], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } }, { "from": [5.5, 5, 5.5], "to": [10.5, 6, 10.5], "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"} + "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, + "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} } }, { @@ -81,12 +85,12 @@ "to": [10.5, 8, 10.5], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#missing"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#missing"} + "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, + "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} } } ], diff --git a/src/main/resources/assets/new_soviet/models/block/chess/pawn.json b/src/main/resources/assets/new_soviet/models/block/chess/pawn.json index b39c20f..c3ece34 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/pawn.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/pawn.json @@ -1,17 +1,21 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/pawn", + "particle": "new_soviet:block/games/chess/white/pawn" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 9, 10], "faces": { - "north": {"uv": [3, 0, 5, 2.5], "texture": "#missing"}, - "east": {"uv": [3, 0, 5, 2.5], "texture": "#missing"}, - "south": {"uv": [3, 0, 5, 2.5], "texture": "#missing"}, - "west": {"uv": [3, 0, 5, 2.5], "texture": "#missing"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#missing"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#missing"} + "north": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, + "east": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, + "south": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, + "west": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, + "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, + "down": {"uv": [3, 0, 5, 2], "texture": "#0"} } }, { @@ -19,48 +23,48 @@ "to": [11, 14, 11], "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, "faces": { - "north": {"uv": [5, 0, 8, 3], "texture": "#missing"}, - "east": {"uv": [5, 0, 8, 3], "texture": "#missing"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#missing"}, - "west": {"uv": [5, 0, 8, 3], "texture": "#missing"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#missing"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#missing"} + "north": {"uv": [5, 0, 8, 3], "texture": "#0"}, + "east": {"uv": [5, 0, 8, 3], "texture": "#0"}, + "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, + "west": {"uv": [5, 0, 8, 3], "texture": "#0"}, + "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, + "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} } }, { "from": [5.5, 5, 5.5], "to": [10.5, 6, 10.5], "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"} + "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, + "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } } ], diff --git a/src/main/resources/assets/new_soviet/models/block/chess/queen.json b/src/main/resources/assets/new_soviet/models/block/chess/queen.json index 47f9e00..1f43ed7 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/queen.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/queen.json @@ -1,29 +1,33 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/queen", + "particle": "new_soviet:block/games/chess/white/queen" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 13, 10], "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#missing"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#missing"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#missing"} + "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, + "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, + "down": {"uv": [3, 0, 5, 2], "texture": "#0"} } }, { "from": [5.5, 5, 5.5], "to": [10.5, 6, 10.5], "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"} + "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, + "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} } }, { @@ -31,12 +35,12 @@ "to": [10.5, 8, 10.5], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#missing"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#missing"} + "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, + "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, + "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} } }, { @@ -44,62 +48,88 @@ "to": [11, 16, 11], "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#missing"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#missing"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#missing"} + "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, + "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, + "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } }, { "from": [8, 16, 5], - "to": [8, 20, 11], + "to": [8, 19, 11], "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "east": {"uv": [7.5, 3, 10.5, 5], "texture": "#missing"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "west": {"uv": [7.5, 3, 10.5, 5], "texture": "#missing"}, - "up": {"uv": [0, 0, 0, 3], "texture": "#missing"}, - "down": {"uv": [0, 0, 0, 3], "texture": "#missing"} + "north": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "east": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "west": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 3], "texture": "#0"} + } + }, + { + "from": [8, 19, 6], + "to": [8, 20, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, + "faces": { + "north": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "east": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, + "south": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "west": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 3], "texture": "#0"}, + "down": {"uv": [0, 0, 0, 3], "texture": "#0"} } }, { "from": [5, 16, 8], - "to": [11, 20, 8], + "to": [11, 19, 8], "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, "faces": { - "north": {"uv": [7.5, 3, 10.5, 5], "texture": "#missing"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "south": {"uv": [7.5, 3, 10.5, 5], "texture": "#missing"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#missing"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#missing"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#missing"} + "north": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "south": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#0"} + } + }, + { + "from": [6, 19, 8], + "to": [10, 20, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, + "faces": { + "north": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, + "east": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "south": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, + "west": {"uv": [0, 0, 0, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#0"}, + "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#0"} } } ], @@ -148,6 +178,8 @@ "children": [0, 1, 2, 3, 4, 5] }, 6, - 7 + 7, + 8, + 9 ] } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/rook.json b/src/main/resources/assets/new_soviet/models/block/chess/rook.json index 0393b46..7355c4e 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/rook.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/rook.json @@ -1,54 +1,58 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], + "textures": { + "0": "new_soviet:block/games/chess/white/rook", + "particle": "new_soviet:block/games/chess/white/rook" + }, "elements": [ { "from": [6, 4, 6], "to": [10, 10, 10], "rotation": {"angle": 0, "axis": "y", "origin": [0, -2, 0]}, "faces": { - "north": {"uv": [3, 1, 5, 4], "texture": "#missing"}, - "east": {"uv": [5, 1, 3, 4], "texture": "#missing"}, - "south": {"uv": [3, 1, 5, 4], "texture": "#missing"}, - "west": {"uv": [3, 1, 5, 4], "texture": "#missing"}, - "up": {"uv": [3, 0.5, 5, 2.5], "texture": "#missing"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#missing"} + "north": {"uv": [3, 1, 5, 4], "texture": "#0"}, + "east": {"uv": [5, 1, 3, 4], "texture": "#0"}, + "south": {"uv": [3, 1, 5, 4], "texture": "#0"}, + "west": {"uv": [3, 1, 5, 4], "texture": "#0"}, + "up": {"uv": [3, 0.5, 5, 2.5], "texture": "#0"}, + "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} } }, { "from": [5, 1, 5], "to": [11, 4, 11], "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#missing"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#missing"} + "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, + "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, + "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} } }, { "from": [4, 0, 4], "to": [12, 1, 12], "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#missing"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#missing"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#missing"} + "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, + "down": {"uv": [8, 12, 4, 16], "texture": "#0"} } }, { "from": [5.5, 5, 5.5], "to": [10.5, 6, 10.5], "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#missing"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#missing"} + "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, + "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, + "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} } }, { @@ -56,12 +60,12 @@ "to": [10.5, 8, 10.5], "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#missing"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#missing"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#missing"} + "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, + "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, + "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} } }, { @@ -69,12 +73,12 @@ "to": [11, 15, 11], "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 9]}, "faces": { - "north": {"uv": [5, 0, 8, 2.5], "texture": "#missing"}, - "east": {"uv": [5, 0, 8, 2.5], "texture": "#missing"}, - "south": {"uv": [5, 0, 8, 2.5], "texture": "#missing"}, - "west": {"uv": [5, 0, 8, 2.5], "texture": "#missing"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#missing"}, - "down": {"uv": [8, 0, 11, 3], "texture": "#missing"} + "north": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, + "east": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, + "south": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, + "west": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, + "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, + "down": {"uv": [8, 0, 11, 3], "texture": "#0"} } } ], diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/bishop.json b/src/main/resources/assets/new_soviet/models/block/chess/white/bishop.json index 818723c..16672c3 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/bishop.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/bishop.json @@ -1,130 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/bishop", "textures": { "0": "new_soviet:block/games/chess/white/bishop", "particle": "new_soviet:block/games/chess/white/bishop" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 10, 10], - "faces": { - "north": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 3], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5, 10, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [10.5, 3, 13.5, 6], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 3], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "west": {"uv": [13.5, 0, 10.5, 3], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 8, 5], - "to": [11, 9, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 3, 0.5]}, - "faces": { - "north": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "east": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "south": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "west": {"uv": [1, 4.5, 4, 5], "texture": "#0"}, - "up": {"uv": [1, 5, 4, 8], "texture": "#0"}, - "down": {"uv": [1, 5, 4, 8], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [7, 16, 7], - "to": [9, 19, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [5, 16, 7]}, - "faces": { - "north": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "east": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "south": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "west": {"uv": [3, 3, 4, 4.5], "texture": "#0"}, - "up": {"uv": [4, 3, 5, 4], "texture": "#0"}, - "down": {"uv": [4, 3, 5, 4], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/king.json b/src/main/resources/assets/new_soviet/models/block/chess/white/king.json index dbe65db..6108eab 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/king.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/king.json @@ -1,241 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/king", "textures": { "0": "new_soviet:block/games/chess/white/king", "particle": "new_soviet:block/games/chess/white/king" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 13, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 13, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [8, 16, 6], - "to": [8, 17, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} - } - }, - { - "from": [8, 17, 7], - "to": [8, 19, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} - } - }, - { - "from": [8, 21, 7], - "to": [8, 23, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} - } - }, - { - "from": [8, 19, 5], - "to": [8, 21, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} - } - }, - { - "from": [5, 19, 8], - "to": [11, 21, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "east": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "south": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "west": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "up": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"}, - "down": {"uv": [7.5, 4, 10.5, 5], "texture": "#0"} - } - }, - { - "from": [7, 21, 8], - "to": [9, 23, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "east": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "south": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "west": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "up": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"}, - "down": {"uv": [8.5, 3, 9.5, 4], "texture": "#0"} - } - }, - { - "from": [7, 17, 8], - "to": [9, 19, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "east": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "south": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "west": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "up": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"}, - "down": {"uv": [8.5, 5, 9.5, 6], "texture": "#0"} - } - }, - { - "from": [6, 16, 8], - "to": [10, 17, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "east": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "south": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "west": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "up": {"uv": [8, 6, 10, 6.5], "texture": "#0"}, - "down": {"uv": [8, 6, 10, 6.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - }, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/knight.json b/src/main/resources/assets/new_soviet/models/block/chess/white/knight.json index ac09fcc..1a20b83 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/knight.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/knight.json @@ -1,142 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/knight", "textures": { "0": "new_soviet:block/games/chess/white/knight", "particle": "new_soviet:block/games/chess/white/knight" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 12, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 0, 3, 4], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 11, 13.5], - "rotation": {"angle": -22.5, "axis": "x", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [9, 2, 11.5, 4], "texture": "#0"}, - "east": {"uv": [9, 0, 5, 2], "texture": "#0"}, - "south": {"uv": [8.5, 0, 9, 2], "texture": "#0"}, - "west": {"uv": [5, 0, 9, 2], "texture": "#0"}, - "up": {"uv": [7.5, 4, 11.5, 6.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [9, 1.5, 5, 2], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [7.5, 8, 6], - "to": [8.5, 17, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [13.5, 3, 14, 7.5], "texture": "#0"}, - "east": {"uv": [16, 3, 13.5, 7.5], "texture": "#0"}, - "south": {"uv": [15.5, 3, 16, 7.5], "texture": "#0"}, - "west": {"uv": [13.5, 3, 16, 7.5], "texture": "#0"}, - "up": {"uv": [13.5, 3, 16, 3.5], "rotation": 90, "texture": "#0"}, - "down": {"uv": [15.5, 3, 16, 5.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5, 6] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/pawn.json b/src/main/resources/assets/new_soviet/models/block/chess/white/pawn.json index 6ca9dcc..9d78718 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/pawn.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/pawn.json @@ -1,116 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/pawn", "textures": { "0": "new_soviet:block/games/chess/white/pawn", "particle": "new_soviet:block/games/chess/white/pawn" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 9, 10], - "faces": { - "north": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 2.5], "texture": "#0"}, - "up": {"uv": [3, 0, 5, 2], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5, 8, 5], - "to": [11, 14, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1, 0]}, - "faces": { - "north": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "east": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "west": {"uv": [5, 0, 8, 3], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [5, 2.5, 5.5, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4] - } - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/queen.json b/src/main/resources/assets/new_soviet/models/block/chess/white/queen.json index 2c0455c..76e17b2 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/queen.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/queen.json @@ -1,185 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/queen", "textures": { "0": "new_soviet:block/games/chess/white/queen", "particle": "new_soviet:block/games/chess/white/queen" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 13, 10], - "faces": { - "north": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "east": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "south": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "west": {"uv": [3, 0, 5, 4.5], "texture": "#0"}, - "up": {"uv": [3, 4.5, 5, 6.5], "texture": "#0"}, - "down": {"uv": [3, 0, 5, 2], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "east": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "south": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "west": {"uv": [8, 0, 10.5, 0.5], "texture": "#0"}, - "up": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"}, - "down": {"uv": [8, 0.5, 10.5, 3], "texture": "#0"} - } - }, - { - "from": [5, 13, 5], - "to": [11, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [-0.5, 0, 0.5]}, - "faces": { - "north": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "east": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "south": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "west": {"uv": [10.5, 0, 13.5, 1.5], "texture": "#0"}, - "up": {"uv": [10.5, 4.5, 13.5, 7.5], "texture": "#0"}, - "down": {"uv": [10.5, 1.5, 13.5, 4.5], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [8, 16, 5], - "to": [8, 19, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "east": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "west": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "texture": "#0"} - } - }, - { - "from": [8, 19, 6], - "to": [8, 20, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [6, 16, 5]}, - "faces": { - "north": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "east": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "south": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "west": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "texture": "#0"} - } - }, - { - "from": [5, 16, 8], - "to": [11, 19, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "south": {"uv": [7.5, 3.5, 10.5, 5], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [6, 19, 8], - "to": [10, 20, 8], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 18, 8]}, - "faces": { - "north": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "east": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "south": {"uv": [8, 3, 10, 3.5], "texture": "#0"}, - "west": {"uv": [0, 0, 0, 2], "texture": "#0"}, - "up": {"uv": [0, 0, 0, 3], "rotation": 270, "texture": "#0"}, - "down": {"uv": [0, 0, 0, 3], "rotation": 90, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.5, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4, 5] - }, - 6, - 7, - 8, - 9 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/chess/white/rook.json b/src/main/resources/assets/new_soviet/models/block/chess/white/rook.json index caa4731..fb8e2b3 100644 --- a/src/main/resources/assets/new_soviet/models/block/chess/white/rook.json +++ b/src/main/resources/assets/new_soviet/models/block/chess/white/rook.json @@ -1,131 +1,7 @@ { - "credit": "Made with Blockbench", - "texture_size": [32, 32], + "parent": "new_soviet:block/chess/rook", "textures": { "0": "new_soviet:block/games/chess/white/rook", "particle": "new_soviet:block/games/chess/white/rook" - }, - "elements": [ - { - "from": [6, 4, 6], - "to": [10, 10, 10], - "rotation": {"angle": 0, "axis": "y", "origin": [0, -2, 0]}, - "faces": { - "north": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "east": {"uv": [5, 1, 3, 4], "texture": "#0"}, - "south": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "west": {"uv": [3, 1, 5, 4], "texture": "#0"}, - "up": {"uv": [3, 0.5, 5, 2.5], "texture": "#0"}, - "down": {"uv": [4.5, 3.5, 5, 4], "texture": "#0"} - } - }, - { - "from": [5, 1, 5], - "to": [11, 4, 11], - "faces": { - "north": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "east": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "south": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "west": {"uv": [0, 0, 3, 1.5], "texture": "#0"}, - "up": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"}, - "down": {"uv": [0, 1.5, 3, 4.5], "texture": "#0"} - } - }, - { - "from": [4, 0, 4], - "to": [12, 1, 12], - "faces": { - "north": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "east": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "south": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "west": {"uv": [0, 15.5, 4, 16], "texture": "#0"}, - "up": {"uv": [0, 11.5, 4, 15.5], "texture": "#0"}, - "down": {"uv": [8, 12, 4, 16], "texture": "#0"} - } - }, - { - "from": [5.5, 5, 5.5], - "to": [10.5, 6, 10.5], - "faces": { - "north": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "east": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "south": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "west": {"uv": [13.5, 0, 16, 0.5], "texture": "#0"}, - "up": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"}, - "down": {"uv": [13.5, 0.5, 16, 3], "texture": "#0"} - } - }, - { - "from": [5.5, 7, 5.5], - "to": [10.5, 8, 10.5], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 2, 0]}, - "faces": { - "north": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "east": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "south": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "west": {"uv": [0, 5.5, 2.5, 6], "texture": "#0"}, - "up": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"}, - "down": {"uv": [0, 6, 2.5, 8.5], "texture": "#0"} - } - }, - { - "from": [5, 10, 5], - "to": [11, 15, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [8, 11, 9]}, - "faces": { - "north": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "east": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "south": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "west": {"uv": [5, 0, 8, 2.5], "texture": "#0"}, - "up": {"uv": [5, 3, 8, 6], "texture": "#0"}, - "down": {"uv": [8, 0, 11, 3], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "rotation": [50, 30, 0], - "translation": [0, 1.25, 1], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "rotation": [-15, 10, 0], - "translation": [-1, 5.5, 3.5], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "translation": [0, 3.5, 0], - "scale": [0.6, 0.6, 0.6] - }, - "gui": { - "rotation": [0, 150, 0], - "translation": [0, -1.25, 0], - "scale": [0.8, 0.8, 0.8] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -14], - "scale": [2, 2, 2] - } - }, - "groups": [ - { - "name": "group", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1, 2, 3, 4] - }, - 5 - ] + } } \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/block/concrete_wall_inventory.json b/src/main/resources/assets/new_soviet/models/block/concrete_wall_inventory.json index 5ce596b..2c128d9 100644 --- a/src/main/resources/assets/new_soviet/models/block/concrete_wall_inventory.json +++ b/src/main/resources/assets/new_soviet/models/block/concrete_wall_inventory.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "parent": "block/block", "ambientocclusion": false, "textures": { diff --git a/src/main/resources/assets/new_soviet/models/block/concrete_wall_post.json b/src/main/resources/assets/new_soviet/models/block/concrete_wall_post.json index 2e58ef1..38341f2 100644 --- a/src/main/resources/assets/new_soviet/models/block/concrete_wall_post.json +++ b/src/main/resources/assets/new_soviet/models/block/concrete_wall_post.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "1": "new_soviet:block/industrial/po_2_wall/po2_pillar", "particle": "new_soviet:block/industrial/po_2_wall/po2" diff --git a/src/main/resources/assets/new_soviet/models/block/concrete_wall_side.json b/src/main/resources/assets/new_soviet/models/block/concrete_wall_side.json index 635353f..fbda078 100644 --- a/src/main/resources/assets/new_soviet/models/block/concrete_wall_side.json +++ b/src/main/resources/assets/new_soviet/models/block/concrete_wall_side.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/industrial/po_2_wall/po2", "1": "new_soviet:block/industrial/po_2_wall/po2_side", diff --git a/src/main/resources/assets/new_soviet/models/block/concrete_wall_side_tall.json b/src/main/resources/assets/new_soviet/models/block/concrete_wall_side_tall.json index 63f3187..b351ea3 100644 --- a/src/main/resources/assets/new_soviet/models/block/concrete_wall_side_tall.json +++ b/src/main/resources/assets/new_soviet/models/block/concrete_wall_side_tall.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/industrial/po_2_wall/po2", "1": "new_soviet:block/industrial/po_2_wall/po2_side", diff --git a/src/main/resources/assets/new_soviet/models/block/crate.json b/src/main/resources/assets/new_soviet/models/block/crate.json index d78b9d6..7bbe1ef 100644 --- a/src/main/resources/assets/new_soviet/models/block/crate.json +++ b/src/main/resources/assets/new_soviet/models/block/crate.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "1": "new_soviet:block/industrial/crate_1", "2": "new_soviet:block/industrial/crate_2", diff --git a/src/main/resources/assets/new_soviet/models/block/golden_table_lamp.json b/src/main/resources/assets/new_soviet/models/block/golden_table_lamp.json index f9ce546..15f292a 100644 --- a/src/main/resources/assets/new_soviet/models/block/golden_table_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/golden_table_lamp.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], "textures": { "0": "new_soviet:block/custom/furniture/golden_table_lamp", diff --git a/src/main/resources/assets/new_soviet/models/block/handrail/handrail.json b/src/main/resources/assets/new_soviet/models/block/handrail/handrail.json index cf839ad..bff7b84 100644 --- a/src/main/resources/assets/new_soviet/models/block/handrail/handrail.json +++ b/src/main/resources/assets/new_soviet/models/block/handrail/handrail.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [64, 64], "textures": { "0": "new_soviet:block/custom/handrail", diff --git a/src/main/resources/assets/new_soviet/models/block/handrail/handrail_left.json b/src/main/resources/assets/new_soviet/models/block/handrail/handrail_left.json index bb17a8a..4ec50bb 100644 --- a/src/main/resources/assets/new_soviet/models/block/handrail/handrail_left.json +++ b/src/main/resources/assets/new_soviet/models/block/handrail/handrail_left.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [64, 64], "textures": { "0": "new_soviet:block/custom/handrail", diff --git a/src/main/resources/assets/new_soviet/models/block/handrail/handrail_right.json b/src/main/resources/assets/new_soviet/models/block/handrail/handrail_right.json index c89000c..71a8a7f 100644 --- a/src/main/resources/assets/new_soviet/models/block/handrail/handrail_right.json +++ b/src/main/resources/assets/new_soviet/models/block/handrail/handrail_right.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [64, 64], "textures": { "0": "new_soviet:block/custom/handrail", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post.json b/src/main/resources/assets/new_soviet/models/block/lamp_post.json index a768424..85b8c89 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "0": "new_soviet:block/lamp_post/lamp_post", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post_2.json b/src/main/resources/assets/new_soviet/models/block/lamp_post_2.json index 628c311..313ea6c 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post_2.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post_2.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "1": "new_soviet:block/lamp_post/lamp_post_2", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post_3.json b/src/main/resources/assets/new_soviet/models/block/lamp_post_3.json index 65422cf..fbee71e 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post_3.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post_3.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [80, 80], "textures": { "1": "new_soviet:block/lamp_post/lamp_post", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post_4.json b/src/main/resources/assets/new_soviet/models/block/lamp_post_4.json index 36f9c8b..b369491 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post_4.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post_4.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "0": "new_soviet:block/lamp_post/lamp_post_4", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post_base.json b/src/main/resources/assets/new_soviet/models/block/lamp_post_base.json index 67e477e..6b81995 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post_base.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post_base.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "0": "new_soviet:block/lamp_post/lamp_post", diff --git a/src/main/resources/assets/new_soviet/models/block/lamp_post_base_attached.json b/src/main/resources/assets/new_soviet/models/block/lamp_post_base_attached.json index 384e1a4..4ba754d 100644 --- a/src/main/resources/assets/new_soviet/models/block/lamp_post_base_attached.json +++ b/src/main/resources/assets/new_soviet/models/block/lamp_post_base_attached.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [48, 48], "textures": { "0": "new_soviet:block/lamp_post/lamp_post", diff --git a/src/main/resources/assets/new_soviet/models/block/landmine.json b/src/main/resources/assets/new_soviet/models/block/landmine.json index b124832..0b23b2e 100644 --- a/src/main/resources/assets/new_soviet/models/block/landmine.json +++ b/src/main/resources/assets/new_soviet/models/block/landmine.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], "textures": { "0": "new_soviet:block/combat/ap_mine", diff --git a/src/main/resources/assets/new_soviet/models/block/light_bulb_broken.json b/src/main/resources/assets/new_soviet/models/block/light_bulb_broken.json index 80b3a3a..630d8ba 100644 --- a/src/main/resources/assets/new_soviet/models/block/light_bulb_broken.json +++ b/src/main/resources/assets/new_soviet/models/block/light_bulb_broken.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/furniture/light_bulb_off", "particle": "new_soviet:block/custom/furniture/light_bulb_off" diff --git a/src/main/resources/assets/new_soviet/models/block/light_bulb_on.json b/src/main/resources/assets/new_soviet/models/block/light_bulb_on.json index b2eacc2..79bd3ce 100644 --- a/src/main/resources/assets/new_soviet/models/block/light_bulb_on.json +++ b/src/main/resources/assets/new_soviet/models/block/light_bulb_on.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/furniture/light_bulb_on", "particle": "new_soviet:block/custom/furniture/light_bulb_on" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_1.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_1.json index 0748dc0..25f6fbc 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_1.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_1.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_2.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_2.json index c4e0d78..f0bf9e3 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_2.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_2.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_3.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_3.json index 41b1ea5..ea500db 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_3.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_3.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_4.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_4.json index a228403..cf97dc4 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_4.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_4.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_5.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_5.json index 6156664..1f6b04f 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_5.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_5.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_6.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_6.json index 70f5dd0..4739a1a 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_6.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_6.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_7.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_7.json index 7947b03..232b0de 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_7.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_7.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/purple_goo_8.json b/src/main/resources/assets/new_soviet/models/block/purple_goo_8.json index 6dc25d2..19f3d11 100644 --- a/src/main/resources/assets/new_soviet/models/block/purple_goo_8.json +++ b/src/main/resources/assets/new_soviet/models/block/purple_goo_8.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/purple_goo/purple_goo", "particle": "new_soviet:block/purple_goo/purple_goo" diff --git a/src/main/resources/assets/new_soviet/models/block/radio_receiver.json b/src/main/resources/assets/new_soviet/models/block/radio_receiver.json index 60ce66f..c9ba0c6 100644 --- a/src/main/resources/assets/new_soviet/models/block/radio_receiver.json +++ b/src/main/resources/assets/new_soviet/models/block/radio_receiver.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], "textures": { "0": "new_soviet:block/custom/electronics/radio", diff --git a/src/main/resources/assets/new_soviet/models/block/siren.json b/src/main/resources/assets/new_soviet/models/block/siren.json index aea0420..71e80be 100644 --- a/src/main/resources/assets/new_soviet/models/block/siren.json +++ b/src/main/resources/assets/new_soviet/models/block/siren.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [32, 32], "textures": { "0": "new_soviet:block/custom/electronics/siren", diff --git a/src/main/resources/assets/new_soviet/models/block/switch_type_1_off.json b/src/main/resources/assets/new_soviet/models/block/switch_type_1_off.json index c4532e0..bc3fdd2 100644 --- a/src/main/resources/assets/new_soviet/models/block/switch_type_1_off.json +++ b/src/main/resources/assets/new_soviet/models/block/switch_type_1_off.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/switches/switch_type_1", "particle": "new_soviet:block/custom/switches/switch_type_1" diff --git a/src/main/resources/assets/new_soviet/models/block/switch_type_1_on.json b/src/main/resources/assets/new_soviet/models/block/switch_type_1_on.json index 1ec0852..2b07225 100644 --- a/src/main/resources/assets/new_soviet/models/block/switch_type_1_on.json +++ b/src/main/resources/assets/new_soviet/models/block/switch_type_1_on.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/switches/switch_type_1", "particle": "new_soviet:block/custom/switches/switch_type_1" diff --git a/src/main/resources/assets/new_soviet/models/block/switch_type_2_off.json b/src/main/resources/assets/new_soviet/models/block/switch_type_2_off.json index 29cc1cf..c2946d7 100644 --- a/src/main/resources/assets/new_soviet/models/block/switch_type_2_off.json +++ b/src/main/resources/assets/new_soviet/models/block/switch_type_2_off.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/switches/switch_type_2", "particle": "new_soviet:block/custom/switches/switch_type_2" diff --git a/src/main/resources/assets/new_soviet/models/block/switch_type_2_off_fix.json b/src/main/resources/assets/new_soviet/models/block/switch_type_2_off_fix.json index 5048e43..3850ed9 100644 --- a/src/main/resources/assets/new_soviet/models/block/switch_type_2_off_fix.json +++ b/src/main/resources/assets/new_soviet/models/block/switch_type_2_off_fix.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/switches/switch_type_2", "particle": "new_soviet:block/custom/switches/switch_type_2" diff --git a/src/main/resources/assets/new_soviet/models/block/switch_type_2_on.json b/src/main/resources/assets/new_soviet/models/block/switch_type_2_on.json index 5dbfcbd..7010e53 100644 --- a/src/main/resources/assets/new_soviet/models/block/switch_type_2_on.json +++ b/src/main/resources/assets/new_soviet/models/block/switch_type_2_on.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "textures": { "0": "new_soviet:block/custom/switches/switch_type_2", "particle": "new_soviet:block/custom/switches/switch_type_2" diff --git a/src/main/resources/assets/new_soviet/models/block/table_lamp.json b/src/main/resources/assets/new_soviet/models/block/table_lamp.json index e2ec72a..69b6f14 100644 --- a/src/main/resources/assets/new_soviet/models/block/table_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/table_lamp.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "parent": "minecraft:block/cube_all", "texture_size": [64, 64], "textures": { diff --git a/src/main/resources/assets/new_soviet/models/block/tv/tv.json b/src/main/resources/assets/new_soviet/models/block/tv/tv.json index e20ded9..448c4e5 100644 --- a/src/main/resources/assets/new_soviet/models/block/tv/tv.json +++ b/src/main/resources/assets/new_soviet/models/block/tv/tv.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [64, 64], "textures": { "0": "new_soviet:block/custom/electronics/tv/orange_tv", diff --git a/src/main/resources/assets/new_soviet/models/block/vintage_lamp.json b/src/main/resources/assets/new_soviet/models/block/vintage_lamp.json index 41ba3d8..c9e05d9 100644 --- a/src/main/resources/assets/new_soviet/models/block/vintage_lamp.json +++ b/src/main/resources/assets/new_soviet/models/block/vintage_lamp.json @@ -1,5 +1,5 @@ { - "credit": "Made with Blockbench", + "credit": "Made by Feulim Temly with Blockbench", "texture_size": [64, 64], "textures": { "1": "new_soviet:block/custom/furniture/vintage_lamp", diff --git a/src/main/resources/assets/new_soviet/models/item/black_bishop.json b/src/main/resources/assets/new_soviet/models/item/black_bishop.json index a0ab399..f5c0096 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_bishop.json +++ b/src/main/resources/assets/new_soviet/models/item/black_bishop.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/bishop" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_checker.json b/src/main/resources/assets/new_soviet/models/item/black_checker.json index 05c628b..f9ed8ac 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_checker.json +++ b/src/main/resources/assets/new_soviet/models/item/black_checker.json @@ -1,8 +1,7 @@ { - "credit": "Karoter2", + "credit": "Feulim Temly", "parent": "item/generated", "textures": { "layer0": "new_soviet:item/black_checker" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_king.json b/src/main/resources/assets/new_soviet/models/item/black_king.json index c495d98..50e1bfc 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_king.json +++ b/src/main/resources/assets/new_soviet/models/item/black_king.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/king" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_knight.json b/src/main/resources/assets/new_soviet/models/item/black_knight.json index b4eb70e..6446521 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_knight.json +++ b/src/main/resources/assets/new_soviet/models/item/black_knight.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/knight" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_pawn.json b/src/main/resources/assets/new_soviet/models/item/black_pawn.json index feddc88..7108483 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_pawn.json +++ b/src/main/resources/assets/new_soviet/models/item/black_pawn.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/pawn" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_queen.json b/src/main/resources/assets/new_soviet/models/item/black_queen.json index 0a59c73..8118375 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_queen.json +++ b/src/main/resources/assets/new_soviet/models/item/black_queen.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/queen" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/black_rook.json b/src/main/resources/assets/new_soviet/models/item/black_rook.json index 9a99a6b..ab4d40e 100644 --- a/src/main/resources/assets/new_soviet/models/item/black_rook.json +++ b/src/main/resources/assets/new_soviet/models/item/black_rook.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/black/rook" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/brown_tv.json b/src/main/resources/assets/new_soviet/models/item/brown_tv.json index 31ea3ac..c405c3b 100644 --- a/src/main/resources/assets/new_soviet/models/item/brown_tv.json +++ b/src/main/resources/assets/new_soviet/models/item/brown_tv.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/tv/brown_tv" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/ceiling_fan.json b/src/main/resources/assets/new_soviet/models/item/ceiling_fan.json index ade42ea..0320323 100644 --- a/src/main/resources/assets/new_soviet/models/item/ceiling_fan.json +++ b/src/main/resources/assets/new_soviet/models/item/ceiling_fan.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/ceiling_fan_off" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/cigarette.json b/src/main/resources/assets/new_soviet/models/item/cigarette.json index 615d13c..a25de1c 100644 --- a/src/main/resources/assets/new_soviet/models/item/cigarette.json +++ b/src/main/resources/assets/new_soviet/models/item/cigarette.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly with BlockBench", "textures": { "1": "new_soviet:item/cigarette", "particle": "new_soviet:item/cigarette" diff --git a/src/main/resources/assets/new_soviet/models/item/cigarette_butt.json b/src/main/resources/assets/new_soviet/models/item/cigarette_butt.json index 47b9345..21c80eb 100644 --- a/src/main/resources/assets/new_soviet/models/item/cigarette_butt.json +++ b/src/main/resources/assets/new_soviet/models/item/cigarette_butt.json @@ -1,5 +1,5 @@ { - "credit": "Karoter2", + "credit": "Feulim Temly", "parent": "item/generated", "textures": { "layer0": "new_soviet:item/cigarette_butt" 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 index 09288d9..18f7e84 100644 --- 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 @@ -1,4 +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 index db60f9f..7144d55 100644 --- 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 @@ -1,4 +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/dark_switch.json b/src/main/resources/assets/new_soviet/models/item/dark_switch.json index 58a98c6..2910c13 100644 --- a/src/main/resources/assets/new_soviet/models/item/dark_switch.json +++ b/src/main/resources/assets/new_soviet/models/item/dark_switch.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/switch_type_2_off" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dice_d4.json b/src/main/resources/assets/new_soviet/models/item/dice_d4.json index a1a126f..fd0659b 100644 --- a/src/main/resources/assets/new_soviet/models/item/dice_d4.json +++ b/src/main/resources/assets/new_soviet/models/item/dice_d4.json @@ -3,5 +3,4 @@ "textures": { "layer0": "new_soviet:item/dice/dice_d4" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/dice_d6.json b/src/main/resources/assets/new_soviet/models/item/dice_d6.json index 02d134f..d0feb04 100644 --- a/src/main/resources/assets/new_soviet/models/item/dice_d6.json +++ b/src/main/resources/assets/new_soviet/models/item/dice_d6.json @@ -3,5 +3,4 @@ "textures": { "layer0": "new_soviet:item/dice/dice_d6" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/handrail.json b/src/main/resources/assets/new_soviet/models/item/handrail.json index fffff85..5744505 100644 --- a/src/main/resources/assets/new_soviet/models/item/handrail.json +++ b/src/main/resources/assets/new_soviet/models/item/handrail.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/handrail/handrail" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/meat.json b/src/main/resources/assets/new_soviet/models/item/meat.json index 2e688b8..7b266e4 100644 --- a/src/main/resources/assets/new_soviet/models/item/meat.json +++ b/src/main/resources/assets/new_soviet/models/item/meat.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/meat_1" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/meat_eye.json b/src/main/resources/assets/new_soviet/models/item/meat_eye.json index 828c77f..cddaf00 100644 --- a/src/main/resources/assets/new_soviet/models/item/meat_eye.json +++ b/src/main/resources/assets/new_soviet/models/item/meat_eye.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/meat_eye" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/meat_teeth.json b/src/main/resources/assets/new_soviet/models/item/meat_teeth.json index 1c5144a..64d459b 100644 --- a/src/main/resources/assets/new_soviet/models/item/meat_teeth.json +++ b/src/main/resources/assets/new_soviet/models/item/meat_teeth.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/meat_teeth" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/purple_goo.json b/src/main/resources/assets/new_soviet/models/item/purple_goo.json index 6d12260..4f08260 100644 --- a/src/main/resources/assets/new_soviet/models/item/purple_goo.json +++ b/src/main/resources/assets/new_soviet/models/item/purple_goo.json @@ -3,5 +3,4 @@ "textures": { "layer0": "new_soviet:item/purple_goo_item" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/rake.json b/src/main/resources/assets/new_soviet/models/item/rake.json index caad4ea..16995fc 100644 --- a/src/main/resources/assets/new_soviet/models/item/rake.json +++ b/src/main/resources/assets/new_soviet/models/item/rake.json @@ -1,5 +1,5 @@ { - "credit": "Made by Feulim (karoter2)", + "credit": "Made by Feulim Temly", "texture_size": [64, 64], "textures": { "0": "new_soviet:item/rake", diff --git a/src/main/resources/assets/new_soviet/models/item/red_tv.json b/src/main/resources/assets/new_soviet/models/item/red_tv.json index bb1582a..8d3cc3e 100644 --- a/src/main/resources/assets/new_soviet/models/item/red_tv.json +++ b/src/main/resources/assets/new_soviet/models/item/red_tv.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/tv/red_tv" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/siren.json b/src/main/resources/assets/new_soviet/models/item/siren.json index 7d19f7b..496b6e3 100644 --- a/src/main/resources/assets/new_soviet/models/item/siren.json +++ b/src/main/resources/assets/new_soviet/models/item/siren.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/siren" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/tv.json b/src/main/resources/assets/new_soviet/models/item/tv.json index ef12a65..30bfba3 100644 --- a/src/main/resources/assets/new_soviet/models/item/tv.json +++ b/src/main/resources/assets/new_soviet/models/item/tv.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/tv/tv" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/vintage_lamp.json b/src/main/resources/assets/new_soviet/models/item/vintage_lamp.json index 032aa6c..eae7846 100644 --- a/src/main/resources/assets/new_soviet/models/item/vintage_lamp.json +++ b/src/main/resources/assets/new_soviet/models/item/vintage_lamp.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/vintage_lamp" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_bishop.json b/src/main/resources/assets/new_soviet/models/item/white_bishop.json index e822abe..a896f40 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_bishop.json +++ b/src/main/resources/assets/new_soviet/models/item/white_bishop.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/bishop" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_checker.json b/src/main/resources/assets/new_soviet/models/item/white_checker.json index 0906cc8..36b8fc2 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_checker.json +++ b/src/main/resources/assets/new_soviet/models/item/white_checker.json @@ -1,8 +1,7 @@ { - "credit": "Karoter2", + "credit": "Feulim Temly", "parent": "item/generated", "textures": { "layer0": "new_soviet:item/white_checker" } -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_king.json b/src/main/resources/assets/new_soviet/models/item/white_king.json index 7b9420f..fe9f49f 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_king.json +++ b/src/main/resources/assets/new_soviet/models/item/white_king.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/king" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_knight.json b/src/main/resources/assets/new_soviet/models/item/white_knight.json index c81af23..f75822c 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_knight.json +++ b/src/main/resources/assets/new_soviet/models/item/white_knight.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/knight" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_pawn.json b/src/main/resources/assets/new_soviet/models/item/white_pawn.json index 70d8fbb..21615bf 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_pawn.json +++ b/src/main/resources/assets/new_soviet/models/item/white_pawn.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/pawn" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_queen.json b/src/main/resources/assets/new_soviet/models/item/white_queen.json index 43a602d..2d8d76e 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_queen.json +++ b/src/main/resources/assets/new_soviet/models/item/white_queen.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/queen" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/models/item/white_rook.json b/src/main/resources/assets/new_soviet/models/item/white_rook.json index 5563727..f506f2f 100644 --- a/src/main/resources/assets/new_soviet/models/item/white_rook.json +++ b/src/main/resources/assets/new_soviet/models/item/white_rook.json @@ -1,4 +1,3 @@ { "parent": "new_soviet:block/chess/white/rook" -} - +} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.json b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.json deleted file mode 100644 index ed98c65..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.json +++ /dev/null @@ -1,204 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [96, 96], - "textures": { - "0": "bathroom", - "1": "gp/block/block_five/sink", - "particle": "bathroom" - }, - "elements": [ - { - "from": [-15, 1, 1], - "to": [15, 10, 15], - "faces": { - "north": {"uv": [2.33333, 5.66667, 7.33333, 7.16667], "texture": "#0"}, - "east": {"uv": [0, 5.66667, 2.33333, 7.16667], "texture": "#0"}, - "south": {"uv": [9.66667, 5.66667, 14.66667, 7.16667], "texture": "#0"}, - "west": {"uv": [7.33333, 5.66667, 9.66667, 7.16667], "texture": "#0"}, - "up": {"uv": [7.33333, 5.66667, 2.33333, 3.33333], "texture": "#0"}, - "down": {"uv": [12.33333, 3.33333, 7.33333, 5.66667], "texture": "#0"} - } - }, - { - "from": [10, 0, 1], - "to": [13, 1, 5], - "faces": { - "north": {"uv": [0.66667, 0.66667, 1.16667, 0.83333], "texture": "#0"}, - "east": {"uv": [0, 0.66667, 0.66667, 0.83333], "texture": "#0"}, - "south": {"uv": [1.83333, 0.66667, 2.33333, 0.83333], "texture": "#0"}, - "west": {"uv": [1.16667, 0.66667, 1.83333, 0.83333], "texture": "#0"}, - "up": {"uv": [1.16667, 0.66667, 0.66667, 0], "texture": "#0"}, - "down": {"uv": [1.66667, 0, 1.16667, 0.66667], "texture": "#0"} - } - }, - { - "from": [10, 0, 11], - "to": [13, 1, 15], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [0.66667, 0.66667, 1.16667, 0.83333], "texture": "#0"}, - "east": {"uv": [0, 0.66667, 0.66667, 0.83333], "texture": "#0"}, - "south": {"uv": [1.83333, 0.66667, 2.33333, 0.83333], "texture": "#0"}, - "west": {"uv": [1.16667, 0.66667, 1.83333, 0.83333], "texture": "#0"}, - "up": {"uv": [1.16667, 0.66667, 0.66667, 0], "texture": "#0"}, - "down": {"uv": [1.66667, 0, 1.16667, 0.66667], "texture": "#0"} - } - }, - { - "from": [-13, 0, 1], - "to": [-10, 1, 5], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [1.16667, 0.66667, 0.66667, 0.83333], "texture": "#0"}, - "east": {"uv": [1.83333, 0.66667, 1.16667, 0.83333], "texture": "#0"}, - "south": {"uv": [2.33333, 0.66667, 1.83333, 0.83333], "texture": "#0"}, - "west": {"uv": [0.66667, 0.66667, 0, 0.83333], "texture": "#0"}, - "up": {"uv": [0.66667, 0.66667, 1.16667, 0], "texture": "#0"}, - "down": {"uv": [1.16667, 0, 1.66667, 0.66667], "texture": "#0"} - } - }, - { - "from": [-13, 0, 11], - "to": [-10, 1, 15], - "shade": false, - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 16]}, - "faces": { - "north": {"uv": [1.16667, 0.66667, 0.66667, 0.83333], "texture": "#0"}, - "east": {"uv": [1.83333, 0.66667, 1.16667, 0.83333], "texture": "#0"}, - "south": {"uv": [2.33333, 0.66667, 1.83333, 0.83333], "texture": "#0"}, - "west": {"uv": [0.66667, 0.66667, 0, 0.83333], "texture": "#0"}, - "up": {"uv": [0.66667, 0.66667, 1.16667, 0], "texture": "#0"}, - "down": {"uv": [1.16667, 0, 1.66667, 0.66667], "texture": "#0"} - } - }, - { - "from": [-16, 10, 0], - "to": [16, 14, 16], - "faces": { - "north": {"uv": [2.66667, 2.66667, 8, 3.33333], "texture": "#0"}, - "east": {"uv": [0, 2.66667, 2.66667, 3.33333], "texture": "#0"}, - "south": {"uv": [10.66667, 2.66667, 16, 3.33333], "texture": "#0"}, - "west": {"uv": [8, 2.66667, 10.66667, 3.33333], "texture": "#0"}, - "up": {"uv": [8, 2.66667, 2.66667, 0], "texture": "#0"}, - "down": {"uv": [13.33333, 0, 8, 2.66667], "texture": "#0"} - } - }, - { - "from": [-14, 3, 14], - "to": [14, 14, 2], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 0, 16]}, - "faces": { - "north": {"uv": [13.33333, 9.16667, 8.66667, 11], "texture": "#0"}, - "east": {"uv": [2, 9.16667, 0, 11], "texture": "#0"}, - "south": {"uv": [6.66667, 9.16667, 2, 11], "texture": "#0"}, - "west": {"uv": [8.66667, 9.16667, 6.66667, 11], "texture": "#0"}, - "up": {"uv": [6.66667, 7.16667, 2, 9.16667], "texture": "#0"}, - "down": {"uv": [11.33333, 9.16667, 6.66667, 7.16667], "texture": "#0"} - } - }, - { - "from": [-16, 14, 7], - "to": [-14, 20, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [5.75, 18.75, 6]}, - "faces": { - "north": {"uv": [1, 0.5, 1.5, 2], "texture": "#1"}, - "east": {"uv": [0.5, 0.5, 1, 2], "texture": "#1"}, - "south": {"uv": [0, 0.5, 0.5, 2], "texture": "#1"}, - "west": {"uv": [1.5, 0.5, 2, 2], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-16, 14, 5], - "to": [-14, 16, 7], - "rotation": {"angle": 0, "axis": "y", "origin": [5.75, 18.75, 6]}, - "faces": { - "north": {"uv": [1, 5.25, 1.5, 5.75], "texture": "#1"}, - "east": {"uv": [0.5, 5.25, 1, 5.75], "texture": "#1"}, - "south": {"uv": [0, 5.25, 0.5, 5.75], "texture": "#1"}, - "west": {"uv": [1.5, 5.25, 2, 5.75], "texture": "#1"}, - "up": {"uv": [1, 5.25, 0.5, 4.75], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1.5, 4.75, 1, 5.25], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-16, 14, 9], - "to": [-14, 16, 11], - "rotation": {"angle": 0, "axis": "y", "origin": [5.75, 18.75, 6]}, - "faces": { - "north": {"uv": [1, 2.5, 1.5, 3], "texture": "#1"}, - "east": {"uv": [0.5, 2.5, 1, 3], "texture": "#1"}, - "south": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, - "west": {"uv": [1.5, 2.5, 2, 3], "texture": "#1"}, - "up": {"uv": [1, 2.5, 0.5, 2], "rotation": 90, "texture": "#1"}, - "down": {"uv": [1.5, 2, 1, 2.5], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-14, 19, 7], - "to": [-9, 20, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [5.75, 18.75, 6]}, - "faces": { - "north": {"uv": [8.75, 9.25, 10, 9.5], "texture": "#1"}, - "east": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#1"}, - "south": {"uv": [7, 9.25, 8.25, 9.5], "texture": "#1"}, - "west": {"uv": [10, 9.25, 10.5, 9.5], "texture": "#1"}, - "up": {"uv": [8.75, 9.25, 8.25, 8], "rotation": 90, "texture": "#1"}, - "down": {"uv": [9.25, 9.25, 8.75, 8], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [-13.9, 11, 7], - "to": [-13.9, 13, 9], - "rotation": {"angle": 0, "axis": "y", "origin": [5.75, 18.75, 6]}, - "faces": { - "north": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "east": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "south": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "west": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "up": {"uv": [0.5, 5.75, 0, 6.25], "rotation": 90, "texture": "#1"}, - "down": {"uv": [0.5, 5.75, 0, 6.25], "rotation": 270, "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [-3, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [1.25, 6.25, -1.75], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [-2.25, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [-2.5, -1.75, 0], - "scale": [0.4, 0.4, 0.4] - }, - "head": { - "rotation": [90, 90, 0], - "translation": [-4.5, 21, 14] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.png deleted file mode 100644 index 2e51314..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/bathroom.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/ceiling_fan.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/ceiling_fan.png new file mode 100644 index 0000000..43a741a Binary files /dev/null and b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/ceiling_fan.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_animated.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_animated.png index 24d455d..d7ca741 100644 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_animated.png and b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_animated.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base.png deleted file mode 100644 index 4f0899b..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base_particle.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base_particle.png deleted file mode 100644 index 04fa793..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_base_particle.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png index 41751ab..22b498c 100644 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png and b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fan_static.png differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.json b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.json deleted file mode 100644 index 4cfe3a6..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "credit": "Made with Blockbench", - "parent": "fallout_wastelands:custom/fridge", - "texture_size": [64, 64], - "textures": { - "1": "fridge", - "particle": "fallout_wastelands:blocks/frigde" - }, - "elements": [ - { - "from": [1, 0, 1], - "to": [15, 32, 15], - "faces": { - "north": {"uv": [0, 0, 3.5, 8], "texture": "#1"}, - "east": {"uv": [3.5, 0, 7, 8], "texture": "#1"}, - "south": {"uv": [7, 0, 10.5, 8], "texture": "#1"}, - "west": {"uv": [0, 8, 3.5, 16], "texture": "#1"}, - "up": {"uv": [7, 11.5, 3.5, 8], "texture": "#1"}, - "down": {"uv": [10.5, 8, 7, 11.5], "texture": "#1"} - } - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.png deleted file mode 100644 index 32d9978..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/fridge.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.json b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.json deleted file mode 100644 index fa628cf..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.json +++ /dev/null @@ -1,144 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "1": "gp/block/block_five/sink" - }, - "elements": [ - { - "from": [3, 0, 8], - "to": [13, 11, 16], - "faces": { - "north": {"uv": [2, 10, 4.5, 12.75], "texture": "#1"}, - "east": {"uv": [0, 10, 2, 12.75], "texture": "#1"}, - "south": {"uv": [6.5, 10, 9, 12.75], "texture": "#1"}, - "west": {"uv": [4.5, 10, 6.5, 12.75], "texture": "#1"}, - "up": {"uv": [4.5, 10, 2, 8], "texture": "#1"}, - "down": {"uv": [7, 8, 4.5, 10], "texture": "#1"} - } - }, - { - "from": [0, 11, 3], - "to": [16, 17, 16], - "faces": { - "north": {"uv": [3.25, 3.25, 7.25, 4.75], "texture": "#1"}, - "east": {"uv": [0, 3.25, 3.25, 4.75], "texture": "#1"}, - "south": {"uv": [10.5, 3.25, 14.5, 4.75], "texture": "#1"}, - "west": {"uv": [7.25, 3.25, 10.5, 4.75], "texture": "#1"}, - "up": {"uv": [7.25, 3.25, 3.25, 0], "texture": "#1"}, - "down": {"uv": [11.25, 0, 7.25, 3.25], "texture": "#1"} - } - }, - { - "from": [14, 13, 5], - "to": [2, 17, 14], - "faces": { - "north": {"uv": [2.25, 7, 5.25, 8], "texture": "#1"}, - "east": {"uv": [0, 7, 2.25, 8], "texture": "#1"}, - "south": {"uv": [7.5, 7, 10.5, 8], "texture": "#1"}, - "west": {"uv": [5.25, 7, 7.5, 8], "texture": "#1"}, - "up": {"uv": [5.25, 7, 2.25, 4.75], "texture": "#1"}, - "down": {"uv": [8.25, 4.75, 5.25, 7], "texture": "#1"} - } - }, - { - "from": [7, 17, 14], - "to": [9, 23, 16], - "faces": { - "north": {"uv": [0.5, 0.5, 1, 2], "texture": "#1"}, - "east": {"uv": [0, 0.5, 0.5, 2], "texture": "#1"}, - "south": {"uv": [1.5, 0.5, 2, 2], "texture": "#1"}, - "west": {"uv": [1, 0.5, 1.5, 2], "texture": "#1"}, - "up": {"uv": [1, 0.5, 0.5, 0], "texture": "#1"}, - "down": {"uv": [1.5, 0, 1, 0.5], "texture": "#1"} - } - }, - { - "from": [5, 17, 14], - "to": [7, 19, 16], - "faces": { - "north": {"uv": [0.5, 5.25, 1, 5.75], "texture": "#1"}, - "east": {"uv": [0, 5.25, 0.5, 5.75], "texture": "#1"}, - "south": {"uv": [1.5, 5.25, 2, 5.75], "texture": "#1"}, - "west": {"uv": [1, 5.25, 1.5, 5.75], "texture": "#1"}, - "up": {"uv": [1, 5.25, 0.5, 4.75], "texture": "#1"}, - "down": {"uv": [1.5, 4.75, 1, 5.25], "texture": "#1"} - } - }, - { - "from": [9, 17, 14], - "to": [11, 19, 16], - "faces": { - "north": {"uv": [0.5, 2.5, 1, 3], "texture": "#1"}, - "east": {"uv": [0, 2.5, 0.5, 3], "texture": "#1"}, - "south": {"uv": [1.5, 2.5, 2, 3], "texture": "#1"}, - "west": {"uv": [1, 2.5, 1.5, 3], "texture": "#1"}, - "up": {"uv": [1, 2.5, 0.5, 2], "texture": "#1"}, - "down": {"uv": [1.5, 2, 1, 2.5], "texture": "#1"} - } - }, - { - "from": [7, 22, 9], - "to": [9, 23, 14], - "faces": { - "north": {"uv": [8.25, 9.25, 8.75, 9.5], "texture": "#1"}, - "east": {"uv": [7, 9.25, 8.25, 9.5], "texture": "#1"}, - "south": {"uv": [10, 9.25, 10.5, 9.5], "texture": "#1"}, - "west": {"uv": [8.75, 9.25, 10, 9.5], "texture": "#1"}, - "up": {"uv": [8.75, 9.25, 8.25, 8], "texture": "#1"}, - "down": {"uv": [9.25, 9.25, 8.75, 8], "texture": "#1"} - } - }, - { - "from": [7, 14, 13.9], - "to": [9, 16, 13.9], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "east": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "south": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "west": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "up": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"}, - "down": {"uv": [0.5, 5.75, 0, 6.25], "texture": "#1"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [1, -2.25, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [90, 0, 0], - "translation": [-8, 20, 14] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.png deleted file mode 100644 index fcf1a1a..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/sink.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.json b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.json deleted file mode 100644 index 26fbb38..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [128, 128], - "textures": { - "0": "gp/block/block_five/toilet" - }, - "elements": [ - { - "from": [4, 0, 2], - "to": [12, 3, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 1.5, -0.5]}, - "faces": { - "north": {"uv": [4.75, 4.625, 5.75, 5], "texture": "#0"}, - "east": {"uv": [3.375, 4.625, 4.75, 5], "texture": "#0"}, - "south": {"uv": [7.125, 4.625, 8.125, 5], "texture": "#0"}, - "west": {"uv": [5.75, 4.625, 7.125, 5], "texture": "#0"}, - "up": {"uv": [5.75, 4.625, 4.75, 3.25], "texture": "#0"}, - "down": {"uv": [6.75, 3.25, 5.75, 4.625], "texture": "#0"} - } - }, - { - "from": [5, 3, 3], - "to": [11, 6, 12], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 4.5, -0.5]}, - "faces": { - "north": {"uv": [5.375, 1.125, 6.125, 1.5], "texture": "#0"}, - "east": {"uv": [4.25, 1.125, 5.375, 1.5], "texture": "#0"}, - "south": {"uv": [7.25, 1.125, 8, 1.5], "texture": "#0"}, - "west": {"uv": [6.125, 1.125, 7.25, 1.5], "texture": "#0"}, - "up": {"uv": [6.125, 1.125, 5.375, 0], "texture": "#0"}, - "down": {"uv": [6.875, 0, 6.125, 1.125], "texture": "#0"} - } - }, - { - "from": [3, 6, 0], - "to": [13, 11, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 8.5, -1]}, - "faces": { - "north": {"uv": [1.75, 1.75, 3, 2.375], "texture": "#0"}, - "east": {"uv": [0, 1.75, 1.75, 2.375], "texture": "#0"}, - "south": {"uv": [4.75, 1.75, 6, 2.375], "texture": "#0"}, - "west": {"uv": [3, 1.75, 4.75, 2.375], "texture": "#0"}, - "up": {"uv": [3, 1.75, 1.75, 0], "texture": "#0"}, - "down": {"uv": [4.25, 0, 3, 1.75], "texture": "#0"} - } - }, - { - "from": [2, 9, 10], - "to": [14, 20, 16], - "rotation": {"angle": 0, "axis": "y", "origin": [0, 14.5, 5.5]}, - "faces": { - "north": {"uv": [0.75, 3.25, 2.25, 4.625], "texture": "#0"}, - "east": {"uv": [0, 3.25, 0.75, 4.625], "texture": "#0"}, - "south": {"uv": [3, 3.25, 4.5, 4.625], "texture": "#0"}, - "west": {"uv": [2.25, 3.25, 3, 4.625], "texture": "#0"}, - "up": {"uv": [2.25, 3.25, 0.75, 2.5], "texture": "#0"}, - "down": {"uv": [3.75, 2.5, 2.25, 3.25], "texture": "#0"} - } - }, - { - "from": [5, 20, 11], - "to": [7, 21, 13], - "rotation": {"angle": 0, "axis": "y", "origin": [-2, 20.5, 5]}, - "faces": { - "north": {"uv": [0.25, 0.25, 0.5, 0.375], "texture": "#0"}, - "east": {"uv": [0, 0.25, 0.25, 0.375], "texture": "#0"}, - "south": {"uv": [0.75, 0.25, 1, 0.375], "texture": "#0"}, - "west": {"uv": [0.5, 0.25, 0.75, 0.375], "texture": "#0"}, - "up": {"uv": [0.5, 0.25, 0.25, 0], "texture": "#0"}, - "down": {"uv": [0.75, 0, 0.5, 0.25], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "translation": [0, -1.5, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [90, 0, 0], - "translation": [-8, 20, 14] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.png deleted file mode 100644 index b8ee897..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/toilet.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.json b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.json deleted file mode 100644 index 0da3bfe..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.json +++ /dev/null @@ -1,151 +0,0 @@ -{ - "credit": "Made with Blockbench", - "texture_size": [64, 64], - "textures": { - "0": "wash_basin", - "particle": "wash_basin" - }, - "elements": [ - { - "from": [0, 0, 1], - "to": [16, 14, 16], - "faces": { - "north": {"uv": [3.75, 3.75, 7.75, 7.25], "texture": "#0"}, - "east": {"uv": [0, 3.75, 3.75, 7.25], "texture": "#0"}, - "south": {"uv": [11.5, 3.75, 15.5, 7.25], "texture": "#0"}, - "west": {"uv": [7.75, 3.75, 11.5, 7.25], "texture": "#0"}, - "down": {"uv": [11.75, 0, 7.75, 3.75], "texture": "#0"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [4, 11.25, 8, 11.75], "texture": "#0", "tintindex": 0}, - "east": {"uv": [0, 11.25, 4, 11.75], "texture": "#0", "tintindex": 0}, - "south": {"uv": [12, 11.25, 16, 11.75], "texture": "#0", "tintindex": 0}, - "west": {"uv": [8, 11.25, 12, 11.75], "texture": "#0", "tintindex": 0}, - "up": {"uv": [8, 11.25, 4, 7.25], "texture": "#0", "tintindex": 0}, - "down": {"uv": [12, 7.25, 8, 11.25], "texture": "#0", "tintindex": 0} - } - }, - { - "from": [1, 1, 0.95], - "to": [15, 14, 0.95], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [3.5, 12.75, 0, 16], "texture": "#0", "tintindex": 0} - } - }, - { - "from": [3, 5, 0.9], - "to": [5, 11, 0.9], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [4.5, 14.5, 4, 16], "texture": "#0"} - } - }, - { - "from": [7, 13, 13.9], - "to": [9, 15, 13.9], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [5.5, 15.5, 5, 16], "texture": "#0"} - } - }, - { - "from": [14, 12, 2], - "to": [2, 16, 14], - "rotation": {"angle": 0, "axis": "y", "origin": [16, 0, 0]}, - "faces": { - "north": {"uv": [6, 0, 3, 1], "texture": "#0", "tintindex": 0}, - "east": {"uv": [6, 0, 3, 1], "texture": "#0", "tintindex": 0}, - "south": {"uv": [6, 1.5, 3, 2.5], "texture": "#0", "tintindex": 0}, - "west": {"uv": [6, 0, 3, 1], "texture": "#0", "tintindex": 0}, - "down": {"uv": [3, 0, 0, 3], "texture": "#0", "tintindex": 0} - } - }, - { - "from": [7, 16, 14], - "to": [9, 22, 16], - "faces": { - "north": {"uv": [0.5, 7.5, 0, 9], "texture": "#0"}, - "east": {"uv": [0, 7.5, 0.5, 9], "texture": "#0"}, - "south": {"uv": [0.5, 7.5, 0, 9], "texture": "#0"}, - "west": {"uv": [0, 7.5, 0.5, 9], "texture": "#0"}, - "up": {"uv": [0.5, 7.5, 1, 8], "texture": "#0"}, - "down": {"uv": [0, 0, 0.5, 0.5], "texture": "#0"} - } - }, - { - "from": [5, 16, 14], - "to": [7, 18, 16], - "faces": { - "north": {"uv": [1.258, 9.258, 1.742, 9.742], "texture": "#0"}, - "east": {"uv": [1.008, 9.258, 1.492, 9.742], "texture": "#0"}, - "south": {"uv": [1.492, 9.258, 1.008, 9.742], "texture": "#0"}, - "west": {"uv": [1.742, 9.258, 1.258, 9.742], "texture": "#0"}, - "up": {"uv": [1.008, 8.508, 1.492, 8.992], "texture": "#0"} - } - }, - { - "from": [9, 16, 14], - "to": [11, 18, 16], - "faces": { - "north": {"uv": [2.742, 9.258, 2.258, 9.742], "texture": "#0"}, - "east": {"uv": [2.008, 9.258, 2.492, 9.742], "texture": "#0"}, - "south": {"uv": [2.492, 9.258, 2.008, 9.742], "texture": "#0"}, - "west": {"uv": [2.258, 9.258, 2.742, 9.742], "texture": "#0"}, - "up": {"uv": [2.492, 8.508, 2.008, 8.992], "texture": "#0"} - } - }, - { - "from": [7, 21, 9], - "to": [9, 22, 14], - "faces": { - "north": {"uv": [0, 9.25, 0.5, 9.5], "rotation": 180, "texture": "#0"}, - "east": {"uv": [0.25, 9.25, 0.5, 10.5], "rotation": 90, "texture": "#0"}, - "west": {"uv": [0, 9.25, 0.25, 10.5], "rotation": 270, "texture": "#0"}, - "up": {"uv": [0, 9.25, 0.5, 10.5], "texture": "#0"}, - "down": {"uv": [0, 9.25, 0.5, 10.5], "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [90, 0, 0], - "translation": [-8, 20, 14] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.png b/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.png deleted file mode 100644 index b64e79c..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/appliances/wash_basin.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television.png deleted file mode 100644 index c4c0785..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television_particle.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television_particle.png deleted file mode 100644 index a4ceab8..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/brown_television_particle.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television.png deleted file mode 100644 index fca8e67..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television_particle.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television_particle.png deleted file mode 100644 index 94dd16d..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/red_television_particle.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television.png deleted file mode 100644 index 7a0e5d7..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television_particle.png b/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television_particle.png deleted file mode 100644 index 8d25d88..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/electronics/television_particle.png and /dev/null differ diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.json b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.json deleted file mode 100644 index 711cedd..0000000 --- a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.json +++ /dev/null @@ -1,93 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "bedside_table", - "particle": "bedside_table" - }, - "elements": [ - { - "from": [0, 0, 1], - "to": [16, 14, 16], - "faces": { - "north": {"uv": [3.75, 3.75, 7.75, 7.25], "texture": "#0"}, - "east": {"uv": [0, 3.75, 3.75, 7.25], "texture": "#0"}, - "south": {"uv": [11.5, 3.75, 15.5, 7.25], "texture": "#0"}, - "west": {"uv": [7.75, 3.75, 11.5, 7.25], "texture": "#0"}, - "up": {"uv": [7.75, 3.75, 3.75, 0], "texture": "#0"}, - "down": {"uv": [11.75, 0, 7.75, 3.75], "texture": "#0"} - } - }, - { - "from": [0, 14, 0], - "to": [16, 16, 16], - "faces": { - "north": {"uv": [4, 11.25, 8, 11.75], "texture": "#0", "tintindex": 0}, - "east": {"uv": [0, 11.25, 4, 11.75], "texture": "#0", "tintindex": 0}, - "south": {"uv": [12, 11.25, 16, 11.75], "texture": "#0", "tintindex": 0}, - "west": {"uv": [8, 11.25, 12, 11.75], "texture": "#0", "tintindex": 0}, - "up": {"uv": [8, 11.25, 4, 7.25], "texture": "#0", "tintindex": 0}, - "down": {"uv": [12, 7.25, 8, 11.25], "texture": "#0", "tintindex": 0} - } - }, - { - "from": [1, 1, 0.95], - "to": [15, 14, 0.95], - "faces": { - "north": {"uv": [0, 12.75, 3.5, 16], "texture": "#0", "tintindex": 0} - } - }, - { - "from": [5, 4, 0.9], - "to": [11, 6, 0.9], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 7, 0.993]}, - "faces": { - "north": {"uv": [4, 14.5, 4.5, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [5, 10, 0.9], - "to": [11, 12, 0.9], - "rotation": {"angle": 0, "axis": "y", "origin": [13, 7, 0.993]}, - "faces": { - "north": {"uv": [4, 14.5, 4.5, 16], "rotation": 90, "texture": "#0"} - } - } - ], - "display": { - "thirdperson_righthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "thirdperson_lefthand": { - "rotation": [75, 45, 0], - "translation": [0, 2.5, 0], - "scale": [0.375, 0.375, 0.375] - }, - "firstperson_righthand": { - "rotation": [0, 45, 0], - "scale": [0.4, 0.4, 0.4] - }, - "firstperson_lefthand": { - "rotation": [0, 225, 0], - "scale": [0.4, 0.4, 0.4] - }, - "ground": { - "translation": [0, 3, 0], - "scale": [0.25, 0.25, 0.25] - }, - "gui": { - "rotation": [30, 225, 0], - "scale": [0.625, 0.625, 0.625] - }, - "head": { - "rotation": [90, 0, 0], - "translation": [-8, 20, 14] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -16], - "scale": [2, 2, 2] - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.png b/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.png deleted file mode 100644 index e1adff9..0000000 Binary files a/src/main/resources/assets/new_soviet/textures/block/custom/furniture/bedside_table.png and /dev/null differ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index 9d536cb..35f7ae5 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -3,10 +3,10 @@ "id": "new_soviet", "version": "${version}", "name": "New Soviet Era", - "description": "Minecraft mod to relive the good old days", + "description": "Minecraft mod to relive the good old days\nNSE is a mod that adds many features including building blocks, decorations, tools and items with the general theme is USSR aesthetic", "authors": [ "Andrew_7_1", - "Karoter2" + "Feulim Temly" ], "contact": { "sources": "https://git.a71.su/Ethyl/New-Soviet-Era"