More datagen
This commit is contained in:
parent
c97cadeea2
commit
b4c2940db8
805 changed files with 81 additions and 14133 deletions
|
@ -15,16 +15,22 @@ import techreborn.datagen.models.TexturePaths
|
||||||
class MixinTextureMap {
|
class MixinTextureMap {
|
||||||
@Inject(method = "getId(Lnet/minecraft/item/Item;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "getId(Lnet/minecraft/item/Item;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true)
|
||||||
private static void getId(Item item, CallbackInfoReturnable<Identifier> cir) {
|
private static void getId(Item item, CallbackInfoReturnable<Identifier> cir) {
|
||||||
TexturePaths.blockItemTexturePaths.each {
|
TexturePaths.blockPaths.each {
|
||||||
if (it.key.asItem() == item) {
|
if (it.key.asItem() == item) {
|
||||||
cir.setReturnValue(new Identifier("techreborn", "item/${it.value}"))
|
cir.setReturnValue(new Identifier("techreborn", "item/${it.value}"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def itemPath = TexturePaths.itemPaths.get(item)
|
||||||
|
|
||||||
|
if (itemPath) {
|
||||||
|
cir.setReturnValue(new Identifier("techreborn", "item/${itemPath}"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Inject(method = "getId(Lnet/minecraft/block/Block;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "getId(Lnet/minecraft/block/Block;)Lnet/minecraft/util/Identifier;", at = @At("HEAD"), cancellable = true)
|
||||||
private static void getId(Block block, CallbackInfoReturnable<Identifier> cir) {
|
private static void getId(Block block, CallbackInfoReturnable<Identifier> cir) {
|
||||||
TexturePaths.blockItemTexturePaths.each {
|
TexturePaths.blockPaths.each {
|
||||||
if (it.key == block) {
|
if (it.key == block) {
|
||||||
cir.setReturnValue(new Identifier("techreborn", "block/${it.value}"))
|
cir.setReturnValue(new Identifier("techreborn", "block/${it.value}"))
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,8 +26,12 @@ package techreborn.datagen.models
|
||||||
|
|
||||||
import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator
|
import net.fabricmc.fabric.api.datagen.v1.FabricDataGenerator
|
||||||
import net.fabricmc.fabric.api.datagen.v1.provider.FabricModelProvider
|
import net.fabricmc.fabric.api.datagen.v1.provider.FabricModelProvider
|
||||||
|
import net.minecraft.block.Blocks
|
||||||
import net.minecraft.data.client.BlockStateModelGenerator
|
import net.minecraft.data.client.BlockStateModelGenerator
|
||||||
import net.minecraft.data.client.ItemModelGenerator
|
import net.minecraft.data.client.ItemModelGenerator
|
||||||
|
import net.minecraft.data.client.Models
|
||||||
|
import net.minecraft.data.family.BlockFamilies
|
||||||
|
import net.minecraft.data.family.BlockFamily
|
||||||
import techreborn.init.TRContent
|
import techreborn.init.TRContent
|
||||||
|
|
||||||
class ModelProvider extends FabricModelProvider {
|
class ModelProvider extends FabricModelProvider {
|
||||||
|
@ -38,9 +42,42 @@ class ModelProvider extends FabricModelProvider {
|
||||||
@Override
|
@Override
|
||||||
void generateBlockStateModels(BlockStateModelGenerator generator) {
|
void generateBlockStateModels(BlockStateModelGenerator generator) {
|
||||||
generator.registerDoor(TRContent.RUBBER_DOOR)
|
generator.registerDoor(TRContent.RUBBER_DOOR)
|
||||||
|
|
||||||
|
TRContent.Ores.values().each {
|
||||||
|
generator.registerSimpleCubeAll(it.block)
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.StorageBlocks.values().each {
|
||||||
|
def family = BlockFamilies.register(it.block)
|
||||||
|
.slab(it.slabBlock)
|
||||||
|
.stairs(it.stairsBlock)
|
||||||
|
.wall(it.wallBlock)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
generator.registerCubeAllModelTexturePool(it.block).family(family)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
void generateItemModels(ItemModelGenerator generator) {
|
void generateItemModels(ItemModelGenerator generator) {
|
||||||
|
TRContent.Dusts.values().each {
|
||||||
|
generator.register(it.asItem(), Models.GENERATED)
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.SmallDusts.values().each {
|
||||||
|
generator.register(it.asItem(), Models.GENERATED)
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Ingots.values().each {
|
||||||
|
generator.register(it.asItem(), Models.GENERATED)
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Plates.values().each {
|
||||||
|
generator.register(it.asItem(), Models.GENERATED)
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Nuggets.values().each {
|
||||||
|
generator.register(it.asItem(), Models.GENERATED)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,20 +25,47 @@
|
||||||
package techreborn.datagen.models
|
package techreborn.datagen.models
|
||||||
|
|
||||||
import net.minecraft.block.Block
|
import net.minecraft.block.Block
|
||||||
|
import net.minecraft.item.Item
|
||||||
import techreborn.init.TRContent
|
import techreborn.init.TRContent
|
||||||
|
|
||||||
class TexturePaths {
|
class TexturePaths {
|
||||||
public static Map<Block, String> blockItemTexturePaths = [
|
public static Map<Block, String> blockPaths = [
|
||||||
(TRContent.RUBBER_DOOR): "misc/rubber_door"
|
(TRContent.RUBBER_DOOR): "misc/rubber_door"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
public static Map<Item, String> itemPaths = [:]
|
||||||
|
|
||||||
static {
|
static {
|
||||||
TRContent.Ores.values().each {
|
TRContent.Ores.values().each {
|
||||||
if (it.isDeepslate()) {
|
if (it.isDeepslate()) {
|
||||||
blockItemTexturePaths.put(it.block, "ore/deepslate/${it.name.toLowerCase()}_ore")
|
blockPaths.put(it.block, "ore/deepslate/${it.name.toLowerCase()}_ore")
|
||||||
} else {
|
} else {
|
||||||
blockItemTexturePaths.put(it.block, "ore/${it.name.toLowerCase()}_ore")
|
blockPaths.put(it.block, "ore/${it.name.toLowerCase()}_ore")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TRContent.StorageBlocks.values().each {
|
||||||
|
blockPaths.put(it.block, "storage/${it.name.toLowerCase()}_storage_block")
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Dusts.values().each {
|
||||||
|
itemPaths.put(it.asItem(), "dust/${it.name.toLowerCase()}_dust")
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.SmallDusts.values().each {
|
||||||
|
itemPaths.put(it.asItem(), "smalldust/${it.name.toLowerCase()}_small_dust")
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Ingots.values().each {
|
||||||
|
itemPaths.put(it.asItem(), "ingot/${it.name.toLowerCase()}_ingot")
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Plates.values().each {
|
||||||
|
itemPaths.put(it.asItem(), "plate/${it.name.toLowerCase()}_plate")
|
||||||
|
}
|
||||||
|
|
||||||
|
TRContent.Nuggets.values().each {
|
||||||
|
itemPaths.put(it.asItem(), "nugget/${it.name.toLowerCase()}_nugget")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,6 +112,9 @@ class TRBlockTagProvider extends FabricTagProvider.BlockTagProvider {
|
||||||
.add(it.wallBlock)
|
.add(it.wallBlock)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getOrCreateTagBuilder(BlockTags.WALLS)
|
||||||
|
.add(TRContent.COPPER_WALL)
|
||||||
|
|
||||||
getOrCreateTagBuilder(BlockTags.WOODEN_BUTTONS)
|
getOrCreateTagBuilder(BlockTags.WOODEN_BUTTONS)
|
||||||
.add(TRContent.RUBBER_BUTTON)
|
.add(TRContent.RUBBER_BUTTON)
|
||||||
|
|
||||||
|
|
|
@ -150,6 +150,9 @@ class TRItemTagProvider extends ItemTagProvider {
|
||||||
.add(it.wallBlock.asItem())
|
.add(it.wallBlock.asItem())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
getOrCreateTagBuilder(ItemTags.WALLS)
|
||||||
|
.add(TRContent.COPPER_WALL.asItem())
|
||||||
|
|
||||||
getOrCreateTagBuilder(ItemTags.WOODEN_BUTTONS)
|
getOrCreateTagBuilder(ItemTags.WOODEN_BUTTONS)
|
||||||
.add(TRContent.RUBBER_BUTTON.asItem())
|
.add(TRContent.RUBBER_BUTTON.asItem())
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/advanced_alloy_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/aluminum_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/bauxite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/brass_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/bronze_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/chrome_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/cinnabar_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_bauxite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_galena_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_iridium_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_lead_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_peridot_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_ruby_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_sapphire_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_sheldonite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_silver_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_sodalite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_sphalerite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_tin_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/deepslate/deepslate_tungsten_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/electrum_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/galena_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/hot_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/invar_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/iridium_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_stone_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_reinforced_tungstensteel_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/lead_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/lead_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/nickel_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/peridot_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/peridot_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/platinum_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/pyrite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_iridium_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_lead_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_silver_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tin_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/raw_tungsten_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/red_garnet_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/refined_iron_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/ruby_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/ruby_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/sapphire_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"type=bottom": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_slab"
|
|
||||||
},
|
|
||||||
"type=double": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block"
|
|
||||||
},
|
|
||||||
"type=top": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_slab_top"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,209 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"facing=east,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=east,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs"
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=east,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=north,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer"
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=south,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=bottom,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=inner_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_inner",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_left": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=outer_right": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs_outer",
|
|
||||||
"x": 180,
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
},
|
|
||||||
"facing=west,half=top,shape=straight": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_stairs",
|
|
||||||
"x": 180,
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,90 +0,0 @@
|
||||||
{
|
|
||||||
"multipart": [
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"up": "true"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_post"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "low"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"north": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall",
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"east": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall",
|
|
||||||
"y": 90,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"south": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall",
|
|
||||||
"y": 180,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"when": {
|
|
||||||
"west": "tall"
|
|
||||||
},
|
|
||||||
"apply": {
|
|
||||||
"model": "techreborn:block/storage/sapphire_storage_block_wall_side_tall",
|
|
||||||
"y": 270,
|
|
||||||
"uvlock": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"variants": {
|
|
||||||
"": { "model": "techreborn:block/ore/sheldonite_ore" }
|
|
||||||
}
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue