init
This commit is contained in:
commit
49bb1bda27
36
1.10.2/assets/minecraft/blockstates/acacia_door.json
Normal file
36
1.10.2/assets/minecraft/blockstates/acacia_door.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": { "model": "acacia_door_bottom" },
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": { "model": "acacia_door_bottom", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": { "model": "acacia_door_bottom", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": { "model": "acacia_door_bottom", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": { "model": "acacia_door_bottom_rh" },
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": { "model": "acacia_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": { "model": "acacia_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": { "model": "acacia_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": { "model": "acacia_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": { "model": "acacia_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": { "model": "acacia_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": { "model": "acacia_door_bottom_rh" },
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": { "model": "acacia_door_bottom", "y": 270 },
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": { "model": "acacia_door_bottom" },
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": { "model": "acacia_door_bottom", "y": 90 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": { "model": "acacia_door_bottom", "y": 180 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": { "model": "acacia_door_top" },
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": { "model": "acacia_door_top", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": { "model": "acacia_door_top", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": { "model": "acacia_door_top", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": { "model": "acacia_door_top_rh" },
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": { "model": "acacia_door_top_rh", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": { "model": "acacia_door_top_rh", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": { "model": "acacia_door_top_rh", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": { "model": "acacia_door_top_rh", "y": 90 },
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": { "model": "acacia_door_top_rh", "y": 180 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": { "model": "acacia_door_top_rh", "y": 270 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": { "model": "acacia_door_top_rh" },
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": { "model": "acacia_door_top", "y": 270 },
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": { "model": "acacia_door_top" },
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": { "model": "acacia_door_top", "y": 90 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": { "model": "acacia_door_top", "y": 180 }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "acacia_planks" }
|
||||||
|
}
|
||||||
|
}
|
17
1.10.2/assets/minecraft/blockstates/acacia_fence.json
Normal file
17
1.10.2/assets/minecraft/blockstates/acacia_fence.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "acacia_fence_post" }},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "acacia_fence_side", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "acacia_fence_side", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "acacia_fence_side", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "acacia_fence_side", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
1.10.2/assets/minecraft/blockstates/acacia_fence_gate.json
Normal file
20
1.10.2/assets/minecraft/blockstates/acacia_fence_gate.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=south,in_wall=false,open=false": { "model": "acacia_fence_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=false": { "model": "acacia_fence_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=false": { "model": "acacia_fence_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=false": { "model": "acacia_fence_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=false,open=true": { "model": "acacia_fence_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=true": { "model": "acacia_fence_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=true": { "model": "acacia_fence_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=true": { "model": "acacia_fence_gate_open", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=false": { "model": "acacia_wall_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=false": { "model": "acacia_wall_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=false": { "model": "acacia_wall_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=false": { "model": "acacia_wall_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=true": { "model": "acacia_wall_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=true": { "model": "acacia_wall_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=true": { "model": "acacia_wall_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=true": { "model": "acacia_wall_gate_open", "uvlock": true, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/acacia_leaves.json
Normal file
5
1.10.2/assets/minecraft/blockstates/acacia_leaves.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "acacia_leaves" }
|
||||||
|
}
|
||||||
|
}
|
8
1.10.2/assets/minecraft/blockstates/acacia_log.json
Normal file
8
1.10.2/assets/minecraft/blockstates/acacia_log.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=y": { "model": "acacia_log" },
|
||||||
|
"axis=z": { "model": "acacia_log", "x": 90 },
|
||||||
|
"axis=x": { "model": "acacia_log", "x": 90, "y": 90 },
|
||||||
|
"axis=none": { "model": "acacia_bark" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/acacia_planks.json
Normal file
5
1.10.2/assets/minecraft/blockstates/acacia_planks.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "acacia_planks" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/acacia_sapling.json
Normal file
6
1.10.2/assets/minecraft/blockstates/acacia_sapling.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"stage=0": { "model": "acacia_sapling" },
|
||||||
|
"stage=1": { "model": "acacia_sapling" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/acacia_slab.json
Normal file
6
1.10.2/assets/minecraft/blockstates/acacia_slab.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"half=bottom": { "model": "half_slab_acacia" },
|
||||||
|
"half=top": { "model": "upper_slab_acacia" }
|
||||||
|
}
|
||||||
|
}
|
44
1.10.2/assets/minecraft/blockstates/acacia_stairs.json
Normal file
44
1.10.2/assets/minecraft/blockstates/acacia_stairs.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "acacia_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "acacia_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "acacia_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "acacia_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "acacia_outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "acacia_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "acacia_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "acacia_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "acacia_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "acacia_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "acacia_outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "acacia_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "acacia_inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "acacia_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "acacia_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "acacia_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "acacia_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "acacia_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "acacia_inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "acacia_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "acacia_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "acacia_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "acacia_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "acacia_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "acacia_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "acacia_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "acacia_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "acacia_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "acacia_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "acacia_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "acacia_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "acacia_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "acacia_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "acacia_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "acacia_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "acacia_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "acacia_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "acacia_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "acacia_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "acacia_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/activator_rail.json
Normal file
16
1.10.2/assets/minecraft/blockstates/activator_rail.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false,shape=north_south": { "model": "activator_rail_flat" },
|
||||||
|
"powered=false,shape=east_west": { "model": "activator_rail_flat", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_east": { "model": "activator_rail_raised_ne", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_west": { "model": "activator_rail_raised_sw", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_north": { "model": "activator_rail_raised_ne" },
|
||||||
|
"powered=false,shape=ascending_south": { "model": "activator_rail_raised_sw" },
|
||||||
|
"powered=true,shape=north_south": { "model": "activator_rail_active_flat" },
|
||||||
|
"powered=true,shape=east_west": { "model": "activator_rail_active_flat", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_east": { "model": "activator_rail_active_raised_ne", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_west": { "model": "activator_rail_active_raised_sw", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_north": { "model": "activator_rail_active_raised_ne" },
|
||||||
|
"powered=true,shape=ascending_south": { "model": "activator_rail_active_raised_sw" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/allium.json
Normal file
5
1.10.2/assets/minecraft/blockstates/allium.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "allium" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/andesite.json
Normal file
5
1.10.2/assets/minecraft/blockstates/andesite.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "andesite" }
|
||||||
|
}
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/anvil.json
Normal file
16
1.10.2/assets/minecraft/blockstates/anvil.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"damage=0,facing=south": { "model": "anvil_undamaged" },
|
||||||
|
"damage=0,facing=west": { "model": "anvil_undamaged", "y": 90 },
|
||||||
|
"damage=0,facing=north": { "model": "anvil_undamaged", "y": 180 },
|
||||||
|
"damage=0,facing=east": { "model": "anvil_undamaged", "y": 270 },
|
||||||
|
"damage=1,facing=south": { "model": "anvil_slightly_damaged" },
|
||||||
|
"damage=1,facing=west": { "model": "anvil_slightly_damaged", "y": 90 },
|
||||||
|
"damage=1,facing=north": { "model": "anvil_slightly_damaged", "y": 180 },
|
||||||
|
"damage=1,facing=east": { "model": "anvil_slightly_damaged", "y": 270 },
|
||||||
|
"damage=2,facing=south": { "model": "anvil_very_damaged" },
|
||||||
|
"damage=2,facing=west": { "model": "anvil_very_damaged", "y": 90 },
|
||||||
|
"damage=2,facing=north": { "model": "anvil_very_damaged", "y": 180 },
|
||||||
|
"damage=2,facing=east": { "model": "anvil_very_damaged", "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/beacon.json
Normal file
5
1.10.2/assets/minecraft/blockstates/beacon.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "beacon" }
|
||||||
|
}
|
||||||
|
}
|
12
1.10.2/assets/minecraft/blockstates/bed.json
Normal file
12
1.10.2/assets/minecraft/blockstates/bed.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=north,part=foot": { "model": "bed_foot", "y": 180 },
|
||||||
|
"facing=east,part=foot": { "model": "bed_foot", "y": 270 },
|
||||||
|
"facing=south,part=foot": { "model": "bed_foot" },
|
||||||
|
"facing=west,part=foot": { "model": "bed_foot", "y": 90 },
|
||||||
|
"facing=north,part=head": { "model": "bed_head", "y": 180 },
|
||||||
|
"facing=east,part=head": { "model": "bed_head", "y": 270 },
|
||||||
|
"facing=south,part=head": { "model": "bed_head" },
|
||||||
|
"facing=west,part=head": { "model": "bed_head", "y": 90 }
|
||||||
|
}
|
||||||
|
}
|
10
1.10.2/assets/minecraft/blockstates/bedrock.json
Normal file
10
1.10.2/assets/minecraft/blockstates/bedrock.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": [
|
||||||
|
{ "model": "bedrock" },
|
||||||
|
{ "model": "bedrock_mirrored" },
|
||||||
|
{ "model": "bedrock", "y": 180 },
|
||||||
|
{ "model": "bedrock_mirrored", "y": 180 }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
8
1.10.2/assets/minecraft/blockstates/beetroots.json
Normal file
8
1.10.2/assets/minecraft/blockstates/beetroots.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"age=0": { "model": "beetroots_stage0" },
|
||||||
|
"age=1": { "model": "beetroots_stage1" },
|
||||||
|
"age=2": { "model": "beetroots_stage2" },
|
||||||
|
"age=3": { "model": "beetroots_stage3" }
|
||||||
|
}
|
||||||
|
}
|
36
1.10.2/assets/minecraft/blockstates/birch_door.json
Normal file
36
1.10.2/assets/minecraft/blockstates/birch_door.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": { "model": "birch_door_bottom" },
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": { "model": "birch_door_bottom", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": { "model": "birch_door_bottom", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": { "model": "birch_door_bottom", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": { "model": "birch_door_bottom_rh" },
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": { "model": "birch_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": { "model": "birch_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": { "model": "birch_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": { "model": "birch_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": { "model": "birch_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": { "model": "birch_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": { "model": "birch_door_bottom_rh" },
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": { "model": "birch_door_bottom", "y": 270 },
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": { "model": "birch_door_bottom" },
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": { "model": "birch_door_bottom", "y": 90 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": { "model": "birch_door_bottom", "y": 180 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": { "model": "birch_door_top" },
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": { "model": "birch_door_top", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": { "model": "birch_door_top", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": { "model": "birch_door_top", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": { "model": "birch_door_top_rh" },
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": { "model": "birch_door_top_rh", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": { "model": "birch_door_top_rh", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": { "model": "birch_door_top_rh", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": { "model": "birch_door_top_rh", "y": 90 },
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": { "model": "birch_door_top_rh", "y": 180 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": { "model": "birch_door_top_rh", "y": 270 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": { "model": "birch_door_top_rh" },
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": { "model": "birch_door_top", "y": 270 },
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": { "model": "birch_door_top" },
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": { "model": "birch_door_top", "y": 90 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": { "model": "birch_door_top", "y": 180 }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "birch_planks" }
|
||||||
|
}
|
||||||
|
}
|
17
1.10.2/assets/minecraft/blockstates/birch_fence.json
Normal file
17
1.10.2/assets/minecraft/blockstates/birch_fence.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "birch_fence_post" }},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "birch_fence_side", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "birch_fence_side", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "birch_fence_side", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "birch_fence_side", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
1.10.2/assets/minecraft/blockstates/birch_fence_gate.json
Normal file
20
1.10.2/assets/minecraft/blockstates/birch_fence_gate.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=south,in_wall=false,open=false": { "model": "birch_fence_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=false": { "model": "birch_fence_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=false": { "model": "birch_fence_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=false": { "model": "birch_fence_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=false,open=true": { "model": "birch_fence_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=true": { "model": "birch_fence_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=true": { "model": "birch_fence_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=true": { "model": "birch_fence_gate_open", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=false": { "model": "birch_wall_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=false": { "model": "birch_wall_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=false": { "model": "birch_wall_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=false": { "model": "birch_wall_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=true": { "model": "birch_wall_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=true": { "model": "birch_wall_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=true": { "model": "birch_wall_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=true": { "model": "birch_wall_gate_open", "uvlock": true, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/birch_leaves.json
Normal file
5
1.10.2/assets/minecraft/blockstates/birch_leaves.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "birch_leaves" }
|
||||||
|
}
|
||||||
|
}
|
8
1.10.2/assets/minecraft/blockstates/birch_log.json
Normal file
8
1.10.2/assets/minecraft/blockstates/birch_log.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=y": { "model": "birch_log" },
|
||||||
|
"axis=z": { "model": "birch_log", "x": 90 },
|
||||||
|
"axis=x": { "model": "birch_log", "x": 90, "y": 90 },
|
||||||
|
"axis=none": { "model": "birch_bark" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/birch_planks.json
Normal file
5
1.10.2/assets/minecraft/blockstates/birch_planks.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "birch_planks" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/birch_sapling.json
Normal file
6
1.10.2/assets/minecraft/blockstates/birch_sapling.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"stage=0": { "model": "birch_sapling" },
|
||||||
|
"stage=1": { "model": "birch_sapling" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/birch_slab.json
Normal file
6
1.10.2/assets/minecraft/blockstates/birch_slab.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"half=bottom": { "model": "half_slab_birch" },
|
||||||
|
"half=top": { "model": "upper_slab_birch" }
|
||||||
|
}
|
||||||
|
}
|
44
1.10.2/assets/minecraft/blockstates/birch_stairs.json
Normal file
44
1.10.2/assets/minecraft/blockstates/birch_stairs.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "birch_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "birch_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "birch_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "birch_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "birch_outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "birch_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "birch_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "birch_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "birch_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "birch_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "birch_outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "birch_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "birch_inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "birch_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "birch_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "birch_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "birch_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "birch_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "birch_inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "birch_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "birch_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "birch_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "birch_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "birch_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "birch_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "birch_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "birch_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "birch_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "birch_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "birch_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "birch_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "birch_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "birch_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "birch_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "birch_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "birch_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "birch_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "birch_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "birch_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "birch_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/black_carpet.json
Normal file
5
1.10.2/assets/minecraft/blockstates/black_carpet.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "carpet_black" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "glass_black" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "black_stained_glass_pane_post" }},
|
||||||
|
{ "when": { "north": true },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_side" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": true },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_side", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "south": true },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_side_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "west": true },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_side_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "north": false },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_noside" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": false },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_noside_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "south": false },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_noside_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "west": false },
|
||||||
|
"apply": { "model": "black_stained_glass_pane_noside", "y": 270 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "hardened_clay_black" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/black_wool.json
Normal file
5
1.10.2/assets/minecraft/blockstates/black_wool.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "black_wool" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/blue_carpet.json
Normal file
5
1.10.2/assets/minecraft/blockstates/blue_carpet.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "carpet_blue" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/blue_orchid.json
Normal file
5
1.10.2/assets/minecraft/blockstates/blue_orchid.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "orchid" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "glass_blue" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "blue_stained_glass_pane_post" }},
|
||||||
|
{ "when": { "north": true },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_side" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": true },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_side", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "south": true },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_side_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "west": true },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_side_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "north": false },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_noside" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": false },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_noside_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "south": false },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_noside_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "west": false },
|
||||||
|
"apply": { "model": "blue_stained_glass_pane_noside", "y": 270 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "hardened_clay_blue" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/blue_wool.json
Normal file
5
1.10.2/assets/minecraft/blockstates/blue_wool.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "blue_wool" }
|
||||||
|
}
|
||||||
|
}
|
7
1.10.2/assets/minecraft/blockstates/bone_block.json
Normal file
7
1.10.2/assets/minecraft/blockstates/bone_block.json
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=y": { "model": "bone_block" },
|
||||||
|
"axis=z": { "model": "bone_block", "x": 90 },
|
||||||
|
"axis=x": { "model": "bone_block", "x": 90, "y": 90 }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/bookshelf.json
Normal file
5
1.10.2/assets/minecraft/blockstates/bookshelf.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "bookshelf" }
|
||||||
|
}
|
||||||
|
}
|
23
1.10.2/assets/minecraft/blockstates/brewing_stand.json
Normal file
23
1.10.2/assets/minecraft/blockstates/brewing_stand.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "brewing_stand" }},
|
||||||
|
{ "when": { "has_bottle_0": "true" },
|
||||||
|
"apply": { "model": "brewing_stand_bottle0" }
|
||||||
|
},
|
||||||
|
{ "when": { "has_bottle_1": "true" },
|
||||||
|
"apply": { "model": "brewing_stand_bottle1" }
|
||||||
|
},
|
||||||
|
{ "when": { "has_bottle_2": "true" },
|
||||||
|
"apply": { "model": "brewing_stand_bottle2" }
|
||||||
|
},
|
||||||
|
{ "when": { "has_bottle_0": "false" },
|
||||||
|
"apply": { "model": "brewing_stand_empty0" }
|
||||||
|
},
|
||||||
|
{ "when": { "has_bottle_1": "false" },
|
||||||
|
"apply": { "model": "brewing_stand_empty1" }
|
||||||
|
},
|
||||||
|
{ "when": { "has_bottle_2": "false" },
|
||||||
|
"apply": { "model": "brewing_stand_empty2" }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/brick_block.json
Normal file
5
1.10.2/assets/minecraft/blockstates/brick_block.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "brick" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "brick" },
|
||||||
|
"all": { "model": "brick" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/brick_slab.json
Normal file
6
1.10.2/assets/minecraft/blockstates/brick_slab.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"half=bottom": { "model": "half_slab_brick" },
|
||||||
|
"half=top": { "model": "upper_slab_brick" }
|
||||||
|
}
|
||||||
|
}
|
44
1.10.2/assets/minecraft/blockstates/brick_stairs.json
Normal file
44
1.10.2/assets/minecraft/blockstates/brick_stairs.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "brick_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "brick_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "brick_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "brick_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "brick_outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "brick_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "brick_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "brick_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "brick_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "brick_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "brick_outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "brick_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "brick_inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "brick_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "brick_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "brick_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "brick_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "brick_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "brick_inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "brick_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "brick_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "brick_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "brick_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "brick_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "brick_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "brick_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "brick_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "brick_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "brick_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "brick_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "brick_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "brick_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "brick_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "brick_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "brick_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "brick_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "brick_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "brick_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "brick_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "brick_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/brown_carpet.json
Normal file
5
1.10.2/assets/minecraft/blockstates/brown_carpet.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "carpet_brown" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/brown_mushroom.json
Normal file
5
1.10.2/assets/minecraft/blockstates/brown_mushroom.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "brown_mushroom" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"variant=north_west": { "model": "brown_mushroom_block_nw" },
|
||||||
|
"variant=north": { "model": "brown_mushroom_block_n" },
|
||||||
|
"variant=north_east": { "model": "brown_mushroom_block_ne" },
|
||||||
|
"variant=west": { "model": "brown_mushroom_block_w" },
|
||||||
|
"variant=center": { "model": "brown_mushroom_block_c" },
|
||||||
|
"variant=east": { "model": "brown_mushroom_block_e" },
|
||||||
|
"variant=south_west": { "model": "brown_mushroom_block_sw" },
|
||||||
|
"variant=south": { "model": "brown_mushroom_block_s" },
|
||||||
|
"variant=south_east": { "model": "brown_mushroom_block_se" },
|
||||||
|
"variant=stem": { "model": "brown_mushroom_block_stem" },
|
||||||
|
"variant=all_stem": { "model": "brown_mushroom_block_stem_all" },
|
||||||
|
"variant=all_outside": { "model": "brown_mushroom_block_cap_all" },
|
||||||
|
"variant=all_inside": { "model": "brown_mushroom_block_inside_all" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "glass_brown" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "brown_stained_glass_pane_post" }},
|
||||||
|
{ "when": { "north": true },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_side" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": true },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_side", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "south": true },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_side_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "west": true },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_side_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "north": false },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_noside" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": false },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_noside_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "south": false },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_noside_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "west": false },
|
||||||
|
"apply": { "model": "brown_stained_glass_pane_noside", "y": 270 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "hardened_clay_brown" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/brown_wool.json
Normal file
5
1.10.2/assets/minecraft/blockstates/brown_wool.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "brown_wool" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/cactus.json
Normal file
5
1.10.2/assets/minecraft/blockstates/cactus.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "cactus" }
|
||||||
|
}
|
||||||
|
}
|
11
1.10.2/assets/minecraft/blockstates/cake.json
Normal file
11
1.10.2/assets/minecraft/blockstates/cake.json
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"bites=0": { "model": "cake_uneaten" },
|
||||||
|
"bites=1": { "model": "cake_slice1" },
|
||||||
|
"bites=2": { "model": "cake_slice2" },
|
||||||
|
"bites=3": { "model": "cake_slice3" },
|
||||||
|
"bites=4": { "model": "cake_slice4" },
|
||||||
|
"bites=5": { "model": "cake_slice5" },
|
||||||
|
"bites=6": { "model": "cake_slice6" }
|
||||||
|
}
|
||||||
|
}
|
12
1.10.2/assets/minecraft/blockstates/carrots.json
Normal file
12
1.10.2/assets/minecraft/blockstates/carrots.json
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"age=0": { "model": "carrots_stage0" },
|
||||||
|
"age=1": { "model": "carrots_stage0" },
|
||||||
|
"age=2": { "model": "carrots_stage1" },
|
||||||
|
"age=3": { "model": "carrots_stage1" },
|
||||||
|
"age=4": { "model": "carrots_stage2" },
|
||||||
|
"age=5": { "model": "carrots_stage2" },
|
||||||
|
"age=6": { "model": "carrots_stage2" },
|
||||||
|
"age=7": { "model": "carrots_stage3" }
|
||||||
|
}
|
||||||
|
}
|
8
1.10.2/assets/minecraft/blockstates/cauldron.json
Normal file
8
1.10.2/assets/minecraft/blockstates/cauldron.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"level=0": { "model": "cauldron_empty" },
|
||||||
|
"level=1": { "model": "cauldron_level1" },
|
||||||
|
"level=2": { "model": "cauldron_level2" },
|
||||||
|
"level=3": { "model": "cauldron_level3" }
|
||||||
|
}
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/chain_command_block.json
Normal file
16
1.10.2/assets/minecraft/blockstates/chain_command_block.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"conditional=false,facing=down": { "model": "chain_command_block", "x": 90 },
|
||||||
|
"conditional=false,facing=up": { "model": "chain_command_block", "x": 270 },
|
||||||
|
"conditional=false,facing=north": { "model": "chain_command_block" },
|
||||||
|
"conditional=false,facing=south": { "model": "chain_command_block", "y": 180 },
|
||||||
|
"conditional=false,facing=west": { "model": "chain_command_block", "y": 270 },
|
||||||
|
"conditional=false,facing=east": { "model": "chain_command_block", "y": 90 },
|
||||||
|
"conditional=true,facing=down": { "model": "chain_command_block_conditional", "x": 90 },
|
||||||
|
"conditional=true,facing=up": { "model": "chain_command_block_conditional", "x": 270 },
|
||||||
|
"conditional=true,facing=north": { "model": "chain_command_block_conditional" },
|
||||||
|
"conditional=true,facing=south": { "model": "chain_command_block_conditional", "y": 180 },
|
||||||
|
"conditional=true,facing=west": { "model": "chain_command_block_conditional", "y": 270 },
|
||||||
|
"conditional=true,facing=east": { "model": "chain_command_block_conditional", "y": 90 }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "stonebrick_chiseled" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "quartz_chiseled" }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "red_sandstone_chiseled" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "sandstone_chiseled" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "stonebrick_chiseled" }
|
||||||
|
}
|
||||||
|
}
|
10
1.10.2/assets/minecraft/blockstates/chorus_flower.json
Normal file
10
1.10.2/assets/minecraft/blockstates/chorus_flower.json
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"age=0": { "model": "chorus_flower" },
|
||||||
|
"age=1": { "model": "chorus_flower" },
|
||||||
|
"age=2": { "model": "chorus_flower" },
|
||||||
|
"age=3": { "model": "chorus_flower" },
|
||||||
|
"age=4": { "model": "chorus_flower" },
|
||||||
|
"age=5": { "model": "chorus_flower_dead" }
|
||||||
|
}
|
||||||
|
}
|
70
1.10.2/assets/minecraft/blockstates/chorus_plant.json
Normal file
70
1.10.2/assets/minecraft/blockstates/chorus_plant.json
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "north": true },
|
||||||
|
"apply": { "model": "chorus_plant_side" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": true },
|
||||||
|
"apply": { "model": "chorus_plant_side", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": true },
|
||||||
|
"apply": { "model": "chorus_plant_side", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": true },
|
||||||
|
"apply": { "model": "chorus_plant_side", "y": 270, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "up": true },
|
||||||
|
"apply": { "model": "chorus_plant_side", "x": 270, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "down": true },
|
||||||
|
"apply": { "model": "chorus_plant_side", "x": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "north": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2 },
|
||||||
|
{ "model": "chorus_plant_noside1" },
|
||||||
|
{ "model": "chorus_plant_noside2" },
|
||||||
|
{ "model": "chorus_plant_noside3" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ "when": { "east": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside1", "y": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside2", "y": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside3", "y": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2, "y": 90, "uvlock": true }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ "when": { "south": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside2", "y": 180, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside3", "y": 180, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2, "y": 180, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside1", "y": 180, "uvlock": true }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ "when": { "west": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside3", "y": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2, "y": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside1", "y": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside2", "y": 270, "uvlock": true }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ "when": { "up": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2, "x": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside3", "x": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside1", "x": 270, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside2", "x": 270, "uvlock": true }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{ "when": { "down": false },
|
||||||
|
"apply": [
|
||||||
|
{ "model": "chorus_plant_noside3", "x": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside2", "x": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside1", "x": 90, "uvlock": true },
|
||||||
|
{ "model": "chorus_plant_noside", "weight": 2, "x": 90, "uvlock": true }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/clay.json
Normal file
5
1.10.2/assets/minecraft/blockstates/clay.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "clay" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/coal_block.json
Normal file
5
1.10.2/assets/minecraft/blockstates/coal_block.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "coal_block" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/coal_ore.json
Normal file
5
1.10.2/assets/minecraft/blockstates/coal_ore.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "coal_ore" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/coarse_dirt.json
Normal file
5
1.10.2/assets/minecraft/blockstates/coarse_dirt.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "coarse_dirt" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/cobblestone.json
Normal file
5
1.10.2/assets/minecraft/blockstates/cobblestone.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "cobblestone" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "cobblestone" },
|
||||||
|
"all": { "model": "cobblestone" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "cobblestone" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"half=bottom": { "model": "half_slab_cobblestone" },
|
||||||
|
"half=top": { "model": "upper_slab_cobblestone" }
|
||||||
|
}
|
||||||
|
}
|
19
1.10.2/assets/minecraft/blockstates/cobblestone_wall.json
Normal file
19
1.10.2/assets/minecraft/blockstates/cobblestone_wall.json
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "when": { "up": "true" },
|
||||||
|
"apply": { "model": "cobblestone_wall_post" }
|
||||||
|
},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "cobblestone_wall_side", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "cobblestone_wall_side", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "cobblestone_wall_side", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "cobblestone_wall_side", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/cocoa.json
Normal file
16
1.10.2/assets/minecraft/blockstates/cocoa.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"age=0,facing=south": { "model": "cocoa_age0_s" },
|
||||||
|
"age=0,facing=west": { "model": "cocoa_age0_s", "y": 90 },
|
||||||
|
"age=0,facing=north": { "model": "cocoa_age0_s", "y": 180 },
|
||||||
|
"age=0,facing=east": { "model": "cocoa_age0_s", "y": 270 },
|
||||||
|
"age=1,facing=south": { "model": "cocoa_age1_s" },
|
||||||
|
"age=1,facing=west": { "model": "cocoa_age1_s", "y": 90 },
|
||||||
|
"age=1,facing=north": { "model": "cocoa_age1_s", "y": 180 },
|
||||||
|
"age=1,facing=east": { "model": "cocoa_age1_s", "y": 270 },
|
||||||
|
"age=2,facing=south": { "model": "cocoa_age2_s" },
|
||||||
|
"age=2,facing=west": { "model": "cocoa_age2_s", "y": 90 },
|
||||||
|
"age=2,facing=north": { "model": "cocoa_age2_s", "y": 180 },
|
||||||
|
"age=2,facing=east": { "model": "cocoa_age2_s", "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/command_block.json
Normal file
16
1.10.2/assets/minecraft/blockstates/command_block.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"conditional=false,facing=down": { "model": "command_block", "x": 90 },
|
||||||
|
"conditional=false,facing=up": { "model": "command_block", "x": 270 },
|
||||||
|
"conditional=false,facing=north": { "model": "command_block" },
|
||||||
|
"conditional=false,facing=south": { "model": "command_block", "y": 180 },
|
||||||
|
"conditional=false,facing=west": { "model": "command_block", "y": 270 },
|
||||||
|
"conditional=false,facing=east": { "model": "command_block", "y": 90 },
|
||||||
|
"conditional=true,facing=down": { "model": "command_block_conditional", "x": 90 },
|
||||||
|
"conditional=true,facing=up": { "model": "command_block_conditional", "x": 270 },
|
||||||
|
"conditional=true,facing=north": { "model": "command_block_conditional" },
|
||||||
|
"conditional=true,facing=south": { "model": "command_block_conditional", "y": 180 },
|
||||||
|
"conditional=true,facing=west": { "model": "command_block_conditional", "y": 270 },
|
||||||
|
"conditional=true,facing=east": { "model": "command_block_conditional", "y": 90 }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "stonebrick_cracked" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "stonebrick_cracked" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/crafting_table.json
Normal file
5
1.10.2/assets/minecraft/blockstates/crafting_table.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "crafting_table" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/cyan_carpet.json
Normal file
5
1.10.2/assets/minecraft/blockstates/cyan_carpet.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "carpet_cyan" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "glass_cyan" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "cyan_stained_glass_pane_post" }},
|
||||||
|
{ "when": { "north": true },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_side" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": true },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_side", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "south": true },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_side_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "west": true },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_side_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "north": false },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_noside" }
|
||||||
|
},
|
||||||
|
{ "when": { "east": false },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_noside_alt" }
|
||||||
|
},
|
||||||
|
{ "when": { "south": false },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_noside_alt", "y": 90 }
|
||||||
|
},
|
||||||
|
{ "when": { "west": false },
|
||||||
|
"apply": { "model": "cyan_stained_glass_pane_noside", "y": 270 }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "hardened_clay_cyan" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/cyan_wool.json
Normal file
5
1.10.2/assets/minecraft/blockstates/cyan_wool.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "cyan_wool" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/dandelion.json
Normal file
5
1.10.2/assets/minecraft/blockstates/dandelion.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "dandelion" }
|
||||||
|
}
|
||||||
|
}
|
36
1.10.2/assets/minecraft/blockstates/dark_oak_door.json
Normal file
36
1.10.2/assets/minecraft/blockstates/dark_oak_door.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=lower,hinge=left,open=false": { "model": "dark_oak_door_bottom" },
|
||||||
|
"facing=south,half=lower,hinge=left,open=false": { "model": "dark_oak_door_bottom", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=false": { "model": "dark_oak_door_bottom", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=false": { "model": "dark_oak_door_bottom", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=right,open=false": { "model": "dark_oak_door_bottom_rh" },
|
||||||
|
"facing=south,half=lower,hinge=right,open=false": { "model": "dark_oak_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=west,half=lower,hinge=right,open=false": { "model": "dark_oak_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=false": { "model": "dark_oak_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=east,half=lower,hinge=left,open=true": { "model": "dark_oak_door_bottom_rh", "y": 90 },
|
||||||
|
"facing=south,half=lower,hinge=left,open=true": { "model": "dark_oak_door_bottom_rh", "y": 180 },
|
||||||
|
"facing=west,half=lower,hinge=left,open=true": { "model": "dark_oak_door_bottom_rh", "y": 270 },
|
||||||
|
"facing=north,half=lower,hinge=left,open=true": { "model": "dark_oak_door_bottom_rh" },
|
||||||
|
"facing=east,half=lower,hinge=right,open=true": { "model": "dark_oak_door_bottom", "y": 270 },
|
||||||
|
"facing=south,half=lower,hinge=right,open=true": { "model": "dark_oak_door_bottom" },
|
||||||
|
"facing=west,half=lower,hinge=right,open=true": { "model": "dark_oak_door_bottom", "y": 90 },
|
||||||
|
"facing=north,half=lower,hinge=right,open=true": { "model": "dark_oak_door_bottom", "y": 180 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=false": { "model": "dark_oak_door_top" },
|
||||||
|
"facing=south,half=upper,hinge=left,open=false": { "model": "dark_oak_door_top", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=false": { "model": "dark_oak_door_top", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=false": { "model": "dark_oak_door_top", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=right,open=false": { "model": "dark_oak_door_top_rh" },
|
||||||
|
"facing=south,half=upper,hinge=right,open=false": { "model": "dark_oak_door_top_rh", "y": 90 },
|
||||||
|
"facing=west,half=upper,hinge=right,open=false": { "model": "dark_oak_door_top_rh", "y": 180 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=false": { "model": "dark_oak_door_top_rh", "y": 270 },
|
||||||
|
"facing=east,half=upper,hinge=left,open=true": { "model": "dark_oak_door_top_rh", "y": 90 },
|
||||||
|
"facing=south,half=upper,hinge=left,open=true": { "model": "dark_oak_door_top_rh", "y": 180 },
|
||||||
|
"facing=west,half=upper,hinge=left,open=true": { "model": "dark_oak_door_top_rh", "y": 270 },
|
||||||
|
"facing=north,half=upper,hinge=left,open=true": { "model": "dark_oak_door_top_rh" },
|
||||||
|
"facing=east,half=upper,hinge=right,open=true": { "model": "dark_oak_door_top", "y": 270 },
|
||||||
|
"facing=south,half=upper,hinge=right,open=true": { "model": "dark_oak_door_top" },
|
||||||
|
"facing=west,half=upper,hinge=right,open=true": { "model": "dark_oak_door_top", "y": 90 },
|
||||||
|
"facing=north,half=upper,hinge=right,open=true": { "model": "dark_oak_door_top", "y": 180 }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "dark_oak_planks" }
|
||||||
|
}
|
||||||
|
}
|
17
1.10.2/assets/minecraft/blockstates/dark_oak_fence.json
Normal file
17
1.10.2/assets/minecraft/blockstates/dark_oak_fence.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"multipart": [
|
||||||
|
{ "apply": { "model": "dark_oak_fence_post" }},
|
||||||
|
{ "when": { "north": "true" },
|
||||||
|
"apply": { "model": "dark_oak_fence_side", "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "east": "true" },
|
||||||
|
"apply": { "model": "dark_oak_fence_side", "y": 90, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "south": "true" },
|
||||||
|
"apply": { "model": "dark_oak_fence_side", "y": 180, "uvlock": true }
|
||||||
|
},
|
||||||
|
{ "when": { "west": "true" },
|
||||||
|
"apply": { "model": "dark_oak_fence_side", "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
20
1.10.2/assets/minecraft/blockstates/dark_oak_fence_gate.json
Normal file
20
1.10.2/assets/minecraft/blockstates/dark_oak_fence_gate.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=south,in_wall=false,open=false": { "model": "dark_oak_fence_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=false": { "model": "dark_oak_fence_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=false": { "model": "dark_oak_fence_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=false": { "model": "dark_oak_fence_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=false,open=true": { "model": "dark_oak_fence_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=false,open=true": { "model": "dark_oak_fence_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=false,open=true": { "model": "dark_oak_fence_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=false,open=true": { "model": "dark_oak_fence_gate_open", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=false": { "model": "dark_oak_wall_gate_closed", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=false": { "model": "dark_oak_wall_gate_closed", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=false": { "model": "dark_oak_wall_gate_closed", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=false": { "model": "dark_oak_wall_gate_closed", "uvlock": true, "y": 270 },
|
||||||
|
"facing=south,in_wall=true,open=true": { "model": "dark_oak_wall_gate_open", "uvlock": true },
|
||||||
|
"facing=west,in_wall=true,open=true": { "model": "dark_oak_wall_gate_open", "uvlock": true, "y": 90 },
|
||||||
|
"facing=north,in_wall=true,open=true": { "model": "dark_oak_wall_gate_open", "uvlock": true, "y": 180 },
|
||||||
|
"facing=east,in_wall=true,open=true": { "model": "dark_oak_wall_gate_open", "uvlock": true, "y": 270 }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/dark_oak_leaves.json
Normal file
5
1.10.2/assets/minecraft/blockstates/dark_oak_leaves.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "dark_oak_leaves" }
|
||||||
|
}
|
||||||
|
}
|
8
1.10.2/assets/minecraft/blockstates/dark_oak_log.json
Normal file
8
1.10.2/assets/minecraft/blockstates/dark_oak_log.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"axis=y": { "model": "dark_oak_log" },
|
||||||
|
"axis=z": { "model": "dark_oak_log", "x": 90 },
|
||||||
|
"axis=x": { "model": "dark_oak_log", "x": 90, "y": 90 },
|
||||||
|
"axis=none": { "model": "dark_oak_bark" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/dark_oak_planks.json
Normal file
5
1.10.2/assets/minecraft/blockstates/dark_oak_planks.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "dark_oak_planks" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"stage=0": { "model": "dark_oak_sapling" },
|
||||||
|
"stage=1": { "model": "dark_oak_sapling" }
|
||||||
|
}
|
||||||
|
}
|
6
1.10.2/assets/minecraft/blockstates/dark_oak_slab.json
Normal file
6
1.10.2/assets/minecraft/blockstates/dark_oak_slab.json
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"half=bottom": { "model": "half_slab_dark_oak" },
|
||||||
|
"half=top": { "model": "upper_slab_dark_oak" }
|
||||||
|
}
|
||||||
|
}
|
44
1.10.2/assets/minecraft/blockstates/dark_oak_stairs.json
Normal file
44
1.10.2/assets/minecraft/blockstates/dark_oak_stairs.json
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"facing=east,half=bottom,shape=straight": { "model": "dark_oak_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=straight": { "model": "dark_oak_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=straight": { "model": "dark_oak_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=straight": { "model": "dark_oak_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_right": { "model": "dark_oak_outer_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=outer_right": { "model": "dark_oak_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_right": { "model": "dark_oak_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=outer_right": { "model": "dark_oak_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=outer_left": { "model": "dark_oak_outer_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=outer_left": { "model": "dark_oak_outer_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=outer_left": { "model": "dark_oak_outer_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=outer_left": { "model": "dark_oak_outer_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_right": { "model": "dark_oak_inner_stairs" },
|
||||||
|
"facing=west,half=bottom,shape=inner_right": { "model": "dark_oak_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_right": { "model": "dark_oak_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=bottom,shape=inner_right": { "model": "dark_oak_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=bottom,shape=inner_left": { "model": "dark_oak_inner_stairs", "y": 270, "uvlock": true },
|
||||||
|
"facing=west,half=bottom,shape=inner_left": { "model": "dark_oak_inner_stairs", "y": 90, "uvlock": true },
|
||||||
|
"facing=south,half=bottom,shape=inner_left": { "model": "dark_oak_inner_stairs" },
|
||||||
|
"facing=north,half=bottom,shape=inner_left": { "model": "dark_oak_inner_stairs", "y": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=straight": { "model": "dark_oak_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=straight": { "model": "dark_oak_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=straight": { "model": "dark_oak_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=straight": { "model": "dark_oak_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_right": { "model": "dark_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_right": { "model": "dark_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_right": { "model": "dark_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_right": { "model": "dark_oak_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=outer_left": { "model": "dark_oak_outer_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=outer_left": { "model": "dark_oak_outer_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=outer_left": { "model": "dark_oak_outer_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=outer_left": { "model": "dark_oak_outer_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_right": { "model": "dark_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_right": { "model": "dark_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_right": { "model": "dark_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_right": { "model": "dark_oak_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=east,half=top,shape=inner_left": { "model": "dark_oak_inner_stairs", "x": 180, "uvlock": true },
|
||||||
|
"facing=west,half=top,shape=inner_left": { "model": "dark_oak_inner_stairs", "x": 180, "y": 180, "uvlock": true },
|
||||||
|
"facing=south,half=top,shape=inner_left": { "model": "dark_oak_inner_stairs", "x": 180, "y": 90, "uvlock": true },
|
||||||
|
"facing=north,half=top,shape=inner_left": { "model": "dark_oak_inner_stairs", "x": 180, "y": 270, "uvlock": true }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/dark_prismarine.json
Normal file
5
1.10.2/assets/minecraft/blockstates/dark_prismarine.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "prismarine_dark" }
|
||||||
|
}
|
||||||
|
}
|
20
1.10.2/assets/minecraft/blockstates/daylight_detector.json
Normal file
20
1.10.2/assets/minecraft/blockstates/daylight_detector.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"power=0": { "model": "daylight_detector" },
|
||||||
|
"power=1": { "model": "daylight_detector" },
|
||||||
|
"power=2": { "model": "daylight_detector" },
|
||||||
|
"power=3": { "model": "daylight_detector" },
|
||||||
|
"power=4": { "model": "daylight_detector" },
|
||||||
|
"power=5": { "model": "daylight_detector" },
|
||||||
|
"power=6": { "model": "daylight_detector" },
|
||||||
|
"power=7": { "model": "daylight_detector" },
|
||||||
|
"power=8": { "model": "daylight_detector" },
|
||||||
|
"power=9": { "model": "daylight_detector" },
|
||||||
|
"power=10": { "model": "daylight_detector" },
|
||||||
|
"power=11": { "model": "daylight_detector" },
|
||||||
|
"power=12": { "model": "daylight_detector" },
|
||||||
|
"power=13": { "model": "daylight_detector" },
|
||||||
|
"power=14": { "model": "daylight_detector" },
|
||||||
|
"power=15": { "model": "daylight_detector" }
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"power=0": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=1": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=2": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=3": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=4": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=5": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=6": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=7": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=8": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=9": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=10": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=11": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=12": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=13": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=14": { "model": "daylight_detector_inverted" },
|
||||||
|
"power=15": { "model": "daylight_detector_inverted" }
|
||||||
|
}
|
||||||
|
}
|
5
1.10.2/assets/minecraft/blockstates/dead_bush.json
Normal file
5
1.10.2/assets/minecraft/blockstates/dead_bush.json
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"normal": { "model": "dead_bush" }
|
||||||
|
}
|
||||||
|
}
|
16
1.10.2/assets/minecraft/blockstates/detector_rail.json
Normal file
16
1.10.2/assets/minecraft/blockstates/detector_rail.json
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"variants": {
|
||||||
|
"powered=false,shape=north_south": { "model": "detector_rail_flat" },
|
||||||
|
"powered=false,shape=east_west": { "model": "detector_rail_flat", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_east": { "model": "detector_rail_raised_ne", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_west": { "model": "detector_rail_raised_sw", "y": 90 },
|
||||||
|
"powered=false,shape=ascending_north": { "model": "detector_rail_raised_ne" },
|
||||||
|
"powered=false,shape=ascending_south": { "model": "detector_rail_raised_sw" },
|
||||||
|
"powered=true,shape=north_south": { "model": "detector_rail_powered_flat" },
|
||||||
|
"powered=true,shape=east_west": { "model": "detector_rail_powered_flat", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_east": { "model": "detector_rail_powered_raised_ne", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_west": { "model": "detector_rail_powered_raised_sw", "y": 90 },
|
||||||
|
"powered=true,shape=ascending_north": { "model": "detector_rail_powered_raised_ne" },
|
||||||
|
"powered=true,shape=ascending_south": { "model": "detector_rail_powered_raised_sw" }
|
||||||
|
}
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user