Book Updates (#1740)
* Remove Living Armor Extra Recipe Mappings They don't work, likely due to data on the JEI item. They were also putting errors in the log due to pointing at nonexistant page 4 (starts counting from 0). * Added more Setup info to Resonance of the Faceted Crystal Ritual. * Updated "Use Ritual Diviner" Message on Each Ritual. Let's correctly spell "conStruction" and add links to the Ritual Diviner's page. I also added a link Anchor to the Ritual Diviner's Dusk version page, and linked each ritual to the appropriate one (Dusk to the Dusk page, and the normal one to the start of the entry) * Added Error Handling to Patchouli Processors If a recipe doesn't exist at all, this should log an error and move past it. * Patchouli Processor Improvements As recommended by TehNut over Discord. * Resonance of the Faceted Crystal only needs 5 spires on the Raw Crystal Cluster * Removed No Longer Needed Examples, Renamed Tome of Peritia Entry The Double-Array Examles aren't needed anymore since they are actually being used now. Renaming the Tome of Peritia entry to not end in book.json means the dev environment doesn't try to use it when setting up the book. * Removed Duplicated Assets These two folders were renamed to use snake_case when we initially updated the book. I forgot to properly replace the originals and ended up just duplicating them. * Removed a Few More Unused Assets These are from before we put all of the Guide's Crafting GUI elements on one texture (located in the textures/gui/patchouli_book folder) to save space. * Expanded Aspected Will Entry Note that Sentient Tools will use the largest will type in the player's inventory. Co-Authored-By: wrincewind <1457878+wrincewind@users.noreply.github.com> Co-authored-by: wrincewind <1457878+wrincewind@users.noreply.github.com>
|
@ -1,6 +1,7 @@
|
|||
package wayoftime.bloodmagic.compat.patchouli.processors;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
@ -23,14 +24,18 @@ public class ARCProcessor implements IComponentProcessor
|
|||
public void setup(IVariableProvider variables)
|
||||
{
|
||||
ResourceLocation id = new ResourceLocation(variables.get("recipe").asString());
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ARC))
|
||||
Optional<? extends IRecipe<?>> recipeHandler = Minecraft.getInstance().world.getRecipeManager().getRecipe(id);
|
||||
if (recipeHandler.isPresent())
|
||||
{
|
||||
this.recipe = (RecipeARC) recipe;
|
||||
IRecipe<?> recipe = recipeHandler.get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ARC))
|
||||
{
|
||||
this.recipe = (RecipeARC) recipe;
|
||||
}
|
||||
}
|
||||
if (this.recipe == null)
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemical Reaction Chamber recipe " + id);
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemical Reaction Chamber recipe {}", id);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -42,7 +47,7 @@ public class ARCProcessor implements IComponentProcessor
|
|||
return null;
|
||||
} else if (key.startsWith("output"))
|
||||
{
|
||||
int index = Integer.parseInt(key.substring("output".length())) - 1;
|
||||
int index = Integer.parseInt(key.substring(6)) - 1;
|
||||
if (recipe.getAllListedOutputs().size() > index)
|
||||
{
|
||||
return IVariable.from(recipe.getAllListedOutputs().get(index));
|
||||
|
@ -52,7 +57,7 @@ public class ARCProcessor implements IComponentProcessor
|
|||
}
|
||||
} else if (key.startsWith("chance"))
|
||||
{
|
||||
int index = Integer.parseInt(key.substring("chance".length())) - 2; // Index 0 = 2nd output.
|
||||
int index = Integer.parseInt(key.substring(6)) - 2; // Index 0 = 2nd output.
|
||||
if (recipe.getAllOutputChances().length > index)
|
||||
{
|
||||
double chance = recipe.getAllOutputChances()[index] * 100;
|
||||
|
@ -64,7 +69,7 @@ public class ARCProcessor implements IComponentProcessor
|
|||
}
|
||||
} else if (key.startsWith("show_chance"))
|
||||
{
|
||||
int index = Integer.parseInt(key.substring("show_chance".length())) - 2; // Index 0 = 2nd output.
|
||||
int index = Integer.parseInt(key.substring(11)) - 2; // Index 0 = 2nd output.
|
||||
if (recipe.getAllOutputChances().length > index)
|
||||
{
|
||||
return IVariable.wrap(true);
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package wayoftime.bloodmagic.compat.patchouli.processors;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
@ -22,14 +23,18 @@ public class AlchemyArrayProcessor implements IComponentProcessor
|
|||
public void setup(IVariableProvider variables)
|
||||
{
|
||||
ResourceLocation id = new ResourceLocation(variables.get("recipe").asString());
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ARRAY))
|
||||
Optional<? extends IRecipe<?>> recipeHandler = Minecraft.getInstance().world.getRecipeManager().getRecipe(id);
|
||||
if (recipeHandler.isPresent())
|
||||
{
|
||||
this.recipe = (RecipeAlchemyArray) recipe;
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ARRAY))
|
||||
{
|
||||
this.recipe = (RecipeAlchemyArray) recipe;
|
||||
}
|
||||
}
|
||||
if (this.recipe == null)
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemy Array recipe " + id);
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemy Array recipe {}", id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package wayoftime.bloodmagic.compat.patchouli.processors;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
@ -25,14 +26,18 @@ public class AlchemyTableProcessor implements IComponentProcessor
|
|||
public void setup(IVariableProvider variables)
|
||||
{
|
||||
ResourceLocation id = new ResourceLocation(variables.get("recipe").asString());
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ALCHEMYTABLE))
|
||||
Optional<? extends IRecipe<?>> recipeHandler = Minecraft.getInstance().world.getRecipeManager().getRecipe(id);
|
||||
if (recipeHandler.isPresent())
|
||||
{
|
||||
this.recipe = (RecipeAlchemyTable) recipe;
|
||||
IRecipe<?> recipe = recipeHandler.get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ALCHEMYTABLE))
|
||||
{
|
||||
this.recipe = (RecipeAlchemyTable) recipe;
|
||||
}
|
||||
}
|
||||
if (this.recipe == null)
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemy Table recipe " + id);
|
||||
LogManager.getLogger().warn("Guidebook missing Alchemy Table recipe {}", id);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -44,7 +49,7 @@ public class AlchemyTableProcessor implements IComponentProcessor
|
|||
return null;
|
||||
} else if (key.startsWith("input"))
|
||||
{
|
||||
int index = Integer.parseInt(key.substring("input".length())) - 1;
|
||||
int index = Integer.parseInt(key.substring(5)) - 1;
|
||||
if (recipe.getInput().size() > index)
|
||||
{
|
||||
return IVariable.wrapList(Arrays.stream(recipe.getInput().get(index).getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
|
||||
|
@ -78,7 +83,7 @@ public class AlchemyTableProcessor implements IComponentProcessor
|
|||
// case 6: return IVariable.from(new
|
||||
// ItemStack(BloodMagicItems.TRANSCENDENT_BLOOD_ORB.get()));
|
||||
default:
|
||||
LogManager.getLogger().warn("Guidebook unable to find large enough Blood Orb for " + recipe.getId());
|
||||
LogManager.getLogger().warn("Guidebook unable to find large enough Blood Orb for {}", recipe.getId());
|
||||
return IVariable.from(new ItemStack(Items.BARRIER));
|
||||
}
|
||||
default:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package wayoftime.bloodmagic.compat.patchouli.processors;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
@ -22,14 +23,18 @@ public class BloodAltarProcessor implements IComponentProcessor
|
|||
public void setup(IVariableProvider variables)
|
||||
{
|
||||
ResourceLocation id = new ResourceLocation(variables.get("recipe").asString());
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ALTAR))
|
||||
Optional<? extends IRecipe<?>> recipeHandler = Minecraft.getInstance().world.getRecipeManager().getRecipe(id);
|
||||
if (recipeHandler.isPresent())
|
||||
{
|
||||
this.recipe = (RecipeBloodAltar) recipe;
|
||||
IRecipe<?> recipe = recipeHandler.get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.ALTAR))
|
||||
{
|
||||
this.recipe = (RecipeBloodAltar) recipe;
|
||||
}
|
||||
}
|
||||
if (this.recipe == null)
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook missing Blood Altar recipe " + id);
|
||||
LogManager.getLogger().warn("Guidebook missing Blood Altar recipe {}", id);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
package wayoftime.bloodmagic.compat.patchouli.processors;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Optional;
|
||||
import java.util.stream.Collectors;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
|
@ -25,14 +26,18 @@ public class TartaricForgeProcessor implements IComponentProcessor
|
|||
public void setup(IVariableProvider variables)
|
||||
{
|
||||
ResourceLocation id = new ResourceLocation(variables.get("recipe").asString());
|
||||
IRecipe<?> recipe = Minecraft.getInstance().world.getRecipeManager().getRecipe(id).get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.TARTARICFORGE))
|
||||
Optional<? extends IRecipe<?>> recipeHandler = Minecraft.getInstance().world.getRecipeManager().getRecipe(id);
|
||||
if (recipeHandler.isPresent())
|
||||
{
|
||||
this.recipe = (RecipeTartaricForge) recipe;
|
||||
IRecipe<?> recipe = recipeHandler.get();
|
||||
if (recipe.getType().equals(BloodMagicRecipeType.TARTARICFORGE))
|
||||
{
|
||||
this.recipe = (RecipeTartaricForge) recipe;
|
||||
}
|
||||
}
|
||||
if (this.recipe == null)
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook missing Hellfire Forge recipe " + id);
|
||||
LogManager.getLogger().warn("Guidebook missing Hellfire Forge recipe {}", id);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -45,7 +50,7 @@ public class TartaricForgeProcessor implements IComponentProcessor
|
|||
}
|
||||
if (key.startsWith("input"))
|
||||
{
|
||||
int index = Integer.parseInt(key.substring("input".length())) - 1;
|
||||
int index = Integer.parseInt(key.substring(5)) - 1;
|
||||
if (recipe.getInput().size() > index)
|
||||
{
|
||||
return IVariable.wrapList(Arrays.stream(recipe.getInput().get(index).getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
|
||||
|
@ -83,7 +88,7 @@ public class TartaricForgeProcessor implements IComponentProcessor
|
|||
// }
|
||||
} else
|
||||
{
|
||||
LogManager.getLogger().warn("Guidebook could not find a large enough Tartaric Gem for " + recipe.getId());
|
||||
LogManager.getLogger().warn("Guidebook could not find a large enough Tartaric Gem for {}", recipe.getId());
|
||||
return IVariable.from(new ItemStack(Items.BARRIER));
|
||||
|
||||
}
|
||||
|
|
Before Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1,017 B |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 39 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 48 KiB |
|
@ -19,7 +19,7 @@
|
|||
"pages": [
|
||||
{
|
||||
"type": "text",
|
||||
"text": "Unleashing $(l:demon_will/demon_will)$(item)Demon Will$() into the atmosphere was definitely an excellent idea. Not only has it proven most useful in empowering $(item)Rituals$(), you have also succesfully condensed it into a $(l:demon_will/crystallized_will)Crystal Cluster$(), and are wondering what to turn your eye to next. $(br2)These $(item)Crystals$() feel somehow... conflicted, to you. A certain $(l:rituals/rituals_list/ritual_crystal_split)Ritual$() may help coax them out into purer forms..."
|
||||
"text": "Unleashing $(l:demon_will/demon_will)$(item)Demon Will$() into the atmosphere was definitely an excellent idea. Not only has it proven most useful in empowering $(item)Rituals$(), you have also successfully condensed it into a $(l:demon_will/crystallized_will)Crystal Cluster$(), and are wondering what to turn your eye to next. $(br2)These $(item)Crystals$() feel somehow... conflicted, to you. A certain $(l:rituals/rituals_list/ritual_crystal_split)Ritual$() may help coax them out into purer forms..."
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
|
@ -45,6 +45,10 @@
|
|||
{
|
||||
"type": "text",
|
||||
"text": "You may be wondering: \"How on earth do I get this will into a usable form?\" Well, the answer is simple. Just place an EMPTY $(l:demon_will/soul_gem)Tartaric Gem$() into a $(l:demon_will/soul_forge)Hellfire Forge$() in the same chunk as a $(item)Demon Crucible$(), then feed the Demon Crucible with Will Crystals of the desired aspect. Your $(l:demon_will/soul_gem)Tartaric Gem$() will fill with that aspect of will. You can change which kind of will your $(raw)Sentient Tools$() use by right-clicking while holding them."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"text": "Note that your $(raw)Sentient Tools$() will take on the aspect of the largest amount of $(raw)Will$() in your inventory. If you're carrying 10 $(corrosive)Corrosive Will$() in one $(l:demon_will/soul_gem)Tartaric Gem$(), and 1,000 $(raw)Raw Will$() in another, then your sword will remain $(raw)Raw$()."
|
||||
}
|
||||
]
|
||||
}
|
|
@ -3,13 +3,7 @@
|
|||
"icon": "bloodmagic:reagentbinding",
|
||||
"category": "living_equipment",
|
||||
"priority": "true",
|
||||
"extra_recipe_mappings":[
|
||||
["bloodmagic:reagentbinding", 1],
|
||||
["bloodmagic:livinghelmet", 4],
|
||||
["bloodmagic:livingplate", 4],
|
||||
["bloodmagic:livingleggings", 4],
|
||||
["bloodmagic:livingboots", 4]
|
||||
],
|
||||
"extra_recipe_mappings":[["bloodmagic:reagentbinding", 1]],
|
||||
"pages": [
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
{
|
||||
"type": "crafting",
|
||||
"recipe": "bloodmagic:ritual_diviner_1",
|
||||
"anchor": "dusk",
|
||||
"text": "There is also an augmented version of the Ritual Diviner, for creating more powerful rituals."
|
||||
},
|
||||
{
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -22,11 +22,22 @@
|
|||
},
|
||||
"symetrical": false
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"text": "Splits apart a well-grown Raw crystal cluster into several aspected crystal clusters. For more information, see $(l:demon_will/aspected_will)Aspected Will$(). $(br2)$(blank)Blank Runes: 4 $(br)$(water)Water Runes: 1 $(br)$(air)Air Runes: 1 $(br)$(fire)Fire Runes: 1 $(br)$(earth)Earth Runes: 1 $(br)$()Dusk Runes: 12 $(br2)$()Total Runes: 20"
|
||||
"text": "Splits apart a well-grown Raw crystal cluster into several aspected crystal clusters. For additional setup information, see the next page. For more information on Aspected Will, see $(l:demon_will/aspected_will)Aspected Will$(). $(br2)$(blank)Blank Runes: 4 $(br)$(water)Water Runes: 1 $(br)$(air)Air Runes: 1 $(br)$(fire)Fire Runes: 1 $(br)$(earth)Earth Runes: 1 $(br)$()Dusk Runes: 12 $(br2)$()Total Runes: 20"
|
||||
},
|
||||
{
|
||||
"type": "image",
|
||||
"title": "Ritual Setup",
|
||||
"images": ["bloodmagic:images/entries/demon_will/will_splitting.png"],
|
||||
"border": true,
|
||||
"text": "Recommended setup for the Resonance of the Faceted Crystal ritual."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
"text": "This ritual takes a well grown (5 spires) $(l:bloodmagic:demon_will/crystallized_will)Raw Crystal Cluster$(/l) located 2 blocks above the $(item)Master Ritual Stone$(), and splits it into new single spires of each $(l:demon_will/aspected_will)Aspected Will$(/l) Crystal Clusters located directly above the 4 elemental Ritual Stones. This spacing is designed to accommodate a $(item)Demon Crystallizer$() on top of the $(item)Master Ritual Stone$().$(br2)For information on growing Demon Will Crystals, please see $(l:bloodmagic:demon_will/crystallized_will)Crystallized Will$(/l)."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
},
|
||||
"symetrical": false
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner)Ritual Diviner$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner)Ritual Diviner$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner)Ritual Diviner$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner#dusk)Ritual Diviner [Dusk]$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
},
|
||||
"symetrical": true
|
||||
},
|
||||
"text": "Use a Ritual Diviner for easier contruction."
|
||||
"text": "Use a $(l:bloodmagic:rituals/ritual_diviner)Ritual Diviner$(/l) for easier construction."
|
||||
},
|
||||
{
|
||||
"type": "text",
|
||||
|
|
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"name": "Dev Example - Double Array",
|
||||
"icon": "minecraft:barrier",
|
||||
"category": "utility",
|
||||
"pages": [
|
||||
{
|
||||
"type": "crafting_array",
|
||||
"heading": "Example Single Array",
|
||||
"recipe": "bloodmagic:array/living_helmet",
|
||||
"text": "This is an example using a single array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below."
|
||||
} ,
|
||||
{
|
||||
"type": "2x_crafting_array",
|
||||
"a.heading": "Example Double Array A",
|
||||
"a.recipe": "bloodmagic:array/living_plate",
|
||||
"b.heading": "Example Double Array B",
|
||||
"b.recipe": "bloodmagic:array/living_leggings",
|
||||
"b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
"name": "Dev Example - Double Functoinal Array",
|
||||
"icon": "minecraft:barrier",
|
||||
"category": "utility",
|
||||
"pages": [
|
||||
{
|
||||
"type": "functional_array",
|
||||
"heading": "Example Single Array",
|
||||
"recipe": "bloodmagic:array/movement",
|
||||
"image": "movementarray.png",
|
||||
"text": "This is an example using a single functional array. This template is the normal template.$(br2)The double array template uses the same template, just with an \"a\" recipe on top and a \"b\" recipe below."
|
||||
} ,
|
||||
{
|
||||
"type": "2x_functional_array",
|
||||
"a.heading": "Example Double Array A",
|
||||
"a.recipe": "bloodmagic:array/movement",
|
||||
"a.image": "movementarray.png",
|
||||
"b.heading": "Example Double Array B",
|
||||
"b.recipe": "bloodmagic:array/movement",
|
||||
"b.image": "movementarray.png",
|
||||
"b.text": "text under the B array. There's nothing stopping you from putting text under the A array, but it would overlap."
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|