Finish recipes for currently implemented blocks and items

This commit is contained in:
2023-03-19 17:24:35 +02:00
parent 932259087c
commit a2238fa663
6 changed files with 106 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"item": "minecraft:glass"
},
"A": {
"item": "minecraft:iron_nugget"
},
"Y": [
{
"item": "minecraft:torch"
},
{
"item": "hyperlighting:advanced_torch"
}
]
},
"pattern": [
"AAA",
"CYC",
"AAA"
],
"result": {
"item": "hyperlighting:advanced_lantern"
},
"show_notification": true
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"item": "minecraft:cobblestone"
},
"Y": {
"item": "minecraft:glass"
}
},
"pattern": [
" ",
"CYC",
" "
],
"result": {
"item": "hyperlighting:battery_neon"
},
"show_notification": true
}

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"tag": "minecraft:coals"
},
{
"item": "minecraft:cobblestone"
}
],
"result": {
"item": "hyperlighting:lighter_tool"
},
"show_notification": true
}

View File

@@ -0,0 +1,20 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"item": "minecraft:cobblestone"
},
"Y": {
"item": "minecraft:glass"
}
},
"pattern": [
" ",
"YYY",
"CCC"
],
"result": {
"item": "hyperlighting:solar_panel"
},
"show_notification": true
}

View File

@@ -0,0 +1,21 @@
{
"type": "minecraft:crafting_shaped",
"key": {
"C": {
"item": "minecraft:redstone"
},
"L": {
"item": "minecraft:cobblestone"
}
},
"pattern": [
" ",
"LCL",
"LLL"
],
"result": {
"count": 3,
"item": "hyperlighting:wireless_battery"
},
"show_notification": true
}