Milking machine added. Window placement improved. Pipe valve textures adapted. 1.14: Pipe valve early load replaced with lazy init (issue #69). Mineral Smelter gravity fluid transfer added.
This commit is contained in:
parent
01ca043d41
commit
6dacc0922d
31 changed files with 709 additions and 249 deletions
|
@ -1,7 +1,7 @@
|
|||
# @file mods.toml
|
||||
# @spec TOML v0.5.0 (https://github.com/toml-lang/toml)
|
||||
modLoader="javafml" # forge FML java
|
||||
loaderVersion="[25,)"
|
||||
modLoader="javafml"
|
||||
loaderVersion="[28,)"
|
||||
issueTrackerURL="https://github.com/stfwi/engineers-decor/issues/"
|
||||
|
||||
[[mods]]
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"variants": {
|
||||
"facing=north": { "model": "engineersdecor:block/generic/test_block_model" },
|
||||
"facing=south": { "model": "engineersdecor:block/generic/test_block_model", "y":180 },
|
||||
"facing=west": { "model": "engineersdecor:block/generic/test_block_model", "y":270 },
|
||||
"facing=east": { "model": "engineersdecor:block/generic/test_block_model", "y":90 },
|
||||
"facing=up": { "model": "engineersdecor:block/generic/test_block_model", "x":270 },
|
||||
"facing=down": { "model": "engineersdecor:block/generic/test_block_model", "x":90 }
|
||||
}
|
||||
}
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"parent": "block/block",
|
||||
"textures": {
|
||||
"top": "engineersdecor:block/furnace/small_electrical_furnace_top",
|
||||
"particle": "engineersdecor:block/furnace/small_electrical_furnace_top",
|
||||
"bottom": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"left": "engineersdecor:block/furnace/small_electrical_furnace_left",
|
||||
"right": "engineersdecor:block/furnace/small_electrical_furnace_right",
|
||||
"front": "engineersdecor:block/furnace/small_electrical_furnace_front",
|
||||
"back": "engineersdecor:block/furnace/small_electrical_furnace_back"
|
||||
},
|
||||
"elements": [
|
||||
{
|
||||
"from": [0, 0, 0],
|
||||
"to": [16, 16, 16],
|
||||
"faces": {
|
||||
"north": {"texture": "#front"},
|
||||
"east": {"texture": "#right"},
|
||||
"south": {"texture": "#back"},
|
||||
"west": {"texture": "#left"},
|
||||
"up": {"texture": "#top"},
|
||||
"down": {"texture": "#bottom"}
|
||||
}
|
||||
}
|
||||
],
|
||||
"display": {
|
||||
"ground": {
|
||||
"translation": [0, 1.75, 0],
|
||||
"scale": [0.2, 0.2, 0.2]
|
||||
},
|
||||
"gui": {
|
||||
"rotation": [30, 225, 0],
|
||||
"scale": [0.625, 0.625, 0.625]
|
||||
},
|
||||
"fixed": {
|
||||
"scale": [0.5, 0.5, 0.5]
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"parent": "engineersdecor:block/generic/directed_cube",
|
||||
"textures": {
|
||||
"top": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"particle": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"bottom": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"left": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"right": "engineersdecor:block/furnace/small_electrical_furnace_bottom",
|
||||
"front": "engineersdecor:block/furnace/small_electrical_furnace_top",
|
||||
"back": "engineersdecor:block/furnace/small_electrical_furnace_bottom"
|
||||
}
|
||||
}
|
|
@ -1 +1 @@
|
|||
{ "parent": "engineersdecor:block/pipe/straight_pipe_valve_model" }
|
||||
{ "parent": "engineersdecor:block/pipe/straight_pipe_valve_redstone_analog_model" }
|
|
@ -0,0 +1 @@
|
|||
{ "parent": "engineersdecor:block/generic/test_block_model" }
|
Binary file not shown.
Before Width: | Height: | Size: 624 B After Width: | Height: | Size: 605 B |
Binary file not shown.
Before Width: | Height: | Size: 615 B After Width: | Height: | Size: 591 B |
Binary file not shown.
Before Width: | Height: | Size: 544 B After Width: | Height: | Size: 513 B |
Loading…
Add table
Add a link
Reference in a new issue