Simple (and op) recipes
This commit is contained in:
parent
38925892fd
commit
9bcdf30eb4
6 changed files with 66 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "minecraft:blasting",
|
||||
"category": "misc",
|
||||
"cookingtime": 20,
|
||||
"experience": 0.35,
|
||||
"ingredient": {
|
||||
"item": "tutorialmod:raw_sapphire"
|
||||
},
|
||||
"result": "tutorialmod:sapphire"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "minecraft:blasting",
|
||||
"category": "misc",
|
||||
"cookingtime": 10,
|
||||
"experience": 10,
|
||||
"ingredient": {
|
||||
"item": "tutorialmod:raw_sapphire_block"
|
||||
},
|
||||
"result": "tutorialmod:sapphire"
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shaped",
|
||||
"category": "misc",
|
||||
"pattern": ["###", "###", "###"],
|
||||
"key": {
|
||||
"#": {
|
||||
"item": "tutorialmod:sapphire"
|
||||
}
|
||||
},
|
||||
"result": {
|
||||
"item": "tutorialmod:sapphire_block"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"category": "misc",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "tutorialmod:sapphire_block"
|
||||
}
|
||||
],
|
||||
"result": {
|
||||
"item": "tutorialmod:sapphire",
|
||||
"count": 9
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "minecraft:smelting",
|
||||
"category": "misc",
|
||||
"cookingtime": 100,
|
||||
"experience": 0.35,
|
||||
"ingredient": {
|
||||
"item": "tutorialmod:raw_sapphire"
|
||||
},
|
||||
"result": "tutorialmod:sapphire"
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"type": "minecraft:smelting",
|
||||
"category": "misc",
|
||||
"cookingtime": 1,
|
||||
"experience": 10000,
|
||||
"ingredient": {
|
||||
"item": "tutorialmod:raw_sapphire_block"
|
||||
},
|
||||
"result": "tutorialmod:sapphire"
|
||||
}
|
Loading…
Add table
Reference in a new issue