added new blockstates

master
Dolan Miu 2016-10-18 14:34:19 +01:00
parent 7e53da791b
commit feaf02ed8f
11 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,7 @@
{
"variants": {
"normal": [
{ "model": "dirt" }
]
}
}

View File

@ -0,0 +1,8 @@
{
"variants": {
"snowy=false": [
{ "model": "grass_normal" }
],
"snowy=true": { "model": "grass_snowed" }
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"normal": [
{ "model": "netherrack" }
]
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"normal": [
{ "model": "red_sand" }
]
}
}

View File

@ -0,0 +1,7 @@
{
"variants": {
"normal": [
{ "model": "sand" }
]
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "blocks/dirt"
}
}

View File

@ -0,0 +1,10 @@
{
"parent": "block/grass",
"textures": {
"particle": "blocks/dirt",
"bottom": "blocks/dirt",
"top": "blocks/grass_top",
"side": "blocks/grass_side",
"overlay": "blocks/grass_side_overlay"
}
}

View File

@ -0,0 +1,9 @@
{
"parent": "block/cube_bottom_top",
"textures": {
"particle": "blocks/dirt",
"bottom": "blocks/dirt",
"top": "blocks/grass_top",
"side": "blocks/grass_side_snowed"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "blocks/netherrack"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "blocks/red_sand"
}
}

View File

@ -0,0 +1,6 @@
{
"parent": "block/cube_all",
"textures": {
"all": "blocks/sand"
}
}