Bamboo / hevea fences

This commit is contained in:
Emmanuel BENOîT 2016-07-11 10:28:49 +02:00
parent 3d9be8923d
commit c1635ea943
13 changed files with 156 additions and 0 deletions
src/resources/assets/mmm
blockstates/deco/fence
lang
models
block/deco/fence
item/deco/fence

View file

@ -0,0 +1,17 @@
{
"multipart": [
{ "apply": { "model": "mmm:deco/fence/bamboo/post" }},
{ "when": { "north": "true" },
"apply": { "model": "mmm:deco/fence/bamboo/side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "mmm:deco/fence/bamboo/side", "y": 270, "uvlock": true }
}
]
}

View file

@ -0,0 +1,17 @@
{
"multipart": [
{ "apply": { "model": "mmm:deco/fence/hevea/post" }},
{ "when": { "north": "true" },
"apply": { "model": "mmm:deco/fence/hevea/side", "uvlock": true }
},
{ "when": { "east": "true" },
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 90, "uvlock": true }
},
{ "when": { "south": "true" },
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 180, "uvlock": true }
},
{ "when": { "west": "true" },
"apply": { "model": "mmm:deco/fence/hevea/side", "y": 270, "uvlock": true }
}
]
}

View file

@ -292,3 +292,5 @@ tile.mmm.deco.throne.hevea.silver.name=Hevea Throne (Silver)
tile.mmm.deco.throne.hevea.white.name=Hevea Throne (White)
tile.mmm.deco.throne.hevea.yellow.name=Hevea Throne (Yellow)
tile.mmm.deco.fence.hevea.name=Hevea Fence
tile.mmm.deco.fence.bamboo.name=Bamboo Fence

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_post",
"textures": {
"texture": "mmm:blocks/materials/planks/bamboo"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/fence_side",
"textures": {
"texture": "mmm:blocks/materials/planks/bamboo"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_post",
"textures": {
"texture": "mmm:blocks/materials/planks/hevea"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "block/fence_side",
"textures": {
"texture": "mmm:blocks/materials/planks/hevea"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_inventory",
"textures": {
"texture": "mmm:blocks/materials/planks/bamboo"
}
}

View file

@ -0,0 +1,6 @@
{
"parent": "minecraft:block/fence_inventory",
"textures": {
"texture": "mmm:blocks/materials/planks/hevea"
}
}