diff --git a/src/main/resources/data/oc2/recipes/bus_cable.json b/src/main/resources/data/oc2/recipes/bus_cable.json new file mode 100644 index 00000000..7f30f682 --- /dev/null +++ b/src/main/resources/data/oc2/recipes/bus_cable.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "NNN", + "WWW", + "NNN" + ], + "key": { + "N": { + "item": "minecraft:gold_nugget" + }, + "W": { + "item": "oc2:network_cable" + } + }, + "result": { + "item": "oc2:bus_cable", + "count": 3 + } +} \ No newline at end of file diff --git a/src/main/resources/data/oc2/recipes/bus_interface.json b/src/main/resources/data/oc2/recipes/bus_interface.json new file mode 100644 index 00000000..7dd7c677 --- /dev/null +++ b/src/main/resources/data/oc2/recipes/bus_interface.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "N ", + "NC ", + "N " + ], + "key": { + "N": { + "item": "minecraft:gold_nugget" + }, + "C": { + "item": "oc2:bus_cable" + } + }, + "result": { + "item": "oc2:bus_interface" + } +} \ No newline at end of file diff --git a/src/main/resources/data/oc2/recipes/network_connector.json b/src/main/resources/data/oc2/recipes/network_connector.json new file mode 100644 index 00000000..2db43f1c --- /dev/null +++ b/src/main/resources/data/oc2/recipes/network_connector.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " ", + "NWN", + "NWN" + ], + "key": { + "N": { + "item": "minecraft:gold_nugget" + }, + "W": { + "item": "oc2:network_cable" + } + }, + "result": { + "item": "oc2:network_connector", + "count": 2 + } +} \ No newline at end of file diff --git a/src/main/resources/data/oc2/recipes/network_hub.json b/src/main/resources/data/oc2/recipes/network_hub.json new file mode 100644 index 00000000..b348b17c --- /dev/null +++ b/src/main/resources/data/oc2/recipes/network_hub.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GGG", + "GCG", + "GGG" + ], + "key": { + "G": { + "item": "minecraft:gold_nugget" + }, + "C": { + "item": "oc2:network_interface_card" + } + }, + "result": { + "item": "oc2:network_hub" + } +} \ No newline at end of file diff --git a/src/main/resources/data/oc2/recipes/redstone_interface.json b/src/main/resources/data/oc2/recipes/redstone_interface.json new file mode 100644 index 00000000..5e41d0c8 --- /dev/null +++ b/src/main/resources/data/oc2/recipes/redstone_interface.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GGG", + "GCG", + "GGG" + ], + "key": { + "G": { + "item": "minecraft:gold_nugget" + }, + "C": { + "item": "oc2:redstone_interface_card" + } + }, + "result": { + "item": "oc2:redstone_interface" + } +} \ No newline at end of file