Skip to content

Commit

Permalink
fix: summon djinni pentacle not used (uses afrit instead)
Browse files Browse the repository at this point in the history
Closes #1174
  • Loading branch information
klikli-dev committed Jul 28, 2024
1 parent b510a20 commit 4397415
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"item": "minecraft:glass_bottle"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"components": {
"minecraft:item_name": "{\"translate\":\"item.occultism.ritual_dummy.summon_demonic_husband\"}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"item": "minecraft:glass_bottle"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"components": {
"minecraft:item_name": "{\"translate\":\"item.occultism.ritual_dummy.summon_demonic_wife\"}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"tag": "c:crops/wheat"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"count": 1,
"id": "occultism:jei_dummy/none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"tag": "c:dusts/silver"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"count": 1,
"id": "occultism:jei_dummy/none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"tag": "c:dyes/yellow"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"count": 1,
"id": "occultism:jei_dummy/none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"item": "minecraft:furnace"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"count": 1,
"id": "occultism:book_of_calling_djinni_manage_machine"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"tag": "c:dyes/black"
}
],
"pentacle_id": "occultism:summon_afrit",
"pentacle_id": "occultism:summon_djinni",
"result": {
"count": 1,
"id": "occultism:jei_dummy/none"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public abstract class RitualRecipes extends RecipeProvider {
private static final ResourceLocation RITUAL_SUMMON_JOB = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "summon_spirit_with_job");
private static final ResourceLocation RITUAL_RESURRECT_FAMILIAR = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "resurrect_familiar");
private static final ResourceLocation PENTACLE_SUMMON_FOLIOT = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "summon_foliot");
private static final ResourceLocation PENTACLE_SUMMON_DJINNI = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "summon_djinni");
private static final ResourceLocation PENTACLE_SUMMON_AFRIT = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "summon_afrit");
private static final ResourceLocation PENTACLE_SUMMON_WILD_AFRIT = ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "summon_wild_afrit");

Expand Down Expand Up @@ -150,7 +151,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_demonic_husband")),
60,
OccultismRituals.SUMMON_TAMED.getId(),
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(Tags.Items.INGOTS_GOLD),
Ingredient.of(Tags.Items.GEMS_EMERALD),
Ingredient.of(Tags.Items.GUNPOWDERS),
Expand All @@ -169,7 +170,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_demonic_wife")),
60,
OccultismRituals.SUMMON_TAMED.getId(),
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(Tags.Items.INGOTS_GOLD),
Ingredient.of(Tags.Items.GEMS_DIAMOND),
Ingredient.of(Tags.Items.GUNPOWDERS),
Expand All @@ -188,7 +189,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_djinni_clear_weather")),
60,
RITUAL_SUMMON_JOB,
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(Tags.Items.CROPS_BEETROOT),
Ingredient.of(Tags.Items.CROPS_CARROT),
Ingredient.of(Tags.Items.CROPS_POTATO),
Expand All @@ -204,7 +205,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_djinni_crusher")),
90,
RITUAL_SUMMON_JOB,
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(OccultismTags.Items.IRON_DUST),
Ingredient.of(OccultismTags.Items.GOLD_DUST),
Ingredient.of(OccultismTags.Items.COPPER_DUST),
Expand All @@ -220,7 +221,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_djinni_day_time")),
60,
RITUAL_SUMMON_JOB,
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(Items.TORCH),
Ingredient.of(ItemTags.SAPLINGS),
Ingredient.of(Items.WHEAT),
Expand All @@ -236,7 +237,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_djinni_manage_machine")),
60,
RITUAL_SUMMON_JOB,
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(Tags.Items.STORAGE_BLOCKS_COAL),
Ingredient.of(Tags.Items.INGOTS_GOLD),
Ingredient.of(Tags.Items.INGOTS_IRON),
Expand All @@ -252,7 +253,7 @@ private static void summonRituals(RecipeOutput recipeOutput) {
makeRitualDummy(ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual_dummy/summon_djinni_night_time")),
60,
RITUAL_SUMMON_JOB,
PENTACLE_SUMMON_AFRIT,
PENTACLE_SUMMON_DJINNI,
Ingredient.of(ItemTags.BEDS),
Ingredient.of(Items.ROTTEN_FLESH),
Ingredient.of(Tags.Items.BONES),
Expand Down

0 comments on commit 4397415

Please sign in to comment.