Various fixes and changes, see CHANGELOG

This commit is contained in:
Andrew-71 2023-10-19 20:59:58 +03:00
parent 24e07523da
commit 55724bb0a2
140 changed files with 1074 additions and 3141 deletions

View file

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

View file

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

11
TODO.md
View file

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

View file

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

View file

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

View file

@ -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": [

View file

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

View file

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

View file

@ -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<Block, BlockState> 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;
}
}

View file

@ -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<Block, BlockState> 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;
}
}

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
{
"credit": "Made with Blockbench",
"credit": "Made by Feulim Temly with Blockbench",
"parent": "block/cube_all",
"texture_size": [32, 32],
"textures": {

View file

@ -1,5 +1,5 @@
{
"credit": "Made with Blockbench",
"credit": "Made by Feulim Temly with Blockbench",
"texture_size": [48, 48],
"textures": {
"0": "lamp_post",

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,5 +1,5 @@
{
"credit": "Made by Feulim (karoter2)",
"credit": "Made by Feulim Temly with Blockbench",
"parent": "block/block",
"ambientocclusion": false,
"textures": {

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/bishop"
}
}

View file

@ -1,8 +1,7 @@
{
"credit": "Karoter2",
"credit": "Feulim Temly",
"parent": "item/generated",
"textures": {
"layer0": "new_soviet:item/black_checker"
}
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/king"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/knight"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/pawn"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/queen"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/chess/black/rook"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/tv/brown_tv"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/ceiling_fan_off"
}
}

View file

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

View file

@ -1,5 +1,5 @@
{
"credit": "Karoter2",
"credit": "Feulim Temly",
"parent": "item/generated",
"textures": {
"layer0": "new_soviet:item/cigarette_butt"

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/cracked_light_blue_bricks_slab"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/cracked_light_blue_bricks_stairs"
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/switch_type_2_off"
}
}

View file

@ -3,5 +3,4 @@
"textures": {
"layer0": "new_soviet:item/dice/dice_d4"
}
}
}

View file

@ -3,5 +3,4 @@
"textures": {
"layer0": "new_soviet:item/dice/dice_d6"
}
}
}

View file

@ -1,4 +1,3 @@
{
"parent": "new_soviet:block/handrail/handrail"
}
}

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