Simple (and op) recipes

This commit is contained in:
Chris Toph 2025-02-16 20:39:50 -05:00
parent 38925892fd
commit 9bcdf30eb4
6 changed files with 66 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 20,
"experience": 0.35,
"ingredient": {
"item": "tutorialmod:raw_sapphire"
},
"result": "tutorialmod:sapphire"
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:blasting",
"category": "misc",
"cookingtime": 10,
"experience": 10,
"ingredient": {
"item": "tutorialmod:raw_sapphire_block"
},
"result": "tutorialmod:sapphire"
}

View file

@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shaped",
"category": "misc",
"pattern": ["###", "###", "###"],
"key": {
"#": {
"item": "tutorialmod:sapphire"
}
},
"result": {
"item": "tutorialmod:sapphire_block"
}
}

View file

@ -0,0 +1,13 @@
{
"type": "minecraft:crafting_shapeless",
"category": "misc",
"ingredients": [
{
"item": "tutorialmod:sapphire_block"
}
],
"result": {
"item": "tutorialmod:sapphire",
"count": 9
}
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 100,
"experience": 0.35,
"ingredient": {
"item": "tutorialmod:raw_sapphire"
},
"result": "tutorialmod:sapphire"
}

View file

@ -0,0 +1,10 @@
{
"type": "minecraft:smelting",
"category": "misc",
"cookingtime": 1,
"experience": 10000,
"ingredient": {
"item": "tutorialmod:raw_sapphire_block"
},
"result": "tutorialmod:sapphire"
}