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
|
{
"multipart": [
{
"when": {"north": "true", "down": "true" },
"apply": {"model": "minecraft:block/chorus_plant_side"}
},
{
"when": {"east": "true", "down": "true" },
"apply": {"model": "minecraft:block/chorus_plant_side", "y": 90 }
},
{
"when": {"south": "true", "down": "true" },
"apply": {"model": "minecraft:block/chorus_plant_side", "y": 180 }
},
{
"when": {"west": "true", "down": "true" },
"apply": {"model": "minecraft:block/chorus_plant_side", "y": 270 }
},
{
"when": {"up": "true" },
"apply": {"model": "minecraft:block/chorus_plant_down", "x": 180 }
},
{
"when": {"down": "true" },
"apply": {"model": "minecraft:block/chorus_plant_down" }
},
{
"when": {"north": "true", "down": "false" },
"apply": {"model": "minecraft:block/chorus_vine"}
},
{
"when": {"east": "true", "down": "false" },
"apply": {"model": "minecraft:block/chorus_vine", "y": 90 }
},
{
"when": {"south": "true", "down": "false" },
"apply": {"model": "minecraft:block/chorus_vine", "y": 180 }
},
{
"when": {"west": "true", "down": "false" },
"apply": {"model": "minecraft:block/chorus_vine", "y": 270 }
},
{
"when": {"north": "false", "east": "false", "south": "false", "west": "false", "up": "true", "down": "true" },
"apply": [
{"model": "minecraft:block/chorus_leaf" },
{"model": "minecraft:block/chorus_leaf", "y": 90 },
{"model": "minecraft:block/chorus_leaf", "y": 180 },
{"model": "minecraft:block/chorus_leaf", "y": 270 },
{"model": "minecraft:block/chorus_fruit_small" },
{"model": "minecraft:block/chorus_fruit_small", "y": 90 },
{"model": "minecraft:block/chorus_fruit_small", "y": 180 },
{"model": "minecraft:block/chorus_fruit_small", "y": 270 }
]
},
{
"apply": [
{ "model": "minecraft:block/chorus_plant_noside" },
{ "model": "minecraft:block/chorus_plant_noside1" }
]
}
]
}
|