Added clinker brick wall. Fixed missing check for ie:stone_deco in recipe constants.
This commit is contained in:
parent
14e020e67a
commit
c78dd954fd
17 changed files with 162 additions and 5 deletions
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"forge_marker": 1,
|
||||
"defaults": {
|
||||
"model": "engineersdecor:wall/clinker_brick_wall_default",
|
||||
"textures": {
|
||||
"wall": "engineersdecor:blocks/clinker_brick/clinker_brick_wall",
|
||||
"postside": "engineersdecor:blocks/clinker_brick/clinker_brick_pole_side",
|
||||
"top": "engineersdecor:blocks/clinker_brick/clinker_brick_top",
|
||||
"particle": "engineersdecor:blocks/clinker_brick/clinker_brick_top"
|
||||
}
|
||||
},
|
||||
"variants": {
|
||||
"inventory": { "model": "engineersdecor:wall/clinker_brick_wall_inventory" },
|
||||
"up" : { "false":{}, "true": {"submodel": {"clinker_wall_up" : {"model": "engineersdecor:wall/clinker_brick_wall_post" }}} },
|
||||
"north": { "false":{}, "true": {"submodel": {"clinker_wall_north" : {"model": "engineersdecor:wall/clinker_brick_wall_side", "uvlock": true, "y": 0 }}} },
|
||||
"east" : { "false":{}, "true": {"submodel": {"clinker_wall_east" : {"model": "engineersdecor:wall/clinker_brick_wall_side", "uvlock": true, "y": 90 }}} },
|
||||
"south": { "false":{}, "true": {"submodel": {"clinker_wall_south" : {"model": "engineersdecor:wall/clinker_brick_wall_side", "uvlock": true, "y": 180 }}} },
|
||||
"west" : { "false":{}, "true": {"submodel": {"clinker_wall_west" : {"model": "engineersdecor:wall/clinker_brick_wall_side", "uvlock": true, "y": 270 }}} }
|
||||
}
|
||||
}
|
|
@ -22,6 +22,8 @@ tile.engineersdecor.rebar_concrete_wall.name=Rebar concrete wall
|
|||
tile.engineersdecor.rebar_concrete_wall.help=§6Steel reinforced concrete wall.§r Expensive but Creeper-proof like obsidian.
|
||||
tile.engineersdecor.concrete_wall.name=Concrete wall
|
||||
tile.engineersdecor.concrete_wall.help=§6Wall made of solid concrete.
|
||||
tile.engineersdecor.clinker_brick_wall.name=Clinker brick wall
|
||||
tile.engineersdecor.clinker_brick_wall.help=§6Simplistic clinker brick wall.
|
||||
|
||||
#-----------------------------------------------------------------------------------------------------------
|
||||
# Ladder blocks
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"textures": {
|
||||
"wall": "engineersdecor:blocks/clinker_brick/clinker_brick_texture0",
|
||||
"particle": "engineersdecor:blocks/clinker_brick/clinker_brick_texture0"
|
||||
},
|
||||
"elements": [{
|
||||
"from": [7.9, 7.9, 7.9], "to": [8, 8, 8], "faces": { "down": {"texture": "#wall"} }
|
||||
}]
|
||||
}
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"credit": "I made this with the Blockbench",
|
||||
"parent": "block/block",
|
||||
"ambientocclusion": false,
|
||||
"textures": {
|
||||
"wall": "engineersdecor:blocks/clinker_brick/clinker_brick_wall",
|
||||
"particle": "engineersdecor:blocks/clinker_brick/clinker_brick_wall",
|
||||
"top": "engineersdecor:blocks/clinker_brick/clinker_brick_top"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Full wall",
|
||||
"from": [4.5, 0, 0],
|
||||
"to": [11.5, 12, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [3.97, 4, 10.97, 16], "texture": "#wall", "cullface": "north"},
|
||||
"east": {"uv": [0, 4, 16, 16], "texture": "#wall"},
|
||||
"south": {"uv": [4, 4, 11, 16], "texture": "#wall", "cullface": "south"},
|
||||
"west": {"uv": [0, 4, 16, 16], "texture": "#wall"},
|
||||
"up": {"uv": [4.5, 0, 11.5, 16], "texture": "#top"},
|
||||
"down": {"uv": [4.5, 0, 11.5, 16], "texture": "#wall", "cullface": "down"}
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Full wall",
|
||||
"from": [4.5, 12, 0],
|
||||
"to": [11.5, 16, 16],
|
||||
"faces": {
|
||||
"north": {"uv": [4.5, 0, 11.5, 4], "texture": "#wall", "cullface": "north"},
|
||||
"east": {"uv": [0, 0, 16, 4], "texture": "#wall"},
|
||||
"south": {"uv": [4.5, 0, 11.5, 4], "texture": "#wall", "cullface": "south"},
|
||||
"west": {"uv": [0, 0, 16, 4], "texture": "#wall"},
|
||||
"up": {"uv": [4.5, 0, 11.5, 16], "texture": "#top"},
|
||||
"down": {"uv": [4.5, 0, 11.5, 16], "texture": "#wall", "cullface": "down"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"gui": {
|
||||
"rotation": [30, 135, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"rotation": [0, 90, 0],
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"credit": "I made this with the Blockbench",
|
||||
"textures": {
|
||||
"postside": "engineersdecor:blocks/clinker_brick/clinker_brick_pole_side",
|
||||
"top": "engineersdecor:blocks/clinker_brick/clinker_brick_top",
|
||||
"particle": "engineersdecor:blocks/clinker_brick/clinker_brick_top"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"name": "Center post",
|
||||
"from": [4, 0, 4],
|
||||
"to": [12, 16, 12],
|
||||
"faces": {
|
||||
"north": {"texture": "#postside"},
|
||||
"east": {"texture": "#postside"},
|
||||
"south": {"texture": "#postside"},
|
||||
"west": {"texture": "#postside"},
|
||||
"up": {"texture": "#top", "cullface": "up"},
|
||||
"down": {"texture": "#top"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"credit": "I made this with the Blockbench",
|
||||
"textures": {
|
||||
"wall": "engineersdecor:blocks/clinker_brick/clinker_brick_wall",
|
||||
"top": "engineersdecor:blocks/clinker_brick/clinker_brick_top",
|
||||
"particle": "engineersdecor:blocks/clinker_brick/clinker_brick_top"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [4.125, 0, 0],
|
||||
"to": [11.875, 15.98, 8],
|
||||
"faces": {
|
||||
"north": {"texture": "#wall", "cullface": "north"},
|
||||
"east": {"texture": "#wall"},
|
||||
"west": {"texture": "#wall"},
|
||||
"up": {"texture": "#top"},
|
||||
"down": {"texture": "#top"}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -128,6 +128,9 @@
|
|||
"name": "stickFerroMetal"
|
||||
},
|
||||
{
|
||||
"conditions": [
|
||||
{ "type": "minecraft:item_exists", "item": "immersiveengineering:stone_decoration" }
|
||||
],
|
||||
"ingredient": {
|
||||
"item": "immersiveengineering:stone_decoration",
|
||||
"data": 5
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
{
|
||||
"conditions": [
|
||||
{
|
||||
"type": "engineersdecor:grc",
|
||||
"result": "engineersdecor:clinker_brick_wall"
|
||||
}
|
||||
],
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"pattern": [
|
||||
" ",
|
||||
"BBB",
|
||||
"BBB"
|
||||
],
|
||||
"key": {
|
||||
"B": {
|
||||
"item": "engineersdecor:clinker_brick_block",
|
||||
"data": 0
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "engineersdecor:clinker_brick_wall",
|
||||
"count": 6
|
||||
}
|
||||
}
|
Binary file not shown.
After Width: | Height: | Size: 443 B |
Binary file not shown.
After Width: | Height: | Size: 501 B |
Binary file not shown.
After Width: | Height: | Size: 549 B |
Loading…
Add table
Add a link
Reference in a new issue