Added ME Fluid Interface (#3564)

* Fixed fluid storage bus json recipe
* Added part version and recipes
* Added rudimentary gui
This commit is contained in:
fscan
2018-06-27 20:04:30 +02:00
committed by yueh
parent 046a27bf4c
commit c2d18ce013
31 changed files with 2200 additions and 7 deletions
@@ -0,0 +1,7 @@
{
"variants": {
"normal": {
"model": "appliedenergistics2:interface"
}
}
}
@@ -16,6 +16,7 @@ tile.appliedenergistics2.matrix_frame.name=Matrix Frame
tile.appliedenergistics2.io_port.name=ME IO Port
tile.appliedenergistics2.inscriber.name=Inscriber
tile.appliedenergistics2.interface.name=ME Interface
tile.appliedenergistics2.fluid_interface.name=ME Fluid Interface
tile.appliedenergistics2.quantum_link.name=ME Quantum Link Chamber
tile.appliedenergistics2.quantum_ring.name=ME Quantum Ring
tile.appliedenergistics2.fluix_block.name=Fluix Block
@@ -152,6 +153,7 @@ gui.appliedenergistics2.GrindStone=Grindstone
gui.appliedenergistics2.ImportBus=ME Import Bus
gui.appliedenergistics2.ImportBusFluids=ME Fluid Import Bus
gui.appliedenergistics2.Interface=ME Interface
gui.appliedenergistics2.FluidInterface=ME Fluid Interface
gui.appliedenergistics2.LevelEmitter=ME Level Emitter
gui.appliedenergistics2.Of=of
gui.appliedenergistics2.Patterns=Patterns
@@ -495,6 +497,7 @@ item.appliedenergistics2.multi_part.formation_plane.name=ME Formation Plane
item.appliedenergistics2.multi_part.import_bus.name=ME Import Bus
item.appliedenergistics2.multi_part.fluid_import_bus.name=ME Fluid Import Bus
item.appliedenergistics2.multi_part.interface.name=ME Interface
item.appliedenergistics2.multi_part.fluid_interface.name=ME Fluid Interface
item.appliedenergistics2.multi_part.level_emitter.name=ME Level Emitter
item.appliedenergistics2.multi_part.p2p_tunnel.name=P2P Tunnel
item.appliedenergistics2.multi_part.pattern_terminal.name=ME Pattern Terminal
@@ -0,0 +1,106 @@
{
"parent": "appliedenergistics2:item/part/part",
"textures": {
"sides": "appliedenergistics2:parts/monitor_sides",
"back": "appliedenergistics2:parts/monitor_back",
"front": "appliedenergistics2:items/part/interface"
},
"elements": [
{
"from": [
2,
2,
7
],
"to": [
14,
14,
9
],
"faces": {
"north": {
"texture": "#front"
},
"south": {
"texture": "#back"
},
"east": {
"texture": "#sides"
},
"west": {
"texture": "#sides"
},
"up": {
"texture": "#sides"
},
"down": {
"texture": "#sides"
}
}
},
{
"from": [
5,
5,
10
],
"to": [
11,
11,
11
],
"faces": {
"north": {
"texture": "#front"
},
"south": {
"texture": "#back"
},
"east": {
"texture": "#sides"
},
"west": {
"texture": "#sides"
},
"up": {
"texture": "#sides"
},
"down": {
"texture": "#sides"
}
}
},
{
"from": [
5,
5,
9
],
"to": [
11,
11,
10
],
"faces": {
"north": {
"texture": "#front"
},
"south": {
"texture": "#back"
},
"east": {
"texture": "#sides"
},
"west": {
"texture": "#sides"
},
"up": {
"texture": "#sides"
},
"down": {
"texture": "#sides"
}
}
}
]
}
@@ -0,0 +1,29 @@
{
"result": {
"item": "appliedenergistics2:fluid_interface"
},
"type": "forge:ore_shaped",
"pattern": [
"aba",
"c d",
"aba"
],
"key": {
"d": {
"type": "appliedenergistics2:part",
"part": "material.formation_core"
},
"b": {
"type": "forge:ore_dict",
"ore": "dyeBlue"
},
"a": {
"type": "forge:ore_dict",
"ore": "ingotIron"
},
"c": {
"type": "appliedenergistics2:part",
"part": "material.annihilation_core"
}
}
}
@@ -0,0 +1,12 @@
{
"result": {
"item": "appliedenergistics2:fluid_interface"
},
"type": "forge:ore_shapeless",
"ingredients": [
{
"type": "appliedenergistics2:part",
"part": "part.fluid_interface"
}
]
}
@@ -0,0 +1,12 @@
{
"result": {
"type": "appliedenergistics2:part",
"part": "part.fluid_interface"
},
"type": "appliedenergistics2:part_shapeless",
"ingredients": [
{
"item": "appliedenergistics2:fluid_interface"
}
]
}
@@ -1,7 +1,7 @@
{
"result": {
"type": "appliedenergistics2:part",
"part": "part.storage_bus_fluid"
"part": "part.fluid_storage_bus"
},
"type": "appliedenergistics2:part_shapeless",
"ingredients": [
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB