diff --git a/java/eyeq/smallstairs/SmallStairs.java b/java/eyeq/smallstairs/SmallStairs.java new file mode 100644 index 0000000..e91a06e --- /dev/null +++ b/java/eyeq/smallstairs/SmallStairs.java @@ -0,0 +1,195 @@ +package eyeq.smallstairs; + +import eyeq.util.client.model.UModelLoader; +import eyeq.util.client.renderer.ResourceLocationFactory; +import eyeq.util.client.resource.ULanguageCreator; +import eyeq.util.client.resource.lang.LanguageResourceManager; +import net.minecraft.block.Block; +import net.minecraft.init.Blocks; +import net.minecraft.item.Item; +import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemStack; +import net.minecraftforge.event.RegistryEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.common.Mod.EventHandler; +import net.minecraftforge.fml.common.event.FMLPreInitializationEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import net.minecraftforge.fml.common.registry.GameRegistry; +import eyeq.smallstairs.block.BlockStairsSmall; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; + +import java.io.File; + +import static eyeq.smallstairs.SmallStairs.MOD_ID; + +@Mod(modid = MOD_ID, version = "1.0", dependencies = "after:eyeq_util") +@Mod.EventBusSubscriber +public class SmallStairs { + public static final String MOD_ID = "eyeq_smallstairs"; + + @Mod.Instance(MOD_ID) + public static SmallStairs instance; + + private static final ResourceLocationFactory resource = new ResourceLocationFactory(MOD_ID); + + public static Block stairsSmallOak; + public static Block stairsSmallSpruce; + public static Block stairsSmallBirch; + public static Block stairsSmallJungle; + public static Block stairsSmallAcacia; + public static Block stairsSmallDarkOak; + + public static Block stairsSmallStone; + public static Block stairsSmallSandstone; + public static Block stairsSmallRedSandstone; + public static Block stairsSmallBrick; + public static Block stairsSmallStoneBrick; + public static Block stairsSmallNetherBrick; + public static Block stairsSmallQuartz; + public static Block stairsSmallPurpur; + + @EventHandler + public void preInit(FMLPreInitializationEvent event) { + addRecipes(); + if(event.getSide().isServer()) { + return; + } + renderItemModels(); + createFiles(); + } + + @SubscribeEvent + protected static void registerBlocks(RegistryEvent.Register event) { + stairsSmallOak = new BlockStairsSmall(Blocks.OAK_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallOak"); + stairsSmallSpruce = new BlockStairsSmall(Blocks.SPRUCE_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallSpruce"); + stairsSmallBirch = new BlockStairsSmall(Blocks.BIRCH_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallBirch"); + stairsSmallJungle = new BlockStairsSmall(Blocks.JUNGLE_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallJungle"); + stairsSmallAcacia = new BlockStairsSmall(Blocks.ACACIA_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallAcacia"); + stairsSmallDarkOak = new BlockStairsSmall(Blocks.DARK_OAK_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallDarkOak"); + + stairsSmallStone = new BlockStairsSmall(Blocks.STONE_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallStone"); + stairsSmallSandstone = new BlockStairsSmall(Blocks.SANDSTONE_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallSandstone"); + stairsSmallRedSandstone = new BlockStairsSmall(Blocks.RED_SANDSTONE_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallRedSandstone"); + stairsSmallBrick = new BlockStairsSmall(Blocks.BRICK_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallBrick"); + stairsSmallStoneBrick = new BlockStairsSmall(Blocks.STONE_BRICK_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallStoneBrick"); + stairsSmallNetherBrick = new BlockStairsSmall(Blocks.NETHER_BRICK_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallNetherBrick"); + stairsSmallQuartz = new BlockStairsSmall(Blocks.QUARTZ_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallQuartz"); + stairsSmallPurpur = new BlockStairsSmall(Blocks.PURPUR_STAIRS.getDefaultState()).setUnlocalizedName("stairsSmallPurpur"); + + GameRegistry.register(stairsSmallOak, resource.createResourceLocation("small_oak_stairs")); + GameRegistry.register(stairsSmallSpruce, resource.createResourceLocation("small_spruce_stairs")); + GameRegistry.register(stairsSmallBirch, resource.createResourceLocation("small_birch_stairs")); + GameRegistry.register(stairsSmallJungle, resource.createResourceLocation("small_jungle_stairs")); + GameRegistry.register(stairsSmallAcacia, resource.createResourceLocation("small_acacia_stairs")); + GameRegistry.register(stairsSmallDarkOak, resource.createResourceLocation("small_dark_oak_stairs")); + + GameRegistry.register(stairsSmallStone, resource.createResourceLocation("small_stone_stairs")); + GameRegistry.register(stairsSmallSandstone, resource.createResourceLocation("small_sandstone_stairs")); + GameRegistry.register(stairsSmallRedSandstone, resource.createResourceLocation("small_red_sandstone_stairs")); + GameRegistry.register(stairsSmallBrick, resource.createResourceLocation("small_brick_stairs")); + GameRegistry.register(stairsSmallStoneBrick, resource.createResourceLocation("small_stone_brick_stairs")); + GameRegistry.register(stairsSmallNetherBrick, resource.createResourceLocation("small_nether_brick_stairs")); + GameRegistry.register(stairsSmallQuartz, resource.createResourceLocation("small_quartz_stairs")); + GameRegistry.register(stairsSmallPurpur, resource.createResourceLocation("small_purpur_stairs")); + } + + @SubscribeEvent + protected static void registerItems(RegistryEvent.Register event) { + GameRegistry.register(new ItemBlock(stairsSmallOak), stairsSmallOak.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallSpruce), stairsSmallSpruce.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallBirch), stairsSmallBirch.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallJungle), stairsSmallJungle.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallAcacia), stairsSmallAcacia.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallDarkOak), stairsSmallDarkOak.getRegistryName()); + + GameRegistry.register(new ItemBlock(stairsSmallStone), stairsSmallStone.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallSandstone), stairsSmallSandstone.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallRedSandstone), stairsSmallRedSandstone.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallBrick), stairsSmallBrick.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallStoneBrick), stairsSmallStoneBrick.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallNetherBrick), stairsSmallNetherBrick.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallQuartz), stairsSmallQuartz.getRegistryName()); + GameRegistry.register(new ItemBlock(stairsSmallPurpur), stairsSmallPurpur.getRegistryName()); + } + + public static void addRecipeSmallStairs(Block smallStairs, Block stairs) { + GameRegistry.addShapelessRecipe(new ItemStack(smallStairs, 2), stairs); + GameRegistry.addShapelessRecipe(new ItemStack(stairs), smallStairs, smallStairs); + } + + public static void addRecipes() { + addRecipeSmallStairs(stairsSmallOak, Blocks.OAK_STAIRS); + addRecipeSmallStairs(stairsSmallSpruce, Blocks.SPRUCE_STAIRS); + addRecipeSmallStairs(stairsSmallBirch, Blocks.BIRCH_STAIRS); + addRecipeSmallStairs(stairsSmallJungle, Blocks.JUNGLE_STAIRS); + addRecipeSmallStairs(stairsSmallAcacia, Blocks.ACACIA_STAIRS); + addRecipeSmallStairs(stairsSmallDarkOak, Blocks.DARK_OAK_STAIRS); + + addRecipeSmallStairs(stairsSmallStone, Blocks.STONE_STAIRS); + addRecipeSmallStairs(stairsSmallSandstone, Blocks.SANDSTONE_STAIRS); + addRecipeSmallStairs(stairsSmallRedSandstone, Blocks.RED_SANDSTONE_STAIRS); + addRecipeSmallStairs(stairsSmallBrick, Blocks.BRICK_STAIRS); + addRecipeSmallStairs(stairsSmallStoneBrick, Blocks.STONE_BRICK_STAIRS); + addRecipeSmallStairs(stairsSmallNetherBrick, Blocks.NETHER_BRICK_STAIRS); + addRecipeSmallStairs(stairsSmallQuartz, Blocks.QUARTZ_STAIRS); + addRecipeSmallStairs(stairsSmallPurpur, Blocks.PURPUR_STAIRS); + } + + @SideOnly(Side.CLIENT) + public static void renderItemModels() { + UModelLoader.setCustomModelResourceLocation(stairsSmallOak); + UModelLoader.setCustomModelResourceLocation(stairsSmallSpruce); + UModelLoader.setCustomModelResourceLocation(stairsSmallBirch); + UModelLoader.setCustomModelResourceLocation(stairsSmallJungle); + UModelLoader.setCustomModelResourceLocation(stairsSmallAcacia); + UModelLoader.setCustomModelResourceLocation(stairsSmallDarkOak); + + UModelLoader.setCustomModelResourceLocation(stairsSmallStone); + UModelLoader.setCustomModelResourceLocation(stairsSmallSandstone); + UModelLoader.setCustomModelResourceLocation(stairsSmallRedSandstone); + UModelLoader.setCustomModelResourceLocation(stairsSmallBrick); + UModelLoader.setCustomModelResourceLocation(stairsSmallStoneBrick); + UModelLoader.setCustomModelResourceLocation(stairsSmallNetherBrick); + UModelLoader.setCustomModelResourceLocation(stairsSmallQuartz); + UModelLoader.setCustomModelResourceLocation(stairsSmallPurpur); + } + + public static void createFiles() { + File project = new File("../1.11.2-SmallStairs"); + + LanguageResourceManager language = new LanguageResourceManager(); + + language.register(LanguageResourceManager.EN_US, stairsSmallOak, "Small Oak Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallOak, "小さな樫の木の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallSpruce, "Small Spruce Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallSpruce, "小さな松の木の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallBirch, "Small Birch Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallBirch, "小さな白樺の木の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallJungle, "Small Jungle Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallJungle, "小さなジャングルの木の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallAcacia, "Small Acacia Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallAcacia, "小さなアカシアの木の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallDarkOak, "Small Dark Oak Wood Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallDarkOak, "小さなダークオークの木の階段"); + + language.register(LanguageResourceManager.EN_US, stairsSmallStone, "Small Cobblestone Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallStone, "小さな石の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallSandstone, "Small Sandstone Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallSandstone, "小さな砂岩の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallRedSandstone, "Small Red Sandstone Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallRedSandstone, "小さな赤色砂岩の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallBrick, "Small Brick Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallBrick, "小さなレンガの階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallStoneBrick, "Small Stone Brick Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallStoneBrick, "小さな石レンガの階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallNetherBrick, "Small Nether Brick Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallNetherBrick, "小さなネザーレンガの階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallQuartz, "Small Quartz Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallQuartz, "小さなネザー水晶の階段"); + language.register(LanguageResourceManager.EN_US, stairsSmallPurpur, "Small Purpur Stairs"); + language.register(LanguageResourceManager.JA_JP, stairsSmallPurpur, "小さなプルプァの階段"); + + ULanguageCreator.createLanguage(project, MOD_ID, language); + } +} diff --git a/java/eyeq/smallstairs/block/BlockStairsSmall.java b/java/eyeq/smallstairs/block/BlockStairsSmall.java new file mode 100644 index 0000000..41de13f --- /dev/null +++ b/java/eyeq/smallstairs/block/BlockStairsSmall.java @@ -0,0 +1,113 @@ +package eyeq.smallstairs.block; + +import net.minecraft.block.BlockStairs; +import net.minecraft.block.state.IBlockState; +import net.minecraft.entity.Entity; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.math.AxisAlignedBB; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.IBlockAccess; +import net.minecraft.world.World; +import net.minecraftforge.fml.relauncher.ReflectionHelper; + +import javax.annotation.Nullable; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.List; + +public class BlockStairsSmall extends BlockStairs { + public BlockStairsSmall(IBlockState modelState) { + super(modelState); + this.setLightOpacity(0); + this.setHardness(this.blockHardness * 0.75F); + } + + private double getNewMin(double value) { + if(value == 0) { + return 0.33; + } + if(value == 0.5) { + return 0.66; + } + return value; + } + + private double getNewMax(double value) { + if(value == 1.0) { + return 0.66; + } + if(value == 0.5) { + return 0.33; + } + return value; + } + + protected AxisAlignedBB getNewBox(AxisAlignedBB box, boolean isTop, EnumFacing facing) { + double maxX = box.maxX; + double maxY = box.maxY; + double maxZ = box.maxZ; + double minX = box.minX; + double minY = box.minY; + double minZ = box.minZ; + if(isTop) { + minY = getNewMin(minY); + } else { + maxY = getNewMax(maxY); + } + switch(facing) { + case NORTH: + maxZ = getNewMax(maxZ); + break; + case SOUTH: + minZ = getNewMin(minZ); + break; + case WEST: + maxX = getNewMax(maxX); + break; + case EAST: + minX = getNewMin(minX); + break; + } + return new AxisAlignedBB(minX, minY, minZ, maxX, maxY, maxZ); + } + + @Override + public void addCollisionBoxToList(IBlockState state, World world, BlockPos pos, AxisAlignedBB entityBox, List collidingBoxes, @Nullable Entity entity, boolean p_185477_7_) { + if(!p_185477_7_) { + state = this.getActualState(state, world, pos); + } + List collisionBoxList = null; + try { + collisionBoxList = getCollisionBoxList(state); + } catch(InvocationTargetException | IllegalAccessException e) { + e.printStackTrace(); + } + if(collisionBoxList == null) { + System.out.println("error: Small Stairs"); + return; + } + boolean isTop = state.getValue(HALF) == BlockStairs.EnumHalf.TOP; + EnumFacing facing = state.getValue(FACING); + for(AxisAlignedBB collidingBox : collisionBoxList) { + addCollisionBoxToList(pos, entityBox, collidingBoxes, getNewBox(collidingBox, isTop, facing)); + } + } + + @Override + public AxisAlignedBB getSelectedBoundingBox(IBlockState state, World world, BlockPos pos) { + AxisAlignedBB box = super.getSelectedBoundingBox(state, world, pos); + boolean isTop = state.getValue(HALF) == BlockStairs.EnumHalf.TOP; + EnumFacing facing = state.getValue(FACING); + return getNewBox(box, isTop, facing); + } + + @Override + public boolean doesSideBlockRendering(IBlockState state, IBlockAccess world, BlockPos pos, EnumFacing facing) { + return state.isOpaqueCube(); + } + + public static List getCollisionBoxList(IBlockState state) throws InvocationTargetException, IllegalAccessException { + Method method = ReflectionHelper.findMethod(BlockStairs.class, null, new String[]{"getCollisionBoxList", "func_185708_x"}, IBlockState.class); + return (List) method.invoke(null, state); + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_acacia_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_acacia_stairs.json new file mode 100644 index 0000000..3a272bf --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_acacia_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_acacia_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_acacia_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_acacia_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_birch_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_birch_stairs.json new file mode 100644 index 0000000..74acc10 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_birch_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_birch_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_birch_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_brick_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_brick_stairs.json new file mode 100644 index 0000000..deee218 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_brick_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_brick_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_brick_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_dark_oak_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_dark_oak_stairs.json new file mode 100644 index 0000000..5e0e123 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_dark_oak_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_dark_oak_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_dark_oak_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_dark_oak_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_jungle_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_jungle_stairs.json new file mode 100644 index 0000000..3c58c04 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_jungle_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_jungle_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_jungle_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_jungle_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_nether_brick_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_nether_brick_stairs.json new file mode 100644 index 0000000..553ea55 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_nether_brick_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_nether_brick_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_nether_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_nether_brick_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_oak_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_oak_stairs.json new file mode 100644 index 0000000..06aa17f --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_oak_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_oak_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_oak_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_oak_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_purpur_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_purpur_stairs.json new file mode 100644 index 0000000..7ca814a --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_purpur_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_purpur_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_purpur_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_purpur_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_quartz_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_quartz_stairs.json new file mode 100644 index 0000000..d0a3f08 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_quartz_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_quartz_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_quartz_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_quartz_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_red_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_red_sandstone_stairs.json new file mode 100644 index 0000000..cf108a4 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_red_sandstone_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_red_sandstone_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_red_sandstone_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_red_sandstone_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_sandstone_stairs.json new file mode 100644 index 0000000..bb3642b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_sandstone_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_sandstone_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_sandstone_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_sandstone_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_spruce_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_spruce_stairs.json new file mode 100644 index 0000000..dbc75c6 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_spruce_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_spruce_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_spruce_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_spruce_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_stone_brick_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_stone_brick_stairs.json new file mode 100644 index 0000000..7170f8b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_stone_brick_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_brick_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_brick_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_brick_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/blockstates/small_stone_stairs.json b/resources/assets/eyeq_smallstairs/blockstates/small_stone_stairs.json new file mode 100644 index 0000000..cc932a1 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/blockstates/small_stone_stairs.json @@ -0,0 +1,44 @@ +{ + "variants": { + "facing=east,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs" }, + "facing=west,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs" }, + "facing=west,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs" }, + "facing=north,half=bottom,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "y": 180, "uvlock": true }, + "facing=east,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs" }, + "facing=west,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 180, "uvlock": true }, + "facing=south,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 90, "uvlock": true }, + "facing=north,half=bottom,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 270, "uvlock": true }, + "facing=east,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 270, "uvlock": true }, + "facing=west,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 90, "uvlock": true }, + "facing=south,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs" }, + "facing=north,half=bottom,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "y": 180, "uvlock": true }, + "facing=east,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=straight": { "model": "eyeq_smallstairs:small_stone_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=outer_right": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=outer_left": { "model": "eyeq_smallstairs:small_stone_outer_stairs", "x": 180, "uvlock": true }, + "facing=east,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "uvlock": true }, + "facing=west,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=south,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=north,half=top,shape=inner_right": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=east,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 90, "uvlock": true }, + "facing=west,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 270, "uvlock": true }, + "facing=south,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "y": 180, "uvlock": true }, + "facing=north,half=top,shape=inner_left": { "model": "eyeq_smallstairs:small_stone_inner_stairs", "x": 180, "uvlock": true } + } +} diff --git a/resources/assets/eyeq_smallstairs/lang/en_US.lang b/resources/assets/eyeq_smallstairs/lang/en_US.lang new file mode 100644 index 0000000..733ce7c --- /dev/null +++ b/resources/assets/eyeq_smallstairs/lang/en_US.lang @@ -0,0 +1,14 @@ +tile.stairsSmallOak.name=Small Oak Wood Stairs +tile.stairsSmallJungle.name=Small Jungle Wood Stairs +tile.stairsSmallPurpur.name=Small Purpur Stairs +tile.stairsSmallNetherBrick.name=Small Nether Brick Stairs +tile.stairsSmallAcacia.name=Small Acacia Wood Stairs +tile.stairsSmallDarkOak.name=Small Dark Oak Wood Stairs +tile.stairsSmallBirch.name=Small Birch Wood Stairs +tile.stairsSmallRedSandstone.name=Small Red Sandstone Stairs +tile.stairsSmallSandstone.name=Small Sandstone Stairs +tile.stairsSmallStone.name=Small Cobblestone Stairs +tile.stairsSmallSpruce.name=Small Spruce Wood Stairs +tile.stairsSmallQuartz.name=Small Quartz Stairs +tile.stairsSmallBrick.name=Small Brick Stairs +tile.stairsSmallStoneBrick.name=Small Stone Brick Stairs diff --git a/resources/assets/eyeq_smallstairs/lang/ja_JP.lang b/resources/assets/eyeq_smallstairs/lang/ja_JP.lang new file mode 100644 index 0000000..9705e75 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/lang/ja_JP.lang @@ -0,0 +1,14 @@ +tile.stairsSmallOak.name=小さな樫の木の階段 +tile.stairsSmallJungle.name=小さなジャングルの木の階段 +tile.stairsSmallPurpur.name=小さなプルプァの階段 +tile.stairsSmallNetherBrick.name=小さなネザーレンガの階段 +tile.stairsSmallAcacia.name=小さなアカシアの木の階段 +tile.stairsSmallDarkOak.name=小さなダークオークの木の階段 +tile.stairsSmallBirch.name=小さな白樺の木の階段 +tile.stairsSmallRedSandstone.name=小さな赤色砂岩の階段 +tile.stairsSmallSandstone.name=小さな砂岩の階段 +tile.stairsSmallStone.name=小さな石の階段 +tile.stairsSmallSpruce.name=小さな松の木の階段 +tile.stairsSmallQuartz.name=小さなネザー水晶の階段 +tile.stairsSmallBrick.name=小さなレンガの階段 +tile.stairsSmallStoneBrick.name=小さな石レンガの階段 diff --git a/resources/assets/eyeq_smallstairs/models/block/inner_small_stairs.json b/resources/assets/eyeq_smallstairs/models/block/inner_small_stairs.json new file mode 100644 index 0000000..90dbecb --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/inner_small_stairs.json @@ -0,0 +1,54 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [ 0, 0, 5 ], + "to": [ 5, 5.5, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 5, 5 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 5, 5, 16 ], "texture": "#top" }, + "north": { "uv": [ 5, 10.5, 0, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 10.5, 5, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 5, 10.5, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 16, 10.5, 5, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { + "from": [ 5, 0, 0 ], + "to": [ 16, 5.5, 16 ], + "faces": { + "down": { "uv": [ 5, 16, 16, 0], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 5, 0, 16, 16], "texture": "#top" }, + "north": { "uv": [ 16, 10.5, 5, 16], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 5, 10.5, 16, 16], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 10.5, 16, 16], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 16, 10.5, 0, 16], "texture": "#side", "cullface": "east" } + } + }, + { "from": [0, 5.5, 10.5], + "to": [ 10.5, 11, 16 ], + "faces": { + "down": { "uv": [ 0, 16, 10.5, 10.5 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 0, 10.5, 10.5, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 10.5, 5, 0, 10.5 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 0, 5, 10.5, 10.5 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 10.5, 5, 16, 10.5 ], "texture": "#side" }, + "east": { "uv": [ 16, 5, 10.5, 10.5], "texture": "#side", "cullface": "east" } + } + }, + { + "from": [ 10.5, 5.5, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "uv": [ 10.5, 16, 16, 0 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 10.5, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 16, 5, 10.5, 10.5 ], "texture": "#side" }, + "south": { "uv": [ 10.5, 5, 16, 10.5 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 5, 16, 10.5 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 16, 5, 0, 10.5 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/resources/assets/eyeq_smallstairs/models/block/outer_small_stairs.json b/resources/assets/eyeq_smallstairs/models/block/outer_small_stairs.json new file mode 100644 index 0000000..cb076e1 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/outer_small_stairs.json @@ -0,0 +1,31 @@ +{ + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [ 5, 0, 5 ], + "to": [ 16, 5.5, 16 ], + "faces": { + "down": { "uv": [ 5, 16, 16, 5 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 5, 5, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 16, 10.5, 5, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 5, 10.5, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 5, 10.5, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 16, 10.5, 5, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { + "from": [ 10.5, 5.5, 10.5 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "uv": [ 10.5, 16, 16, 10.5 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 10.5, 10.5, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 16, 10.5, 10.5, 10.5 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 10.5, 16, 16, 10.5 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 10.5, 16, 16, 10.5 ], "texture": "#side" }, + "east": { "uv": [ 16, 10.5, 10.5, 10.5 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_acacia_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_acacia_inner_stairs.json new file mode 100644 index 0000000..f6f22cf --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_acacia_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_acacia", + "top": "blocks/planks_acacia", + "side": "blocks/planks_acacia" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_acacia_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_acacia_outer_stairs.json new file mode 100644 index 0000000..17c2864 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_acacia_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_acacia", + "top": "blocks/planks_acacia", + "side": "blocks/planks_acacia" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_acacia_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_acacia_stairs.json new file mode 100644 index 0000000..d034f52 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_acacia_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_acacia", + "top": "blocks/planks_acacia", + "side": "blocks/planks_acacia" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_birch_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_birch_inner_stairs.json new file mode 100644 index 0000000..88a44a1 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_birch_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_birch", + "top": "blocks/planks_birch", + "side": "blocks/planks_birch" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_birch_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_birch_outer_stairs.json new file mode 100644 index 0000000..8f45e8b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_birch_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_birch", + "top": "blocks/planks_birch", + "side": "blocks/planks_birch" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_birch_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_birch_stairs.json new file mode 100644 index 0000000..371bd8b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_birch_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_birch", + "top": "blocks/planks_birch", + "side": "blocks/planks_birch" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_brick_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_brick_inner_stairs.json new file mode 100644 index 0000000..0de21d6 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_brick_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/brick", + "top": "blocks/brick", + "side": "blocks/brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_brick_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_brick_outer_stairs.json new file mode 100644 index 0000000..58e1b41 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_brick_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/brick", + "top": "blocks/brick", + "side": "blocks/brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_brick_stairs.json new file mode 100644 index 0000000..e503976 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/brick", + "top": "blocks/brick", + "side": "blocks/brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_inner_stairs.json new file mode 100644 index 0000000..d7b9c07 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_big_oak", + "top": "blocks/planks_big_oak", + "side": "blocks/planks_big_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_outer_stairs.json new file mode 100644 index 0000000..c752c90 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_big_oak", + "top": "blocks/planks_big_oak", + "side": "blocks/planks_big_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_stairs.json new file mode 100644 index 0000000..5e528c5 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_dark_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_big_oak", + "top": "blocks/planks_big_oak", + "side": "blocks/planks_big_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_jungle_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_jungle_inner_stairs.json new file mode 100644 index 0000000..d463bab --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_jungle_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_jungle", + "top": "blocks/planks_jungle", + "side": "blocks/planks_jungle" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_jungle_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_jungle_outer_stairs.json new file mode 100644 index 0000000..65d32a7 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_jungle_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_jungle", + "top": "blocks/planks_jungle", + "side": "blocks/planks_jungle" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_jungle_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_jungle_stairs.json new file mode 100644 index 0000000..75e7b18 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_jungle_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_jungle", + "top": "blocks/planks_jungle", + "side": "blocks/planks_jungle" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_inner_stairs.json new file mode 100644 index 0000000..60fcdbc --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/nether_brick", + "top": "blocks/nether_brick", + "side": "blocks/nether_brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_outer_stairs.json new file mode 100644 index 0000000..4f13bb6 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/nether_brick", + "top": "blocks/nether_brick", + "side": "blocks/nether_brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_stairs.json new file mode 100644 index 0000000..35c166d --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_nether_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/nether_brick", + "top": "blocks/nether_brick", + "side": "blocks/nether_brick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_oak_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_oak_inner_stairs.json new file mode 100644 index 0000000..9d85497 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_oak_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_oak", + "top": "blocks/planks_oak", + "side": "blocks/planks_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_oak_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_oak_outer_stairs.json new file mode 100644 index 0000000..18a85ad --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_oak_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_oak", + "top": "blocks/planks_oak", + "side": "blocks/planks_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_oak_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_oak_stairs.json new file mode 100644 index 0000000..4b15899 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_oak_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_oak", + "top": "blocks/planks_oak", + "side": "blocks/planks_oak" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_purpur_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_purpur_inner_stairs.json new file mode 100644 index 0000000..d0a7f91 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_purpur_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/purpur_block", + "top": "blocks/purpur_block", + "side": "blocks/purpur_block" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_purpur_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_purpur_outer_stairs.json new file mode 100644 index 0000000..484f836 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_purpur_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/purpur_block", + "top": "blocks/purpur_block", + "side": "blocks/purpur_block" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_purpur_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_purpur_stairs.json new file mode 100644 index 0000000..04f4490 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_purpur_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/purpur_block", + "top": "blocks/purpur_block", + "side": "blocks/purpur_block" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_quartz_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_quartz_inner_stairs.json new file mode 100644 index 0000000..b8deaf3 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_quartz_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/quartz_block_bottom", + "top": "blocks/quartz_block_top", + "side": "blocks/quartz_block_side" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_quartz_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_quartz_outer_stairs.json new file mode 100644 index 0000000..ee2b648 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_quartz_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/quartz_block_bottom", + "top": "blocks/quartz_block_top", + "side": "blocks/quartz_block_side" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_quartz_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_quartz_stairs.json new file mode 100644 index 0000000..da20a9f --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_quartz_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/quartz_block_bottom", + "top": "blocks/quartz_block_top", + "side": "blocks/quartz_block_side" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_inner_stairs.json new file mode 100644 index 0000000..431dae1 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/red_sandstone_bottom", + "top": "blocks/red_sandstone_top", + "side": "blocks/red_sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_outer_stairs.json new file mode 100644 index 0000000..b624cc4 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/red_sandstone_bottom", + "top": "blocks/red_sandstone_top", + "side": "blocks/red_sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_stairs.json new file mode 100644 index 0000000..eef2778 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_red_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/red_sandstone_bottom", + "top": "blocks/red_sandstone_top", + "side": "blocks/red_sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_sandstone_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_inner_stairs.json new file mode 100644 index 0000000..5fc8848 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/sandstone_bottom", + "top": "blocks/sandstone_top", + "side": "blocks/sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_sandstone_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_outer_stairs.json new file mode 100644 index 0000000..74a02cb --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/sandstone_bottom", + "top": "blocks/sandstone_top", + "side": "blocks/sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_stairs.json new file mode 100644 index 0000000..c6f44bb --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_sandstone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/sandstone_bottom", + "top": "blocks/sandstone_top", + "side": "blocks/sandstone_normal" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_spruce_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_spruce_inner_stairs.json new file mode 100644 index 0000000..83130b3 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_spruce_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/planks_spruce", + "top": "blocks/planks_spruce", + "side": "blocks/planks_spruce" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_spruce_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_spruce_outer_stairs.json new file mode 100644 index 0000000..188c88e --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_spruce_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/planks_spruce", + "top": "blocks/planks_spruce", + "side": "blocks/planks_spruce" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_spruce_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_spruce_stairs.json new file mode 100644 index 0000000..1467791 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_spruce_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/planks_spruce", + "top": "blocks/planks_spruce", + "side": "blocks/planks_spruce" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stairs.json new file mode 100644 index 0000000..4d68fac --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stairs.json @@ -0,0 +1,49 @@ +{ + "parent": "block/block", + "display": { + "gui": { + "rotation": [ 30, 135, 0 ], + "translation": [ 0, 0, 0], + "scale":[ 0.625, 0.625, 0.625 ] + }, + "head": { + "rotation": [ 0, -90, 0 ], + "translation": [ 0, 0, 0 ], + "scale": [ 1, 1, 1 ] + }, + "thirdperson_lefthand": { + "rotation": [ 75, -135, 0 ], + "translation": [ 0, 2.5, 0], + "scale": [ 0.375, 0.375, 0.375 ] + } + }, + "textures": { + "particle": "#side" + }, + "elements": [ + { + "from": [ 5, 0, 0 ], + "to": [ 16, 5.5, 16 ], + "faces": { + "down": { "uv": [ 5, 16, 16, 0 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 5, 0, 16, 16 ], "texture": "#top" }, + "north": { "uv": [ 16, 10.5, 5, 16 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 5, 10.5, 16, 16 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 10.5, 16, 16 ], "texture": "#side", "cullface": "west" }, + "east": { "uv": [ 16, 10.5, 0, 16 ], "texture": "#side", "cullface": "east" } + } + }, + { + "from": [ 10.5, 5.5, 0 ], + "to": [ 16, 11, 16 ], + "faces": { + "down": { "uv": [ 10.5, 16, 16, 0 ], "texture": "#bottom", "cullface": "down" }, + "up": { "uv": [ 10.5, 0, 16, 16 ], "texture": "#top", "cullface": "up" }, + "north": { "uv": [ 16, 5, 10.5, 10.5 ], "texture": "#side", "cullface": "north" }, + "south": { "uv": [ 10.5, 5, 16, 10.5 ], "texture": "#side", "cullface": "south" }, + "west": { "uv": [ 0, 5, 16, 10.5 ], "texture": "#side" }, + "east": { "uv": [ 16, 5, 0, 10.5 ], "texture": "#side", "cullface": "east" } + } + } + ] +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_inner_stairs.json new file mode 100644 index 0000000..ced16b9 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/stonebrick", + "top": "blocks/stonebrick", + "side": "blocks/stonebrick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_outer_stairs.json new file mode 100644 index 0000000..83dfdbc --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/stonebrick", + "top": "blocks/stonebrick", + "side": "blocks/stonebrick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_stairs.json new file mode 100644 index 0000000..0657a6e --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_brick_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/stonebrick", + "top": "blocks/stonebrick", + "side": "blocks/stonebrick" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_inner_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_inner_stairs.json new file mode 100644 index 0000000..6378777 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_inner_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/inner_small_stairs", + "textures": { + "bottom": "blocks/stone", + "top": "blocks/stone", + "side": "blocks/stone" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_outer_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_outer_stairs.json new file mode 100644 index 0000000..eabd81a --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_outer_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/outer_small_stairs", + "textures": { + "bottom": "blocks/stone", + "top": "blocks/stone", + "side": "blocks/stone" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/block/small_stone_stairs.json b/resources/assets/eyeq_smallstairs/models/block/small_stone_stairs.json new file mode 100644 index 0000000..19c68df --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/block/small_stone_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "eyeq_smallstairs:block/small_stairs", + "textures": { + "bottom": "blocks/stone", + "top": "blocks/stone", + "side": "blocks/stone" + } +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_acacia_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_acacia_stairs.json new file mode 100644 index 0000000..adbc98b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_acacia_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_acacia_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_birch_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_birch_stairs.json new file mode 100644 index 0000000..352fd1d --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_birch_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_birch_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_brick_stairs.json new file mode 100644 index 0000000..d93cda4 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_brick_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_dark_oak_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_dark_oak_stairs.json new file mode 100644 index 0000000..136c4ea --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_dark_oak_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_dark_oak_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_jungle_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_jungle_stairs.json new file mode 100644 index 0000000..6bd69af --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_jungle_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_jungle_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_nether_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_nether_brick_stairs.json new file mode 100644 index 0000000..b0e2b9b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_nether_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_nether_brick_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_oak_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_oak_stairs.json new file mode 100644 index 0000000..94fc7a8 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_oak_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_oak_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_purpur_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_purpur_stairs.json new file mode 100644 index 0000000..1758ef6 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_purpur_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_purpur_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_quartz_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_quartz_stairs.json new file mode 100644 index 0000000..1f6377b --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_quartz_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_quartz_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_red_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_red_sandstone_stairs.json new file mode 100644 index 0000000..d797e78 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_red_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_red_sandstone_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_sandstone_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_sandstone_stairs.json new file mode 100644 index 0000000..1545938 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_sandstone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_sandstone_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_spruce_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_spruce_stairs.json new file mode 100644 index 0000000..3e52ed8 --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_spruce_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_spruce_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_stone_brick_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_stone_brick_stairs.json new file mode 100644 index 0000000..b0aeecd --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_stone_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_stone_brick_stairs" +} diff --git a/resources/assets/eyeq_smallstairs/models/item/small_stone_stairs.json b/resources/assets/eyeq_smallstairs/models/item/small_stone_stairs.json new file mode 100644 index 0000000..7ac5b8d --- /dev/null +++ b/resources/assets/eyeq_smallstairs/models/item/small_stone_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "eyeq_smallstairs:block/small_stone_stairs" +} diff --git a/resources/mcmod.info b/resources/mcmod.info new file mode 100644 index 0000000..f3325c9 --- /dev/null +++ b/resources/mcmod.info @@ -0,0 +1,9 @@ +[ +{ + "modid": "eyeq_smallstairs", + "name": "SmallStairs", + "description": "1/3Ki", + "authorList": ["eyeq"], + "credits": "" +} +] diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\202\242\343\202\253\343\202\267\343\202\242\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Acacia Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\202\242\343\202\253\343\202\267\343\202\242\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Acacia Wood Stairs).png" new file mode 100644 index 0000000..a7a9fac Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\202\242\343\202\253\343\202\267\343\202\242\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Acacia Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\202\270\343\203\243\343\203\263\343\202\260\343\203\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Jungle Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\202\270\343\203\243\343\203\263\343\202\260\343\203\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Jungle Wood Stairs).png" new file mode 100644 index 0000000..e1f75d1 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\202\270\343\203\243\343\203\263\343\202\260\343\203\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Jungle Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\203\200\343\203\274\343\202\257\343\202\252\343\203\274\343\202\257\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Dark Oak Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\200\343\203\274\343\202\257\343\202\252\343\203\274\343\202\257\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Dark Oak Wood Stairs).png" new file mode 100644 index 0000000..6a2f7e6 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\200\343\203\274\343\202\257\343\202\252\343\203\274\343\202\257\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Dark Oak Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Nether Brick Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Nether Brick Stairs).png" new file mode 100644 index 0000000..75211ed Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Nether Brick Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\346\260\264\346\231\266\343\201\256\351\232\216\346\256\265(Small Quartz Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\346\260\264\346\231\266\343\201\256\351\232\216\346\256\265(Small Quartz Stairs).png" new file mode 100644 index 0000000..b9f56b2 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\215\343\202\266\343\203\274\346\260\264\346\231\266\343\201\256\351\232\216\346\256\265(Small Quartz Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\203\227\343\203\253\343\203\227\343\202\241\343\201\256\351\232\216\346\256\265(Small Purpur Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\227\343\203\253\343\203\227\343\202\241\343\201\256\351\232\216\346\256\265(Small Purpur Stairs).png" new file mode 100644 index 0000000..c116bee Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\227\343\203\253\343\203\227\343\202\241\343\201\256\351\232\216\346\256\265(Small Purpur Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Brick Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Brick Stairs).png" new file mode 100644 index 0000000..6bc366b Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Brick Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\346\235\276\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Spruce Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\346\235\276\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Spruce Wood Stairs).png" new file mode 100644 index 0000000..d13d848 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\346\235\276\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Spruce Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\346\250\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Oak Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\346\250\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Oak Wood Stairs).png" new file mode 100644 index 0000000..28b5061 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\346\250\253\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Oak Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\347\231\275\346\250\272\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Birch Wood Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\347\231\275\346\250\272\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Birch Wood Stairs).png" new file mode 100644 index 0000000..f5a1f24 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\347\231\275\346\250\272\343\201\256\346\234\250\343\201\256\351\232\216\346\256\265(Small Birch Wood Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\201\256\351\232\216\346\256\265(Small Cobblestone Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\201\256\351\232\216\346\256\265(Small Cobblestone Stairs).png" new file mode 100644 index 0000000..3b3e027 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\201\256\351\232\216\346\256\265(Small Cobblestone Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Stone Brick Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Stone Brick Stairs).png" new file mode 100644 index 0000000..89503e6 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\347\237\263\343\203\254\343\203\263\343\202\254\343\201\256\351\232\216\346\256\265(Small Stone Brick Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Sandstone Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Sandstone Stairs).png" new file mode 100644 index 0000000..d5d3f20 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Sandstone Stairs).png" differ diff --git "a/screenshots/\345\260\217\343\201\225\343\201\252\350\265\244\350\211\262\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Red Sandstone Stairs).png" "b/screenshots/\345\260\217\343\201\225\343\201\252\350\265\244\350\211\262\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Red Sandstone Stairs).png" new file mode 100644 index 0000000..cef1275 Binary files /dev/null and "b/screenshots/\345\260\217\343\201\225\343\201\252\350\265\244\350\211\262\347\240\202\345\262\251\343\201\256\351\232\216\346\256\265(Small Red Sandstone Stairs).png" differ