Skip to content

Commit

Permalink
fix: wrong ingredients and text for apprentice ritual satchel
Browse files Browse the repository at this point in the history
  • Loading branch information
klikli-dev committed Mar 5, 2025
1 parent 45e0596 commit 6c24233
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/generated/resources/assets/occultism/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -1553,7 +1553,7 @@
"item.occultism.ritual_dummy.craft_research_fragment_dust": "Ritual: Craft Research Fragment Dust",
"item.occultism.ritual_dummy.craft_research_fragment_dust.tooltip": "A Foliot will infuse experience in the emerald dust.",
"item.occultism.ritual_dummy.craft_ritual_satchel_t1": "Ritual: Craft Apprentice Ritual Satchel",
"item.occultism.ritual_dummy.craft_ritual_satchel_t1.tooltip": "Binds a Djinni into a satchel to build pentacles step-by-step for the summoner.",
"item.occultism.ritual_dummy.craft_ritual_satchel_t1.tooltip": "Binds a Foliot into a satchel to build pentacles step-by-step for the summoner.",
"item.occultism.ritual_dummy.craft_ritual_satchel_t2": "Ritual: Craft Artisanal Ritual Satchel",
"item.occultism.ritual_dummy.craft_ritual_satchel_t2.tooltip": "Binds an Afrit into a satchel to build pentacles all at once for the summoner.",
"item.occultism.ritual_dummy.craft_satchel": "Ritual: Craft Surprisingly Substantial Satchel",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"conditions": {
"items": [
{
"items": "occultism:book_of_binding_foliot"
"items": "occultism:book_of_binding_bound_foliot"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "occultism:ritual",
"activation_item": {
"item": "occultism:book_of_binding_foliot"
"item": "occultism:book_of_binding_bound_foliot"
},
"duration": 150,
"ingredients": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3126,7 +3126,7 @@ private void addRitualDummies() {
this.add(OccultismItems.RITUAL_DUMMY_POSSESS_IESNIUM_GOLEM.get(), "Ritual: Summon Iesnium Golem");
this.addTooltip(OccultismItems.RITUAL_DUMMY_POSSESS_IESNIUM_GOLEM.get(), "Summons the strong and invulnerable iesnium golem to defend a region.");
this.add(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T1.get(), "Ritual: Craft Apprentice Ritual Satchel");
this.addTooltip(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T1.get(), "Binds a Djinni into a satchel to build pentacles step-by-step for the summoner.");
this.addTooltip(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T1.get(), "Binds a Foliot into a satchel to build pentacles step-by-step for the summoner.");

this.add(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T2.get(), "Ritual: Craft Artisanal Ritual Satchel");
this.addTooltip(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T2.get(), "Binds an Afrit into a satchel to build pentacles all at once for the summoner.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ private static void craftingRituals(RecipeOutput recipeOutput) {
Ingredient.of(OccultismTags.Items.SILVER_INGOT))
.unlockedBy("has_bound_djinni", has(OccultismItems.BOOK_OF_BINDING_BOUND_DJINNI.get()))
.save(recipeOutput, ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual/craft_infused_pickaxe"));
RitualRecipeBuilder.ritualRecipeBuilder(Ingredient.of(OccultismItems.BOOK_OF_BINDING_FOLIOT.get()),
RitualRecipeBuilder.ritualRecipeBuilder(Ingredient.of(OccultismItems.BOOK_OF_BINDING_BOUND_FOLIOT.get()),
new ItemStack(OccultismItems.RITUAL_SATCHEL_T1.get()),
makeRitualDummy(OccultismItems.RITUAL_DUMMY_CRAFT_RITUAL_SATCHEL_T1.get()),
150,
Expand All @@ -1177,7 +1177,7 @@ private static void craftingRituals(RecipeOutput recipeOutput) {
Ingredient.of(Tags.Items.LEATHERS),
Ingredient.of(Tags.Items.STRINGS),
Ingredient.of(OccultismTags.Items.SILVER_INGOT))
.unlockedBy("has_bound_foliot", has(OccultismItems.BOOK_OF_BINDING_FOLIOT.get()))
.unlockedBy("has_bound_foliot", has(OccultismItems.BOOK_OF_BINDING_BOUND_FOLIOT.get()))
.save(recipeOutput, ResourceLocation.fromNamespaceAndPath(Occultism.MODID, "ritual/craft_ritual_satchel_t1"));
RitualRecipeBuilder.ritualRecipeBuilder(Ingredient.of(OccultismItems.BOOK_OF_BINDING_BOUND_DJINNI.get()),
new ItemStack(OccultismItems.SOUL_GEM_ITEM.get()),
Expand Down

0 comments on commit 6c24233

Please sign in to comment.