mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-22 11:53:29 +01:00
added transmutation recipes for the new fungi
This commit is contained in:
parent
30e34c2181
commit
f245d20f3c
4 changed files with 42 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "naturesaura:altar",
|
"type": "naturesaura:altar",
|
||||||
"text": "Creating $(item)Nether Wart$() from poisonous mushrooms",
|
"text": "Creating $(item)Nether Wart$() from the Nether's spores",
|
||||||
"recipe": "naturesaura:nether_wart"
|
"recipe": "naturesaura:nether_wart"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -87,6 +87,16 @@
|
||||||
"type": "naturesaura:altar",
|
"type": "naturesaura:altar",
|
||||||
"text": "Creating $(item)Gilded Blackstone$()",
|
"text": "Creating $(item)Gilded Blackstone$()",
|
||||||
"recipe": "naturesaura:gilded_blackstone"
|
"recipe": "naturesaura:gilded_blackstone"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "naturesaura:altar",
|
||||||
|
"text": "Creating $(item)Crimson Fungus$()",
|
||||||
|
"recipe": "naturesaura:crimson_fungus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "naturesaura:altar",
|
||||||
|
"text": "Creating $(item)Warped Fungus$()",
|
||||||
|
"recipe": "naturesaura:warped_fungus"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"type": "naturesaura:altar",
|
||||||
|
"input": {
|
||||||
|
"item": "minecraft:red_mushroom"
|
||||||
|
},
|
||||||
|
"output": {
|
||||||
|
"item": "minecraft:crimson_fungus"
|
||||||
|
},
|
||||||
|
"aura_type": "naturesaura:nether",
|
||||||
|
"catalyst": {
|
||||||
|
"item": "naturesaura:conversion_catalyst"
|
||||||
|
},
|
||||||
|
"aura": 30000,
|
||||||
|
"time": 250
|
||||||
|
}
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"type": "naturesaura:altar",
|
"type": "naturesaura:altar",
|
||||||
"input": {
|
"input": {
|
||||||
"item": "minecraft:red_mushroom"
|
"item": "minecraft:crimson_fungus"
|
||||||
},
|
},
|
||||||
"output": {
|
"output": {
|
||||||
"item": "minecraft:nether_wart"
|
"item": "minecraft:nether_wart"
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"type": "naturesaura:altar",
|
||||||
|
"input": {
|
||||||
|
"item": "minecraft:brown_mushroom"
|
||||||
|
},
|
||||||
|
"output": {
|
||||||
|
"item": "minecraft:warped_fungus"
|
||||||
|
},
|
||||||
|
"aura_type": "naturesaura:nether",
|
||||||
|
"catalyst": {
|
||||||
|
"item": "naturesaura:conversion_catalyst"
|
||||||
|
},
|
||||||
|
"aura": 30000,
|
||||||
|
"time": 250
|
||||||
|
}
|
Loading…
Reference in a new issue