diff --git a/src/main/resources/data/computed/recipe/computer.json b/src/main/resources/data/computed/recipe/computer.json new file mode 100644 index 0000000..8308006 --- /dev/null +++ b/src/main/resources/data/computed/recipe/computer.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "RCR", + "IMI", + "IOI" + ], + "key": { + "R": { + "item": "minecraft:redstone" + }, + "C": { + "item": "create:redstone_link" + }, + "I": { + "item": "minecraft:copper_ingot" + }, + "M": { + "item": "computed:monitor" + }, + "O": { + "item": "minecraft:chiseled_copper" + } + }, + "result": { + "id": "computed:computer" + } +} \ No newline at end of file diff --git a/src/main/resources/data/computed/recipe/monitor.json b/src/main/resources/data/computed/recipe/monitor.json new file mode 100644 index 0000000..90fc2f4 --- /dev/null +++ b/src/main/resources/data/computed/recipe/monitor.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "CLC", + "CTC", + "CRC" + ], + "key": { + "C": { + "item": "minecraft:copper_ingot" + }, + "L": { + "item": "create:nixie_tube" + }, + "T": { + "item": "minecraft:tinted_glass" + }, + "R": { + "item": "minecraft:redstone" + } + }, + "result": { + "id": "computed:monitor" + } +} \ No newline at end of file