Fixes most of the item model issues after registry name changes.
This commit is contained in:
parent
85cf7d7981
commit
5211bf4c98
121 changed files with 497 additions and 936 deletions
|
@ -39,10 +39,10 @@ public class SkyChestRenderingCustomizer extends BlockRenderingCustomizer
|
|||
{
|
||||
default:
|
||||
case STONE:
|
||||
modelName = "sky_chest_stone";
|
||||
modelName = "sky_stone_chest";
|
||||
break;
|
||||
case BLOCK:
|
||||
modelName = "sky_chest_block";
|
||||
modelName = "smooth_sky_stone_chest";
|
||||
break;
|
||||
}
|
||||
return modelName;
|
||||
|
|
|
@ -198,28 +198,39 @@ public final class ApiBlocks implements IBlocks
|
|||
this.quartzBlock = deco.block( "quartz_block", BlockQuartz::new ).build();
|
||||
this.quartzPillar = deco.block( "quartz_pillar", BlockQuartzPillar::new ).build();
|
||||
this.chiseledQuartzBlock = deco.block( "chiseled_quartz_block", BlockChiseledQuartz::new ).build();
|
||||
this.quartzGlass = deco.block( "quartz_glass", BlockQuartzGlass::new ).build();
|
||||
this.quartzVibrantGlass = deco.block( "quartz_vibrant_glass", BlockQuartzLamp::new ).addFeatures( AEFeature.DecorativeLights ).build();
|
||||
this.quartzFixture = registry.block( "quartz_fixture", BlockQuartzFixture::new ).features( AEFeature.DecorativeLights ).build();
|
||||
this.quartzGlass = deco.block( "quartz_glass", BlockQuartzGlass::new )
|
||||
.useCustomItemModel()
|
||||
.build();
|
||||
this.quartzVibrantGlass = deco.block( "quartz_vibrant_glass", BlockQuartzLamp::new )
|
||||
.addFeatures( AEFeature.DecorativeLights )
|
||||
.useCustomItemModel()
|
||||
.build();
|
||||
this.quartzFixture = registry.block( "quartz_fixture", BlockQuartzFixture::new )
|
||||
.features( AEFeature.DecorativeLights )
|
||||
.useCustomItemModel()
|
||||
.build();
|
||||
|
||||
this.fluixBlock = deco.block( "fluix_block", BlockFluix::new ).build();
|
||||
this.skyStoneBlock = deco.block( "sky_stone_block", () -> new BlockSkyStone( SkystoneType.STONE ) ).build();
|
||||
this.smoothSkyStoneBlock = deco.block( "smooth_skystone", () -> new BlockSkyStone( SkystoneType.BLOCK ) ).build();
|
||||
this.skyStoneBrick = deco.block( "skystone_brick", () -> new BlockSkyStone( SkystoneType.BRICK ) ).build();
|
||||
this.skyStoneSmallBrick = deco.block( "skystone_small_brick", () -> new BlockSkyStone( SkystoneType.SMALL_BRICK ) ).build();
|
||||
this.smoothSkyStoneBlock = deco.block( "smooth_sky_stone_block", () -> new BlockSkyStone( SkystoneType.BLOCK ) ).build();
|
||||
this.skyStoneBrick = deco.block( "sky_stone_brick", () -> new BlockSkyStone( SkystoneType.BRICK ) ).build();
|
||||
this.skyStoneSmallBrick = deco.block( "sky_stone_small_brick", () -> new BlockSkyStone( SkystoneType.SMALL_BRICK ) ).build();
|
||||
|
||||
this.skyStoneChest = registry.block( "skystone_chest", () -> new BlockSkyChest( SkyChestType.STONE ) )
|
||||
this.skyStoneChest = registry.block( "sky_stone_chest", () -> new BlockSkyChest( SkyChestType.STONE ) )
|
||||
.features( AEFeature.SkyStoneChests )
|
||||
.rendering( new SkyChestRenderingCustomizer( SkyChestType.STONE ) )
|
||||
.build();
|
||||
this.smoothSkyStoneChest = registry.block( "smooth_skystone_chest", () -> new BlockSkyChest( SkyChestType.BLOCK ) )
|
||||
this.smoothSkyStoneChest = registry.block( "smooth_sky_stone_chest", () -> new BlockSkyChest( SkyChestType.BLOCK ) )
|
||||
.features( AEFeature.SkyStoneChests )
|
||||
.rendering( new SkyChestRenderingCustomizer( SkyChestType.BLOCK ) )
|
||||
.build();
|
||||
|
||||
this.skyCompass = registry.block( "sky_compass", BlockSkyCompass::new ).features( AEFeature.MeteoriteCompass ).build();
|
||||
this.grindstone = registry.block( "grindstone", BlockGrinder::new ).features( AEFeature.GrindStone ).build();
|
||||
this.crank = registry.block( "crank", BlockCrank::new ).features( AEFeature.GrindStone ).build();
|
||||
this.crank = registry.block( "crank", BlockCrank::new )
|
||||
.features( AEFeature.GrindStone )
|
||||
.useCustomItemModel()
|
||||
.build();
|
||||
this.inscriber = registry.block( "inscriber", BlockInscriber::new ).features( AEFeature.Inscriber ).build();
|
||||
this.wirelessAccessPoint = registry.block( "wireless_access_point", BlockWireless::new ).features( AEFeature.WirelessAccessTerminal ).build();
|
||||
this.charger = registry.block( "charger", BlockCharger::new )
|
||||
|
@ -288,10 +299,10 @@ public final class ApiBlocks implements IBlocks
|
|||
this.lightDetector = registry.block( "light_detector", BlockLightDetector::new ).features( AEFeature.LightDetector ).build();
|
||||
this.paint = registry.block( "paint", BlockPaint::new ).features( AEFeature.PaintBalls ).build();
|
||||
|
||||
this.skyStoneStairs = makeStairs( "skystone_stairs", registry, this.skyStoneBlock() );
|
||||
this.smoothSkyStoneStairs = makeStairs( "smooth_skystone_stairs", registry, this.smoothSkyStoneBlock() );
|
||||
this.skyStoneBrickStairs = makeStairs( "skystone_brick_stairs", registry, this.skyStoneBrick() );
|
||||
this.skyStoneSmallBrickStairs = makeStairs( "skystone_small_brick_stairs", registry, this.skyStoneSmallBrick() );
|
||||
this.skyStoneStairs = makeStairs( "sky_stone_stairs", registry, this.skyStoneBlock() );
|
||||
this.smoothSkyStoneStairs = makeStairs( "smooth_sky_stone_stairs", registry, this.smoothSkyStoneBlock() );
|
||||
this.skyStoneBrickStairs = makeStairs( "sky_stone_brick_stairs", registry, this.skyStoneBrick() );
|
||||
this.skyStoneSmallBrickStairs = makeStairs( "sky_stone_small_brick_stairs", registry, this.skyStoneSmallBrick() );
|
||||
this.fluixStairs = makeStairs( "fluix_stairs", registry, this.fluixBlock() );
|
||||
this.quartzStairs = makeStairs( "quartz_stairs", registry, this.quartzBlock() );
|
||||
this.chiseledQuartzStairs = makeStairs( "chiseled_quartz_stairs", registry, this.chiseledQuartzBlock() );
|
||||
|
|
|
@ -136,7 +136,7 @@ public final class ApiMaterials implements IMaterials
|
|||
this.cell128SpatialPart = new DamagedItemDefinition( "material.cell.spatial.128", materials.createMaterial( MaterialType.Cell128SpatialPart ) );
|
||||
|
||||
this.silicon = new DamagedItemDefinition( "material.silicon", materials.createMaterial( MaterialType.Silicon ) );
|
||||
this.skyDust = new DamagedItemDefinition( "material.dust.skystone", materials.createMaterial( MaterialType.SkyDust ) );
|
||||
this.skyDust = new DamagedItemDefinition( "material.dust.sky_stone", materials.createMaterial( MaterialType.SkyDust ) );
|
||||
|
||||
this.calcProcessorPress = new DamagedItemDefinition( "material.press.processor.calculation", materials.createMaterial( MaterialType.CalcProcessorPress ) );
|
||||
this.engProcessorPress = new DamagedItemDefinition( "material.press.processor.engineering", materials.createMaterial( MaterialType.EngProcessorPress ) );
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:cell_work_bench"
|
||||
"model": "appliedenergistics2:cell_workbench"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:chiseled_quartz"
|
||||
"model": "appliedenergistics2:chiseled_quartz_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner"
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer"
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled"
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner"
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer"
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_inner",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled_outer",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_chiseled",
|
||||
"model": "appliedenergistics2:stairs/chiseled_quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:fluix"
|
||||
"model": "appliedenergistics2:fluix_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:grinder"
|
||||
"model": "appliedenergistics2:grindstone"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:quartz"
|
||||
"model": "appliedenergistics2:quartz_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner"
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer"
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar"
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner"
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer"
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_pillar",
|
||||
"model": "appliedenergistics2:stairs/quartz_pillar",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner"
|
||||
"model": "appliedenergistics2:stairs/quartz_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer"
|
||||
"model": "appliedenergistics2:stairs/quartz_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus"
|
||||
"model": "appliedenergistics2:stairs/quartz"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner"
|
||||
"model": "appliedenergistics2:stairs/quartz_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer"
|
||||
"model": "appliedenergistics2:stairs/quartz_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_inner",
|
||||
"model": "appliedenergistics2:stairs/quartz_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus_outer",
|
||||
"model": "appliedenergistics2:stairs/quartz_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/quartz_certus",
|
||||
"model": "appliedenergistics2:stairs/quartz",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:sky_stone_block_stone"
|
||||
"model": "appliedenergistics2:sky_stone_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:sky_stone_block_brick"
|
||||
"model": "appliedenergistics2:sky_stone_brick"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:sky_stone_block_small_brick"
|
||||
"model": "appliedenergistics2:sky_stone_small_brick"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_brick_small",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_small_brick",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone"
|
||||
"model": "appliedenergistics2:stairs/sky_stone"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer"
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_inner",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone_outer",
|
||||
"model": "appliedenergistics2:stairs/sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_stone",
|
||||
"model": "appliedenergistics2:stairs/sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:sky_stone_stone"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:sky_stone_block_block"
|
||||
"model": "appliedenergistics2:smooth_sky_stone_block"
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,206 +1,206 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner"
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner"
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=east,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer"
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer"
|
||||
},
|
||||
"facing=east,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block"
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone"
|
||||
},
|
||||
"facing=east,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=east,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=east,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=north,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=north,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180
|
||||
},
|
||||
"facing=north,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner"
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner"
|
||||
},
|
||||
"facing=south,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer"
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer"
|
||||
},
|
||||
"facing=south,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=south,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=south,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 90
|
||||
},
|
||||
"facing=west,half=bottom,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=bottom,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=inner_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_inner",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_inner",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=outer_left": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
},
|
||||
"facing=west,half=top,shape=outer_right": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block_outer",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone_outer",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 270
|
||||
},
|
||||
"facing=west,half=top,shape=straight": {
|
||||
"model": "appliedenergistics2:stairs/skystone_block",
|
||||
"model": "appliedenergistics2:stairs/smooth_sky_stone",
|
||||
"uvlock": true,
|
||||
"x": 180,
|
||||
"y": 180
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"normal": {
|
||||
"model": "appliedenergistics2:wireless",
|
||||
"model": "appliedenergistics2:wireless_access_point",
|
||||
"y": 180
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/QuartzOreBlock"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/fluix"
|
||||
"all": "appliedenergistics2:blocks/fluix_block"
|
||||
}
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/cube/cube_ae_machine",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/grinder_bottom",
|
||||
"front": "appliedenergistics2:blocks/grinder_front",
|
||||
"side": "appliedenergistics2:blocks/grinder_side",
|
||||
"top": "appliedenergistics2:blocks/grinder"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/cube/cube_ae_machine",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/grindstone_bottom",
|
||||
"front": "appliedenergistics2:blocks/grindstone_front",
|
||||
"side": "appliedenergistics2:blocks/grindstone_side",
|
||||
"top": "appliedenergistics2:blocks/grindstone"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/quartz"
|
||||
"all": "appliedenergistics2:blocks/quartz_block"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/cube_column",
|
||||
"textures": {
|
||||
"end": "appliedenergistics2:blocks/quartz_pillar_block_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_block_side"
|
||||
"end": "appliedenergistics2:blocks/quartz_pillar_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_side"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
"all": "appliedenergistics2:blocks/sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/sky_stone_block_brick"
|
||||
"all": "appliedenergistics2:blocks/sky_stone_brick"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/sky_stone_block_small_brick"
|
||||
"all": "appliedenergistics2:blocks/sky_stone_small_brick"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/sky_stone_block_stone"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "appliedenergistics2:blocks/smooth_sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/fluix",
|
||||
"side": "appliedenergistics2:blocks/fluix",
|
||||
"top": "appliedenergistics2:blocks/fluix"
|
||||
"bottom": "appliedenergistics2:blocks/fluix_block",
|
||||
"side": "appliedenergistics2:blocks/fluix_block",
|
||||
"top": "appliedenergistics2:blocks/fluix_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/fluix",
|
||||
"side": "appliedenergistics2:blocks/fluix",
|
||||
"top": "appliedenergistics2:blocks/fluix"
|
||||
"bottom": "appliedenergistics2:blocks/fluix_block",
|
||||
"side": "appliedenergistics2:blocks/fluix_block",
|
||||
"top": "appliedenergistics2:blocks/fluix_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/fluix",
|
||||
"side": "appliedenergistics2:blocks/fluix",
|
||||
"top": "appliedenergistics2:blocks/fluix"
|
||||
"bottom": "appliedenergistics2:blocks/fluix_block",
|
||||
"side": "appliedenergistics2:blocks/fluix_block",
|
||||
"top": "appliedenergistics2:blocks/fluix_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_block",
|
||||
"side": "appliedenergistics2:blocks/quartz_block",
|
||||
"top": "appliedenergistics2:blocks/quartz_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz",
|
||||
"side": "appliedenergistics2:blocks/quartz",
|
||||
"top": "appliedenergistics2:blocks/quartz"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz",
|
||||
"side": "appliedenergistics2:blocks/quartz",
|
||||
"top": "appliedenergistics2:blocks/quartz"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz",
|
||||
"side": "appliedenergistics2:blocks/quartz",
|
||||
"top": "appliedenergistics2:blocks/quartz"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_block_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_block_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_block_top"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_block_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_block_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_block_top"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_block_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_block_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_block_top"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_block",
|
||||
"side": "appliedenergistics2:blocks/quartz_block",
|
||||
"top": "appliedenergistics2:blocks/quartz_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_block",
|
||||
"side": "appliedenergistics2:blocks/quartz_block",
|
||||
"top": "appliedenergistics2:blocks/quartz_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_top"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_top"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/quartz_pillar_top",
|
||||
"side": "appliedenergistics2:blocks/quartz_pillar_side",
|
||||
"top": "appliedenergistics2:blocks/quartz_pillar_top"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_brick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_brick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_brick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_small_brick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_small_brick"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_small_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_block",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_block"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_small_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_small_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_small_brick",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_small_brick"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_stone"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_stone"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"side": "appliedenergistics2:blocks/sky_stone_block_stone",
|
||||
"top": "appliedenergistics2:blocks/sky_stone_block_stone"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/smooth_sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/smooth_sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"side": "appliedenergistics2:blocks/smooth_sky_stone_block",
|
||||
"top": "appliedenergistics2:blocks/smooth_sky_stone_block"
|
||||
}
|
||||
}
|
|
@ -1,353 +0,0 @@
|
|||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"elements": [
|
||||
{
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
16.0
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0
|
||||
],
|
||||
"name": "Cube",
|
||||
"to": [
|
||||
16.0,
|
||||
16.0,
|
||||
16.0
|
||||
]
|
||||
},
|
||||
{
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
6.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
16.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
6.0
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
0.0,
|
||||
0.0,
|
||||
0.0
|
||||
],
|
||||
"name": "Cube",
|
||||
"to": [
|
||||
16.0,
|
||||
6.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
{
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
1.0
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
0.0,
|
||||
6.0,
|
||||
0.0
|
||||
],
|
||||
"name": "Cube",
|
||||
"to": [
|
||||
1.0,
|
||||
7.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
{
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
5.0
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
5.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
5.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
1.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
5.0
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
15.0,
|
||||
0.0,
|
||||
0.0
|
||||
],
|
||||
"name": "Cube",
|
||||
"to": [
|
||||
16.0,
|
||||
5.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
{
|
||||
"faces": {
|
||||
"down": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
10.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"east": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"north": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
10.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"south": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
10.0,
|
||||
1.0
|
||||
]
|
||||
},
|
||||
"up": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
10.0,
|
||||
15.0
|
||||
]
|
||||
},
|
||||
"west": {
|
||||
"texture": "#-1",
|
||||
"uv": [
|
||||
0.0,
|
||||
0.0,
|
||||
15.0,
|
||||
1.0
|
||||
]
|
||||
}
|
||||
},
|
||||
"from": [
|
||||
3.0,
|
||||
15.0,
|
||||
0.0
|
||||
],
|
||||
"name": "Cube",
|
||||
"to": [
|
||||
13.0,
|
||||
16.0,
|
||||
15.0
|
||||
]
|
||||
}
|
||||
],
|
||||
"textures": {
|
||||
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"__comment": "Model generated using MrCrayfish's Model Creator (http://mrcrayfish.com/modelcreator/)",
|
||||
"parent": "block/block",
|
||||
"elements": [
|
||||
{
|
||||
"faces": {
|
||||
|
@ -762,8 +762,8 @@
|
|||
}
|
||||
],
|
||||
"textures": {
|
||||
"particle": "appliedenergistics2:blocks/wireless_inside",
|
||||
"0": "appliedenergistics2:blocks/wireless_inside",
|
||||
"1": "appliedenergistics2:blocks/wireless"
|
||||
"particle": "appliedenergistics2:blocks/wireless_access_point_inside",
|
||||
"0": "appliedenergistics2:blocks/wireless_access_point_inside",
|
||||
"1": "appliedenergistics2:blocks/wireless_access_point"
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/cell_workbench"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/charger"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/condenser"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/drive"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/energy_acceptor"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/grinder"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/inscriber"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/ioport"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/quartz_growth_accelerator_off"
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:item/sky_chest_stone",
|
||||
"parent": "appliedenergistics2:item/sky_stone_chest",
|
||||
"textures": {
|
||||
"particle": "appliedenergistics2:models/skyblockchest",
|
||||
"0": "appliedenergistics2:models/skyblockchest"
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/spatial_ioport"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/stairs/fluix"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/stairs/quartz_certus"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/stairs/quartz_certus_chiseled"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "appliedenergistics2:block/stairs/quartz_certus_pillar"
|
||||
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue