Feature/fluidreplicator (#1482)

Added Fluid Replicator multiblock machine.
This commit is contained in:
drcrazy 2018-04-12 15:42:12 +03:00 committed by GitHub
parent 7b275bebb1
commit fef10740ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 1202 additions and 121 deletions

View file

@ -0,0 +1,49 @@
{
"forge_marker": 1,
"defaults": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"particle": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off",
"top": "techreborn:blocks/machines/tier3_machines/machine_top",
"down": "techreborn:blocks/machines/tier3_machines/machine_bottom",
"south": "techreborn:blocks/machines/tier3_machines/machine_back",
"west": "techreborn:blocks/machines/tier3_machines/machine_west",
"east": "techreborn:blocks/machines/tier3_machines/machine_east"
}
},
"variants": {
"inventory": {
"transform": "forge:default-block",
"model": "orientable",
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off"
}
},
"facing": {
"north": {
},
"east": {
"y": 90
},
"south": {
"y": 180
},
"west": {
"y": 270
}
},
"active": {
"true": {
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_on"
}
},
"false": {
"textures": {
"front": "techreborn:blocks/machines/tier3_machines/fluid_replicator_front_off"
}
}
}
}
}

View file

@ -81,6 +81,7 @@ tile.techreborn:mv_transformer.name=MV Transformer
tile.techreborn:hv_transformer.name=HV Transformer
tile.techreborn:ev_transformer.name=EV Transformer
tile.techreborn:auto_crafting_table.name=Auto Crafting Table
tile.techreborn:fluid_replicator.name=Fluid Replicator
#Blocks

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,12 @@
{
"animation": {
"frametime": 5,
"frames": [
0,
1,
2,
3,
4
]
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Before After
Before After