PrettyPipes/src/main/resources/assets/prettypipes/blockstates/pipe.json

118 lines
2.6 KiB
JSON
Raw Normal View History

2020-04-13 21:48:35 +02:00
{
"multipart": [
{
"apply": {
"model": "prettypipes:block/pipe_center"
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"north": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end"
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"south": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end",
"y": 180
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"east": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end",
"y": 90
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"west": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end",
"y": 270
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"down": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end",
"x": 90
}
},
{
"when": {
2020-04-15 18:35:00 +02:00
"up": "connected"
2020-04-13 21:48:35 +02:00
},
"apply": {
"model": "prettypipes:block/pipe_end",
"x": 270
}
2020-04-16 19:47:09 +02:00
},
{
"when": {
"north": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs",
"x": 90,
"y": 180
}
},
{
"when": {
"south": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs",
"x": 90
}
},
{
"when": {
"east": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs",
"x": 90,
"y": 270
}
},
{
"when": {
"west": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs",
"x": 90,
"y": 90
}
},
{
"when": {
"down": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs"
}
},
{
"when": {
"up": "legs"
},
"apply": {
"model": "prettypipes:block/pipe_legs",
"x": 180
}
2020-04-13 21:48:35 +02:00
}
]
}