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
|
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "#side",
"top": "tconstruct:blocks/smeltery/seared_brick",
"side": "#top"
},
"uvlock": true
},
"variants": {
"active": {
"true": {
"textures": { "front": "tconstruct:blocks/smeltery/smeltery_active" }
},
"false": {
"textures": { "front": "tconstruct:blocks/smeltery/smeltery_inactive" }
}
},
"facing": {
"north": {
"__comment": "nothing to rotate"
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"inventory": {
"model": "orientable",
"textures": {
"particle": "#side",
"top": "tconstruct:blocks/smeltery/seared_brick",
"side": "#top",
"front": "tconstruct:blocks/smeltery/smeltery_inactive"
}
}
}
}
|