Skip to content

Commit

Permalink
Add recipe for cancer ring
Browse files Browse the repository at this point in the history
  • Loading branch information
SammySemicolon committed Dec 4, 2023
1 parent 71fd043 commit 8c0e679
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"type": "malum:spirit_infusion",
"extra_items": [
{
"count": 16,
"item": "malum:void_salts"
},
{
"count": 8,
"item": "malum:null_slate"
}
],
"input": {
"count": 1,
"item": "malum:ring_of_curative_talent"
},
"output": {
"item": "malum:ring_of_growing_flesh"
},
"spirits": [
{
"type": "sacred",
"count": 16
},
{
"type": "wicked",
"count": 16
},
{
"type": "arcane",
"count": 16
},
{
"type": "eldritch",
"count": 16
}
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ protected void buildCraftingRecipes(Consumer<FinishedRecipe> consumer) {
.addExtraItem(ItemRegistry.HEX_ASH.get(), 2)
.build(consumer);


new SpiritInfusionRecipeBuilder(ItemRegistry.ANOMALOUS_DESIGN.get(), 1, ItemRegistry.COMPLETE_DESIGN.get(), 1)
.addSpirit(SACRED_SPIRIT, 4)
.addSpirit(WICKED_SPIRIT, 4)
Expand All @@ -432,6 +431,16 @@ protected void buildCraftingRecipes(Consumer<FinishedRecipe> consumer) {
.addSpirit(INFERNAL_SPIRIT, 4)
.build(consumer);

new SpiritInfusionRecipeBuilder(ItemRegistry.RING_OF_CURATIVE_TALENT.get(), 1, ItemRegistry.RING_OF_GROWING_FLESH.get(), 1)
.addExtraItem(ItemRegistry.VOID_SALTS.get(), 16)
.addExtraItem(ItemRegistry.NULL_SLATE.get(), 8)
.addSpirit(SACRED_SPIRIT, 16)
.addSpirit(WICKED_SPIRIT, 16)
.addSpirit(ARCANE_SPIRIT, 16)
.addSpirit(ELDRITCH_SPIRIT, 16)
.build(consumer);


metalImpetusRecipe(consumer, ItemRegistry.IRON_IMPETUS, Items.IRON_INGOT);
metalImpetusRecipe(consumer, ItemRegistry.COPPER_IMPETUS, Items.COPPER_INGOT);
metalImpetusRecipe(consumer, ItemRegistry.GOLD_IMPETUS, Items.GOLD_INGOT);
Expand Down

0 comments on commit 8c0e679

Please sign in to comment.