Default ID fix, renames
This commit is contained in:
parent
720103bd45
commit
e1f88b453a
88 changed files with 482 additions and 561 deletions
|
@ -165,9 +165,9 @@ public class EChestBlockEntityRenderer extends BlockEntityRenderer<EChestBlockEn
|
|||
|
||||
static {
|
||||
defaultLayer = new RenderLayer[] {
|
||||
RenderLayer.getEntitySolid(new Identifier(BetterEnd.MOD_ID, "entity/chest/normal.png")),
|
||||
RenderLayer.getEntitySolid(new Identifier(BetterEnd.MOD_ID, "entity/chest/normal_left.png")),
|
||||
RenderLayer.getEntitySolid(new Identifier(BetterEnd.MOD_ID, "entity/chest/normal_right.png"))
|
||||
RenderLayer.getEntitySolid(new Identifier("entity/chest/normal.png")),
|
||||
RenderLayer.getEntitySolid(new Identifier("entity/chest/normal_left.png")),
|
||||
RenderLayer.getEntitySolid(new Identifier("entity/chest/normal_right.png"))
|
||||
};
|
||||
|
||||
ItemRegistry.getModBlocks().forEach((item) -> {
|
||||
|
|
|
@ -105,7 +105,7 @@ public class ESignBlockEntityRenderer extends BlockEntityRenderer<ESignBlockEnti
|
|||
}
|
||||
|
||||
static {
|
||||
defaultLayer = RenderLayer.getEntitySolid(new Identifier(BetterEnd.MOD_ID, "entity/chest/normal.png"));
|
||||
defaultLayer = RenderLayer.getEntitySolid(new Identifier("entity/sign/oak.png"));
|
||||
|
||||
ItemRegistry.getModBlocks().forEach((item) -> {
|
||||
if (item instanceof BlockItem) {
|
||||
|
|
|
@ -30,13 +30,17 @@ public class Helper
|
|||
|
||||
public static final String[] BLOCKS = new String[] {
|
||||
"%name%_bark.json",
|
||||
"%name%_barrel.json",
|
||||
"%name%_barrel_open.json",
|
||||
"%name%_button.json",
|
||||
"%name%_button_inventory.json",
|
||||
"%name%_button_pressed.json",
|
||||
"%name%_crafting_table.json",
|
||||
"%name%_door_bottom.json",
|
||||
"%name%_door_bottom_hinge.json",
|
||||
"%name%_door_top.json",
|
||||
"%name%_door_top_hinge.json",
|
||||
"%name%_empty.json",
|
||||
"%name%_fence_gate_closed.json",
|
||||
"%name%_fence_gate_open.json",
|
||||
"%name%_fence_inventory.json",
|
||||
|
@ -51,19 +55,11 @@ public class Helper
|
|||
"%name%_pressure_plate_down.json",
|
||||
"%name%_pressure_plate_up.json",
|
||||
"%name%_stairs.json",
|
||||
"%name%_striped_bark.json",
|
||||
"%name%_striped_log.json",
|
||||
"%name%_trapdoor.json",
|
||||
"%name%_wall_gate_closed.json",
|
||||
"%name%_wall_gate_open.json",
|
||||
"barrel_%name%.json",
|
||||
"barrel_%name%_open.json",
|
||||
"bar_stool_%name%.json",
|
||||
"chair_%name%.json",
|
||||
"chair_%name%_top.json",
|
||||
"crafting_table_%name%.json",
|
||||
"empty_%name%.json",
|
||||
"striped_bark_%name%.json",
|
||||
"striped_log_%name%.json",
|
||||
"taburet_%name%.json"
|
||||
"%name%_wall_gate_open.json"
|
||||
};
|
||||
|
||||
public static final String[] ITEMS = new String[] {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/%name%_log_side"
|
||||
}
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/%name%_log_side"
|
||||
}
|
||||
}
|
||||
|
|
8
utility_res/block/%name%_barrel.json
Normal file
8
utility_res/block/%name%_barrel.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betternether:block/%name%_barrel_top",
|
||||
"bottom": "betternether:block/%name%_barrel_bottom",
|
||||
"side": "betternether:block/%name%_barrel_side"
|
||||
}
|
||||
}
|
8
utility_res/block/%name%_barrel_open.json
Normal file
8
utility_res/block/%name%_barrel_open.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betternether:block/%name%_barrel_top_open",
|
||||
"bottom": "betternether:block/%name%_barrel_bottom",
|
||||
"side": "betternether:block/%name%_barrel_side"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/button",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button_inventory",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/button_inventory",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/button_pressed",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/button_pressed",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
12
utility_res/block/%name%_crafting_table.json
Normal file
12
utility_res/block/%name%_crafting_table.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_crafting_table_front",
|
||||
"north": "betternether:block/%name%_crafting_table_front",
|
||||
"south": "betternether:block/%name%_crafting_table_side",
|
||||
"east": "betternether:block/%name%_crafting_table_side",
|
||||
"west": "betternether:block/%name%_crafting_table_front",
|
||||
"up": "betternether:block/%name%_crafting_table_top",
|
||||
"down": "betternether:block/%name%_crafting_table_bottom"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_bottom",
|
||||
"top": "betternether:block/%name%_door_bottom"
|
||||
}
|
||||
"parent": "block/door_bottom",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_bottom",
|
||||
"top": "betternether:block/%name%_door_bottom"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_bottom",
|
||||
"top": "betternether:block/%name%_door_bottom"
|
||||
}
|
||||
"parent": "block/door_bottom_rh",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_bottom",
|
||||
"top": "betternether:block/%name%_door_bottom"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_top",
|
||||
"top": "betternether:block/%name%_door_top"
|
||||
}
|
||||
"parent": "block/door_top",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_top",
|
||||
"top": "betternether:block/%name%_door_top"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_top",
|
||||
"top": "betternether:block/%name%_door_top"
|
||||
}
|
||||
"parent": "block/door_top_rh",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_door_top",
|
||||
"top": "betternether:block/%name%_door_top"
|
||||
}
|
||||
}
|
||||
|
|
5
utility_res/block/%name%_empty.json
Normal file
5
utility_res/block/%name%_empty.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/template_fence_gate",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/template_fence_gate_open",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/fence_inventory",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_post",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/fence_post",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/fence_side",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/slab",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/inner_stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"parent": "betternether:block/reeds_ladder",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_ladder",
|
||||
"parent": "betternether:block/reeds_ladder",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_ladder",
|
||||
"texture": "betternether:block/%name%_ladder"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_log_side",
|
||||
"down": "betternether:block/%name%_log_top",
|
||||
"up": "betternether:block/%name%_log_top",
|
||||
"north": "betternether:block/%name%_log_side",
|
||||
"east": "betternether:block/%name%_log_side",
|
||||
"south": "betternether:block/%name%_log_side",
|
||||
"west": "betternether:block/%name%_log_side"
|
||||
}
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_log_side",
|
||||
"down": "betternether:block/%name%_log_top",
|
||||
"up": "betternether:block/%name%_log_top",
|
||||
"north": "betternether:block/%name%_log_side",
|
||||
"east": "betternether:block/%name%_log_side",
|
||||
"south": "betternether:block/%name%_log_side",
|
||||
"west": "betternether:block/%name%_log_side"
|
||||
}
|
||||
}
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/outer_stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/pressure_plate_down",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/pressure_plate_down",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/pressure_plate_up",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/pressure_plate_up",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/stairs",
|
||||
"textures": {
|
||||
"bottom": "betternether:block/%name%_planks",
|
||||
"top": "betternether:block/%name%_planks",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
6
utility_res/block/%name%_striped_bark.json
Normal file
6
utility_res/block/%name%_striped_bark.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/%name%_striped_log_side"
|
||||
}
|
||||
}
|
12
utility_res/block/%name%_striped_log.json
Normal file
12
utility_res/block/%name%_striped_log.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_striped_log_side",
|
||||
"down": "betternether:block/%name%_striped_log_top",
|
||||
"up": "betternether:block/%name%_striped_log_top",
|
||||
"north": "betternether:block/%name%_striped_log_side",
|
||||
"east": "betternether:block/%name%_striped_log_side",
|
||||
"south": "betternether:block/%name%_striped_log_side",
|
||||
"west": "betternether:block/%name%_striped_log_side"
|
||||
}
|
||||
}
|
|
@ -1,68 +1,6 @@
|
|||
{
|
||||
"__comment": "Designed by Paulevs with Cubik Studio - https://cubik.studio",
|
||||
"parent": "block/block",
|
||||
"parent": "block/template_orientable_trapdoor_bottom",
|
||||
"textures": {
|
||||
"particle": "betternether:block/%name%_trapdoor",
|
||||
"texture": "betternether:block/%name%_trapdoor",
|
||||
"side": "betternether:block/%name%_planks"
|
||||
"texture": "betternether:block/%name%_trapdoor"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 0, 0, 0 ],
|
||||
"to": [ 2, 3, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture", "cullface": "down" },
|
||||
"up": { "uv": [ 0, 0, 2, 16 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 14, 12, 16, 15 ], "texture": "#side", "cullface": "north" },
|
||||
"south": { "uv": [ 0, 12, 2, 15 ], "texture": "#side", "cullface": "south" },
|
||||
"west": { "uv": [ 0, 12, 16, 15 ], "texture": "#side", "cullface": "west" },
|
||||
"east": { "uv": [ 0, 12, 16, 15 ], "texture": "#side" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 14, 0, 0 ],
|
||||
"to": [ 16, 3, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture", "cullface": "down" },
|
||||
"up": { "uv": [ 14, 0, 16, 16 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 0, 12, 2, 15 ], "texture": "#side", "cullface": "north" },
|
||||
"south": { "uv": [ 14, 12, 16, 15 ], "texture": "#side", "cullface": "south" },
|
||||
"west": { "uv": [ 0, 12, 16, 15 ], "texture": "#side" },
|
||||
"east": { "uv": [ 0, 12, 16, 15 ], "texture": "#side", "cullface": "east" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 0, 0 ],
|
||||
"to": [ 14, 3, 2 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture", "cullface": "down" },
|
||||
"up": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 2, 12, 14, 15 ], "texture": "#side", "cullface": "north" },
|
||||
"south": { "uv": [ 2, 12, 14, 15 ], "texture": "#side" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 0, 14 ],
|
||||
"to": [ 14, 3, 16 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 2, 0, 14, 2 ], "texture": "#texture", "cullface": "down" },
|
||||
"up": { "uv": [ 2, 14, 14, 16 ], "texture": "#texture" },
|
||||
"north": { "uv": [ 2, 12, 14, 15 ], "texture": "#side" },
|
||||
"south": { "uv": [ 2, 12, 14, 15 ], "texture": "#side", "cullface": "south" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"__comment": "Box1",
|
||||
"from": [ 2, 1, 2 ],
|
||||
"to": [ 14, 2, 14 ],
|
||||
"faces": {
|
||||
"down": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" },
|
||||
"up": { "uv": [ 2, 2, 14, 14 ], "texture": "#texture" }
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/template_fence_gate_wall",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
"parent": "block/template_fence_gate_wall_open",
|
||||
"textures": {
|
||||
"texture": "betternether:block/%name%_planks"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betternether:block/barrel_%name%_top",
|
||||
"bottom": "betternether:block/barrel_%name%_bottom",
|
||||
"side": "betternether:block/barrel_%name%_side"
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube_bottom_top",
|
||||
"textures": {
|
||||
"top": "betternether:block/barrel_%name%_top_open",
|
||||
"bottom": "betternether:block/barrel_%name%_bottom",
|
||||
"side": "betternether:block/barrel_%name%_side"
|
||||
}
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"parent": "minecraft:block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/crafting_table_%name%_front",
|
||||
"north": "betternether:block/crafting_table_%name%_front",
|
||||
"south": "betternether:block/crafting_table_%name%_side",
|
||||
"east": "betternether:block/crafting_table_%name%_side",
|
||||
"west": "betternether:block/crafting_table_%name%_front",
|
||||
"up": "betternether:block/crafting_table_%name%_top",
|
||||
"down": "betternether:block/crafting_table_%name%_bottom"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube_all",
|
||||
"textures": {
|
||||
"all": "betternether:block/striped_log_%name%_side"
|
||||
}
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
{
|
||||
"parent": "block/cube",
|
||||
"textures": {
|
||||
"particle": "betternether:block/striped_log_%name%_side",
|
||||
"down": "betternether:block/striped_log_%name%_top",
|
||||
"up": "betternether:block/striped_log_%name%_top",
|
||||
"north": "betternether:block/striped_log_%name%_side",
|
||||
"east": "betternether:block/striped_log_%name%_side",
|
||||
"south": "betternether:block/striped_log_%name%_side",
|
||||
"west": "betternether:block/striped_log_%name%_side"
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/%name%_bark" },
|
||||
"axis=z": { "model": "betternether:block/%name%_bark", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/%name%_bark", "x": 90, "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/%name%_bark" },
|
||||
"axis=z": { "model": "betternether:block/%name%_bark", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/%name%_bark", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
|
@ -1,28 +1,28 @@
|
|||
{
|
||||
"variants": {
|
||||
"face=floor,facing=east,powered=false": { "model": "betternether:block/%name%_button", "y": 90 },
|
||||
"face=floor,facing=west,powered=false": { "model": "betternether:block/%name%_button", "y": 270 },
|
||||
"face=floor,facing=south,powered=false": { "model": "betternether:block/%name%_button", "y": 180 },
|
||||
"face=floor,facing=north,powered=false": { "model": "betternether:block/%name%_button" },
|
||||
"face=wall,facing=east,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 90 },
|
||||
"face=wall,facing=west,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 270 },
|
||||
"face=wall,facing=south,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 180 },
|
||||
"face=wall,facing=north,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90 },
|
||||
"face=ceiling,facing=east,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 270 },
|
||||
"face=ceiling,facing=west,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 90 },
|
||||
"face=ceiling,facing=south,powered=false": { "model": "betternether:block/%name%_button", "x": 180 },
|
||||
"face=ceiling,facing=north,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 180 },
|
||||
"face=floor,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 90 },
|
||||
"face=floor,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 270 },
|
||||
"face=floor,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 180 },
|
||||
"face=floor,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed" },
|
||||
"face=wall,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 90 },
|
||||
"face=wall,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 270 },
|
||||
"face=wall,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 180 },
|
||||
"face=wall,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90 },
|
||||
"face=ceiling,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 270 },
|
||||
"face=ceiling,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 90 },
|
||||
"face=ceiling,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180 },
|
||||
"face=ceiling,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"face=floor,facing=east,powered=false": { "model": "betternether:block/%name%_button", "y": 90 },
|
||||
"face=floor,facing=west,powered=false": { "model": "betternether:block/%name%_button", "y": 270 },
|
||||
"face=floor,facing=south,powered=false": { "model": "betternether:block/%name%_button", "y": 180 },
|
||||
"face=floor,facing=north,powered=false": { "model": "betternether:block/%name%_button" },
|
||||
"face=wall,facing=east,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 90 },
|
||||
"face=wall,facing=west,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 270 },
|
||||
"face=wall,facing=south,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90, "y": 180 },
|
||||
"face=wall,facing=north,powered=false": { "model": "betternether:block/%name%_button", "uvlock": true, "x": 90 },
|
||||
"face=ceiling,facing=east,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 270 },
|
||||
"face=ceiling,facing=west,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 90 },
|
||||
"face=ceiling,facing=south,powered=false": { "model": "betternether:block/%name%_button", "x": 180 },
|
||||
"face=ceiling,facing=north,powered=false": { "model": "betternether:block/%name%_button", "x": 180, "y": 180 },
|
||||
"face=floor,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 90 },
|
||||
"face=floor,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 270 },
|
||||
"face=floor,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "y": 180 },
|
||||
"face=floor,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed" },
|
||||
"face=wall,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 90 },
|
||||
"face=wall,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 270 },
|
||||
"face=wall,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90, "y": 180 },
|
||||
"face=wall,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed", "uvlock": true, "x": 90 },
|
||||
"face=ceiling,facing=east,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 270 },
|
||||
"face=ceiling,facing=west,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 90 },
|
||||
"face=ceiling,facing=south,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180 },
|
||||
"face=ceiling,facing=north,powered=true": { "model": "betternether:block/%name%_button_pressed", "x": 180, "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,36 +1,36 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 180 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom" },
|
||||
"facing=south,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 90 },
|
||||
"facing=west,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 180 },
|
||||
"facing=north,half=lower,hinge=left,open=false": { "model": "betternether:block/%name%_door_bottom", "y": 270 },
|
||||
"facing=east,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge" },
|
||||
"facing=south,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 90 },
|
||||
"facing=west,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 180 },
|
||||
"facing=north,half=lower,hinge=right,open=false": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 270 },
|
||||
"facing=east,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 90 },
|
||||
"facing=south,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 180 },
|
||||
"facing=west,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge", "y": 270 },
|
||||
"facing=north,half=lower,hinge=left,open=true": { "model": "betternether:block/%name%_door_bottom_hinge" },
|
||||
"facing=east,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 270 },
|
||||
"facing=south,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom" },
|
||||
"facing=west,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 90 },
|
||||
"facing=north,half=lower,hinge=right,open=true": { "model": "betternether:block/%name%_door_bottom", "y": 180 },
|
||||
"facing=east,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top" },
|
||||
"facing=south,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 90 },
|
||||
"facing=west,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 180 },
|
||||
"facing=north,half=upper,hinge=left,open=false": { "model": "betternether:block/%name%_door_top", "y": 270 },
|
||||
"facing=east,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge" },
|
||||
"facing=south,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 90 },
|
||||
"facing=west,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 180 },
|
||||
"facing=north,half=upper,hinge=right,open=false": { "model": "betternether:block/%name%_door_top_hinge", "y": 270 },
|
||||
"facing=east,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 90 },
|
||||
"facing=south,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 180 },
|
||||
"facing=west,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge", "y": 270 },
|
||||
"facing=north,half=upper,hinge=left,open=true": { "model": "betternether:block/%name%_door_top_hinge" },
|
||||
"facing=east,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 270 },
|
||||
"facing=south,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top" },
|
||||
"facing=west,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 90 },
|
||||
"facing=north,half=upper,hinge=right,open=true": { "model": "betternether:block/%name%_door_top", "y": 180 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
{
|
||||
"multipart": [
|
||||
{ "apply": { "model": "betternether:block/%name%_fence_post" }},
|
||||
{ "when": { "north": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
"multipart": [
|
||||
{ "apply": { "model": "betternether:block/%name%_fence_post" }},
|
||||
{ "when": { "north": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "uvlock": true }
|
||||
},
|
||||
{ "when": { "east": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 90, "uvlock": true }
|
||||
},
|
||||
{ "when": { "south": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 180, "uvlock": true }
|
||||
},
|
||||
{ "when": { "west": true },
|
||||
"apply": { "model": "betternether:block/%name%_fence_side", "y": 270, "uvlock": true }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=south,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true },
|
||||
"facing=west,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true },
|
||||
"facing=west,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true },
|
||||
"facing=west,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true },
|
||||
"facing=west,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 270 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=south,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true },
|
||||
"facing=west,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=false,open=false": { "model": "betternether:block/%name%_fence_gate_closed", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true },
|
||||
"facing=west,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=false,open=true": { "model": "betternether:block/%name%_fence_gate_open", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true },
|
||||
"facing=west,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=true,open=false": { "model": "betternether:block/%name%_wall_gate_closed", "uvlock": true, "y": 270 },
|
||||
"facing=south,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true },
|
||||
"facing=west,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 90 },
|
||||
"facing=north,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 180 },
|
||||
"facing=east,in_wall=true,open=true": { "model": "betternether:block/%name%_wall_gate_open", "uvlock": true, "y": 270 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "betternether:block/%name%_ladder" },
|
||||
"facing=east": { "model": "betternether:block/%name%_ladder", "y": 90 },
|
||||
"facing=south": { "model": "betternether:block/%name%_ladder", "y": 180 },
|
||||
"facing=west": { "model": "betternether:block/%name%_ladder", "y": 270 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=north": { "model": "betternether:block/%name%_ladder" },
|
||||
"facing=east": { "model": "betternether:block/%name%_ladder", "y": 90 },
|
||||
"facing=south": { "model": "betternether:block/%name%_ladder", "y": 180 },
|
||||
"facing=west": { "model": "betternether:block/%name%_ladder", "y": 270 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/%name%_log" },
|
||||
"axis=z": { "model": "betternether:block/%name%_log", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/%name%_log", "x": 90, "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/%name%_log" },
|
||||
"axis=z": { "model": "betternether:block/%name%_log", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/%name%_log", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"variants":
|
||||
"variants":
|
||||
{
|
||||
"": { "model": "betternether:block/%name%_planks" }
|
||||
}
|
||||
"": { "model": "betternether:block/%name%_planks" }
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"variants": {
|
||||
"powered=false": { "model": "betternether:block/%name%_pressure_plate_up" },
|
||||
"powered=true": { "model": "betternether:block/%name%_pressure_plate_down" }
|
||||
}
|
||||
"variants": {
|
||||
"powered=false": { "model": "betternether:block/%name%_pressure_plate_up" },
|
||||
"powered=true": { "model": "betternether:block/%name%_pressure_plate_down" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{
|
||||
"variants":
|
||||
"variants":
|
||||
{
|
||||
"type=bottom": { "model": "betternether:block/%name%_half_slab" },
|
||||
"type=top": { "model": "betternether:block/%name%_half_slab", "x": 180, "uvlock": true },
|
||||
"type=double": { "model": "betternether:block/%name%_planks" }
|
||||
}
|
||||
"type=bottom": { "model": "betternether:block/%name%_half_slab" },
|
||||
"type=top": { "model": "betternether:block/%name%_half_slab", "x": 180, "uvlock": true },
|
||||
"type=double": { "model": "betternether:block/%name%_planks" }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,44 +1,44 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
"variants": {
|
||||
"facing=east,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs" },
|
||||
"facing=west,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=straight": { "model": "betternether:block/%name%_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs" },
|
||||
"facing=west,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs" },
|
||||
"facing=north,half=bottom,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs" },
|
||||
"facing=west,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=north,half=bottom,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=east,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 270, "uvlock": true },
|
||||
"facing=west,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 90, "uvlock": true },
|
||||
"facing=south,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs" },
|
||||
"facing=north,half=bottom,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "y": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=straight": { "model": "betternether:block/%name%_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_right": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=outer_left": { "model": "betternether:block/%name%_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_right": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=east,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "uvlock": true },
|
||||
"facing=west,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||
"facing=south,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||
"facing=north,half=top,shape=inner_left": { "model": "betternether:block/%name%_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor" },
|
||||
"facing=south,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 180 },
|
||||
"facing=east,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 90 },
|
||||
"facing=west,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 270 },
|
||||
"facing=north,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180 },
|
||||
"facing=south,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 180 },
|
||||
"facing=east,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 90 },
|
||||
"facing=west,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 270 },
|
||||
"facing=north,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90 },
|
||||
"facing=south,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 180 },
|
||||
"facing=east,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 90 },
|
||||
"facing=west,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 270 },
|
||||
"facing=north,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 180 },
|
||||
"facing=south,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 0 },
|
||||
"facing=east,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 270 },
|
||||
"facing=west,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"facing=north,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor" },
|
||||
"facing=south,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 180 },
|
||||
"facing=east,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 90 },
|
||||
"facing=west,half=bottom,open=false": { "model": "betternether:block/%name%_trapdoor", "y": 270 },
|
||||
"facing=north,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180 },
|
||||
"facing=south,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 180 },
|
||||
"facing=east,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 90 },
|
||||
"facing=west,half=top,open=false": { "model": "betternether:block/%name%_trapdoor", "x": 180, "y": 270 },
|
||||
"facing=north,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90 },
|
||||
"facing=south,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 180 },
|
||||
"facing=east,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 90 },
|
||||
"facing=west,half=bottom,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 90, "y": 270 },
|
||||
"facing=north,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 180 },
|
||||
"facing=south,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 0 },
|
||||
"facing=east,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 270 },
|
||||
"facing=west,half=top,open=true": { "model": "betternether:block/%name%_trapdoor", "x": 270, "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": { "model": "betternether:block/bar_stool_%name%" },
|
||||
"facing=west": { "model": "betternether:block/bar_stool_%name%", "y": 180 },
|
||||
"facing=east": { "model": "betternether:block/bar_stool_%name%" },
|
||||
"facing=west": { "model": "betternether:block/bar_stool_%name%", "y": 180 },
|
||||
"facing=south": { "model": "betternether:block/bar_stool_%name%", "y": 90 },
|
||||
"facing=north": { "model": "betternether:block/bar_stool_%name%", "y": 270 }
|
||||
}
|
||||
|
|
|
@ -1,56 +1,56 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=down,open=false": {
|
||||
"x": 180,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=down,open=true": {
|
||||
"x": 180,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=east,open=false": {
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=east,open=true": {
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=north,open=false": {
|
||||
"x": 90,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=north,open=true": {
|
||||
"x": 90,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=south,open=false": {
|
||||
"x": 90,
|
||||
"y": 180,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=south,open=true": {
|
||||
"x": 90,
|
||||
"y": 180,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=up,open=false": {
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=up,open=true": {
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=west,open=false": {
|
||||
"x": 90,
|
||||
"y": 270,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=west,open=true": {
|
||||
"x": 90,
|
||||
"y": 270,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
"variants": {
|
||||
"facing=down,open=false": {
|
||||
"x": 180,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=down,open=true": {
|
||||
"x": 180,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=east,open=false": {
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=east,open=true": {
|
||||
"x": 90,
|
||||
"y": 90,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=north,open=false": {
|
||||
"x": 90,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=north,open=true": {
|
||||
"x": 90,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=south,open=false": {
|
||||
"x": 90,
|
||||
"y": 180,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=south,open=true": {
|
||||
"x": 90,
|
||||
"y": 180,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=up,open=false": {
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=up,open=true": {
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
},
|
||||
"facing=west,open=false": {
|
||||
"x": 90,
|
||||
"y": 270,
|
||||
"model": "betternether:block/barrel_%name%"
|
||||
},
|
||||
"facing=west,open=true": {
|
||||
"x": 90,
|
||||
"y": 270,
|
||||
"model": "betternether:block/barrel_%name%_open"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east,top=false": { "model": "betternether:block/chair_%name%", "y": 90 },
|
||||
"facing=west,top=false": { "model": "betternether:block/chair_%name%", "y": 270 },
|
||||
"facing=east,top=false": { "model": "betternether:block/chair_%name%", "y": 90 },
|
||||
"facing=west,top=false": { "model": "betternether:block/chair_%name%", "y": 270 },
|
||||
"facing=south,top=false": { "model": "betternether:block/chair_%name%", "y": 180 },
|
||||
"facing=north,top=false": { "model": "betternether:block/chair_%name%" },
|
||||
"top=true": { "model": "betternether:block/chair_%name%_top" }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "betternether:block/empty_%name%"
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "betternether:block/empty_%name%"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "betternether:block/crafting_table_%name%"
|
||||
"variants": {
|
||||
"": {
|
||||
"model": "betternether:block/crafting_table_%name%"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"variants": {
|
||||
"": { "model": "betternether:block/empty_%name%" }
|
||||
}
|
||||
"variants": {
|
||||
"": { "model": "betternether:block/%name%_empty" }
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/striped_bark_%name%" },
|
||||
"axis=z": { "model": "betternether:block/striped_bark_%name%", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/striped_bark_%name%", "x": 90, "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/striped_bark_%name%" },
|
||||
"axis=z": { "model": "betternether:block/striped_bark_%name%", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/striped_bark_%name%", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/striped_log_%name%" },
|
||||
"axis=z": { "model": "betternether:block/striped_log_%name%", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/striped_log_%name%", "x": 90, "y": 90 }
|
||||
}
|
||||
"variants": {
|
||||
"axis=y": { "model": "betternether:block/striped_log_%name%" },
|
||||
"axis=z": { "model": "betternether:block/striped_log_%name%", "x": 90 },
|
||||
"axis=x": { "model": "betternether:block/striped_log_%name%", "x": 90, "y": 90 }
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=east": { "model": "betternether:block/taburet_%name%" },
|
||||
"facing=west": { "model": "betternether:block/taburet_%name%", "y": 180 },
|
||||
"facing=east": { "model": "betternether:block/taburet_%name%" },
|
||||
"facing=west": { "model": "betternether:block/taburet_%name%", "y": 180 },
|
||||
"facing=south": { "model": "betternether:block/taburet_%name%", "y": 90 },
|
||||
"facing=north": { "model": "betternether:block/taburet_%name%", "y": 270 }
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_bark"
|
||||
"parent": "betternether:block/%name%_bark"
|
||||
}
|
||||
|
|
3
utility_res/item/%name%_barrel.json
Normal file
3
utility_res/item/%name%_barrel.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/barrel_%name%"
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_button_inventory"
|
||||
"parent": "betternether:block/%name%_button_inventory"
|
||||
}
|
||||
|
|
6
utility_res/item/%name%_chest.json
Normal file
6
utility_res/item/%name%_chest.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "betternether:block/chest_item",
|
||||
"textures": {
|
||||
"texture": "betternether:entity/chest/%name%_chest"
|
||||
}
|
||||
}
|
3
utility_res/item/%name%_crafting_table.json
Normal file
3
utility_res/item/%name%_crafting_table.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/crafting_table_%name%"
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betternether:item/%name%_door"
|
||||
}
|
||||
"textures": {
|
||||
"layer0": "betternether:item/%name%_door"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_fence_inventory"
|
||||
"parent": "betternether:block/%name%_fence_inventory"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_fence_gate_closed"
|
||||
"parent": "betternether:block/%name%_fence_gate_closed"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betternether:block/%name%_ladder"
|
||||
}
|
||||
"textures": {
|
||||
"layer0": "betternether:block/%name%_ladder"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_log"
|
||||
"parent": "betternether:block/%name%_log"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_planks"
|
||||
"parent": "betternether:block/%name%_planks"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_pressure_plate_up"
|
||||
"parent": "betternether:block/%name%_pressure_plate_up"
|
||||
}
|
||||
|
|
6
utility_res/item/%name%_sign.json
Normal file
6
utility_res/item/%name%_sign.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betternether:item/sign_%name%"
|
||||
}
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_half_slab"
|
||||
"parent": "betternether:block/%name%_half_slab"
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_stairs"
|
||||
"parent": "betternether:block/%name%_stairs"
|
||||
}
|
||||
|
|
3
utility_res/item/%name%_striped_bark.json
Normal file
3
utility_res/item/%name%_striped_bark.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/striped_bark_%name%"
|
||||
}
|
3
utility_res/item/%name%_striped_log.json
Normal file
3
utility_res/item/%name%_striped_log.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/striped_log_%name%"
|
||||
}
|
3
utility_res/item/%name%_taburet.json
Normal file
3
utility_res/item/%name%_taburet.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/taburet_%name%"
|
||||
}
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
"parent": "betternether:block/%name%_trapdoor"
|
||||
"parent": "betternether:block/%name%_trapdoor"
|
||||
}
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/bar_stool_%name%"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/barrel_%name%"
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/chair_%name%",
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [ 30, 45, 0 ],
|
||||
"translation": [ 0, -1.4, 0],
|
||||
"scale":[ 0.625, 0.625, 0.625 ]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [ 0, 0, 0 ],
|
||||
"translation": [ 0, 0, 0 ],
|
||||
"scale": [ 0.5, 0.5, 0.5 ]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/chest_item",
|
||||
"textures": {
|
||||
"texture": "betternether:entity/chest/chest_%name%"
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/crafting_table_%name%"
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"parent": "item/generated",
|
||||
"textures": {
|
||||
"layer0": "betternether:item/sign_%name%"
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/striped_bark_%name%"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/striped_log_%name%"
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"parent": "betternether:block/taburet_%name%"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue