mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
added some more catalyst recipes
This commit is contained in:
parent
b7d8a5bcc6
commit
badefe9fc8
8 changed files with 114 additions and 0 deletions
|
@ -107,6 +107,16 @@
|
|||
"type": "naturesaura:altar",
|
||||
"text": "Turning $(item)Water$() into $(item)Milk$()$(p)$(italic)Just like Jesus$()",
|
||||
"recipe": "naturesaura:milk"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Turning $(item)Amethyst Shards$() into $(item)Ender Pearls$()",
|
||||
"recipe": "naturesaura:ender_pearl"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Turning $(item)Soul Soil$() into $(item)Ghast Tears$()",
|
||||
"recipe": "naturesaura:ghast_tear"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -42,6 +42,26 @@
|
|||
"type": "naturesaura:altar",
|
||||
"text": "Making $(item)Gold Powder$() from $(item)Golden Leaves$()",
|
||||
"recipe": "naturesaura:gold_powder"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Reducing $(item)Amethyst Blocks$() to $(item)Shards$()",
|
||||
"recipe": "naturesaura:amethyst"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Turning $(item)Packed Mud$() back into $(item)Mud$()",
|
||||
"recipe": "naturesaura:mud"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Extracting $(item)Nether Warts$() from $(item)Nether Wart Blocks$()",
|
||||
"recipe": "naturesaura:nether_wart_crushing"
|
||||
},
|
||||
{
|
||||
"type": "naturesaura:altar",
|
||||
"text": "Turning $(item)Soul Soil$() into $(item)Soul Sand$()",
|
||||
"recipe": "naturesaura:soul_sand_crushing"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:amethyst_block"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:amethyst_shard"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:crushing_catalyst"
|
||||
},
|
||||
"aura": 25000,
|
||||
"time": 200
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:amethyst_shard"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:ender_pearl"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:conversion_catalyst"
|
||||
},
|
||||
"aura": 90000,
|
||||
"time": 300
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:soul_soil"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:ghast_tear"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:conversion_catalyst"
|
||||
},
|
||||
"aura": 90000,
|
||||
"time": 300
|
||||
}
|
14
src/main/resources/data/naturesaura/recipes/altar/mud.json
Normal file
14
src/main/resources/data/naturesaura/recipes/altar/mud.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:packed_mud"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:mud"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:crushing_catalyst"
|
||||
},
|
||||
"aura": 2000,
|
||||
"time": 20
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:nether_wart_block"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:nether_wart"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:crushing_catalyst"
|
||||
},
|
||||
"aura": 25000,
|
||||
"time": 200
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "naturesaura:altar",
|
||||
"input": {
|
||||
"item": "minecraft:soul_soil"
|
||||
},
|
||||
"output": {
|
||||
"item": "minecraft:soul_sand"
|
||||
},
|
||||
"catalyst": {
|
||||
"item": "naturesaura:crushing_catalyst"
|
||||
},
|
||||
"aura": 6000,
|
||||
"time": 40
|
||||
}
|
Loading…
Reference in a new issue