1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
{
"multipart": [
{ "when": { "half": "bottom" },
"apply": { "model": "block/brick_stairs_bottom" }
},
{ "when": { "half": "top" },
"apply": { "model": "block/brick_stairs_top", "x": 180 }
},
{ "when": { "facing": "west", "half": "bottom", "shape": "straight" },
"apply": { "model": "block/brick_stairs_west" }
},
{ "when": { "facing": "north", "half": "bottom", "shape": "straight" },
"apply": { "model": "block/brick_stairs_north", "y": 90 }
},
{ "when": { "facing": "east", "half": "bottom", "shape": "straight" },
"apply": { "model": "block/brick_stairs_east", "y": 180 }
},
{ "when": { "facing": "south", "half": "bottom", "shape": "straight" },
"apply": { "model": "block/brick_stairs_south", "y": 270 }
},
{ "when": { "facing": "west", "half": "bottom", "shape": "outer_right" },
"apply": { "model": "block/brick_stairs_outer_west" }
},
{ "when": { "facing": "north", "half": "bottom", "shape": "outer_right" },
"apply": { "model": "block/brick_stairs_outer_north", "y": 90 }
},
{ "when": { "facing": "east", "half": "bottom", "shape": "outer_right" },
"apply": { "model": "block/brick_stairs_outer_east", "y": 180 }
},
{ "when": { "facing": "south", "half": "bottom", "shape": "outer_right" },
"apply": { "model": "block/brick_stairs_outer_south", "y": 270 }
},
{ "when": { "facing": "west", "half": "bottom", "shape": "outer_left" },
"apply": { "model": "block/brick_stairs_outer_south_alt", "y": 270 }
},
{ "when": { "facing": "north", "half": "bottom", "shape": "outer_left" },
"apply": { "model": "block/brick_stairs_outer_west_alt" }
},
{ "when": { "facing": "east", "half": "bottom", "shape": "outer_left" },
"apply": { "model": "block/brick_stairs_outer_north_alt", "y": 90 }
},
{ "when": { "facing": "south", "half": "bottom", "shape": "outer_left" },
"apply": { "model": "block/brick_stairs_outer_east_alt", "y": 180 }
},
{ "when": { "facing": "west", "half": "bottom", "shape": "inner_right" },
"apply": { "model": "block/brick_stairs_inner_west" }
},
{ "when": { "facing": "north", "half": "bottom", "shape": "inner_right" },
"apply": { "model": "block/brick_stairs_inner_north", "y": 90 }
},
{ "when": { "facing": "east", "half": "bottom", "shape": "inner_right" },
"apply": { "model": "block/brick_stairs_inner_east", "y": 180 }
},
{ "when": { "facing": "south", "half": "bottom", "shape": "inner_right" },
"apply": { "model": "block/brick_stairs_inner_south", "y": 270 }
},
{ "when": { "facing": "west", "half": "bottom", "shape": "inner_left" },
"apply": { "model": "block/brick_stairs_inner_west_alt", "y": 270 }
},
{ "when": { "facing": "north", "half": "bottom", "shape": "inner_left" },
"apply": { "model": "block/brick_stairs_inner_north_alt" }
},
{ "when": { "facing": "east", "half": "bottom", "shape": "inner_left" },
"apply": { "model": "block/brick_stairs_inner_east_alt", "y": 90 }
},
{ "when": { "facing": "south", "half": "bottom", "shape": "inner_left" },
"apply": { "model": "block/brick_stairs_inner_south_alt", "y": 180 }
}
]
}
|