-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add recipes for parts, blocks, and items
- Loading branch information
1 parent
861f63b
commit a7e7ed9
Showing
3 changed files
with
70 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
src/main/resources/data/integratedscripting/recipes/crafting/part_terminal_scripting.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
"RMR", | ||
"VDW", | ||
"R R" | ||
], | ||
"key": { | ||
"R": { | ||
"tag": "forge:dusts/redstone" | ||
}, | ||
"M": { | ||
"item": "integratedscripting:mendesite" | ||
}, | ||
"V": { | ||
"item": "integrateddynamics:variable_transformer_output" | ||
}, | ||
"D": { | ||
"item": "integrateddynamics:part_display_panel" | ||
}, | ||
"W": { | ||
"item": "integrateddynamics:variable_transformer_input" | ||
} | ||
}, | ||
"result": { | ||
"item": "integratedscripting:part_terminal_scripting" | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/resources/data/integratedscripting/recipes/crafting/scripting_disk.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
" V ", | ||
"VMV", | ||
" V " | ||
], | ||
"key": { | ||
"V": { | ||
"item": "integrateddynamics:variable" | ||
}, | ||
"M": { | ||
"item": "integratedscripting:mendesite" | ||
} | ||
}, | ||
"result": { | ||
"item": "integratedscripting:scripting_disk", | ||
"count": 8 | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/main/resources/data/integratedscripting/recipes/crafting/scripting_drive.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"pattern": [ | ||
" D ", | ||
"DSD", | ||
" J " | ||
], | ||
"key": { | ||
"D": { | ||
"item": "integratedscripting:scripting_disk" | ||
}, | ||
"S": { | ||
"item": "integrateddynamics:variablestore" | ||
}, | ||
"J": { | ||
"item": "minecraft:jukebox" | ||
} | ||
}, | ||
"result": { | ||
"item": "integratedscripting:scripting_drive" | ||
} | ||
} |