Chorus plant remake (WIP)

This commit is contained in:
paulevsGitch 2020-10-15 03:58:57 +03:00
parent a81603bd3e
commit 87aee95650
14 changed files with 320 additions and 0 deletions

View file

@ -0,0 +1,69 @@
{
"multipart": [
{
"when": { "OR": [
{"up": "false"},
{"down": "false"}
]},
"apply": { "model": "betterend:block/chorus_plant_center" }
},
{
"when": {"roots": "true"},
"apply": { "model": "betterend:block/chorus_plant_roots" }
},
{
"when": {"north": "true"},
"apply": [
{ "model": "betterend:block/chorus_plant_stem", "x": 90, "y": 180 },
{ "model": "betterend:block/chorus_plant_stem_2", "x": 90, "y": 180 },
{ "model": "betterend:block/chorus_plant_stem_3", "x": 90, "y": 180 },
{ "model": "betterend:block/chorus_plant_stem_4", "x": 90, "y": 180 }
]
},
{
"when": { "east": "true" },
"apply": [
{ "model": "betterend:block/chorus_plant_stem", "x": 90, "y": 270 },
{ "model": "betterend:block/chorus_plant_stem_2", "x": 90, "y": 270 },
{ "model": "betterend:block/chorus_plant_stem_3", "x": 90, "y": 270 },
{ "model": "betterend:block/chorus_plant_stem_4", "x": 90, "y": 270 }
]
},
{
"when": { "south": "true" },
"apply": [
{ "model": "betterend:block/chorus_plant_stem", "x": 90 },
{ "model": "betterend:block/chorus_plant_stem_2", "x": 90 },
{ "model": "betterend:block/chorus_plant_stem_3", "x": 90 },
{ "model": "betterend:block/chorus_plant_stem_4", "x": 90 }
]
},
{
"when": { "west": "true" },
"apply": [
{ "model": "betterend:block/chorus_plant_stem", "x": 90, "y": 90 },
{ "model": "betterend:block/chorus_plant_stem_2", "x": 90, "y": 90 },
{ "model": "betterend:block/chorus_plant_stem_3", "x": 90, "y": 90 },
{ "model": "betterend:block/chorus_plant_stem_4", "x": 90, "y": 90 }
]
},
{
"when": { "up": "true" },
"apply": [
{ "model": "betterend:block/chorus_plant_stem", "x": 180 },
{ "model": "betterend:block/chorus_plant_stem_2", "x": 180 },
{ "model": "betterend:block/chorus_plant_stem_3", "x": 180 },
{ "model": "betterend:block/chorus_plant_stem_4", "x": 180 }
]
},
{
"when": { "down": "true" },
"apply": [
{ "model": "betterend:block/chorus_plant_stem" },
{ "model": "betterend:block/chorus_plant_stem_2" },
{ "model": "betterend:block/chorus_plant_stem_3" },
{ "model": "betterend:block/chorus_plant_stem_4" }
]
}
]
}