Updated Sanguine Scientiem. (#1730)

* Initial work on Patchouli Processors

Created Processors for Blood Altar and Hellfire Forge recipes so the upcoming Patchouli Guide will be able to show the current recipes rather than having them hard coded to the mod's defaults.

Still to do: Alchemy Array, Alchemy Table, ARC, and to clean up these first-time passes.

* Improved Altar and Hellfire Forge process

Used Switch statements where possible, and made the multiple inputs on the Hellfire Forge handled under a single entry.  Changed key "LP" to lower case (also done on template file).

* Added item input Cycle.  Created Alchemy Array, and Forge + Array Processors.

* Added Alchemy Table Processor

* Various Processor Changes.

Added ARCProcessor.

Overhauled AlchemyTableProcessor.  It now only handles one recipe at a time.  The Templates were changed to use nested templates.

ForgeAndArrayProcessor was removed and replaced with similar nested templates.

* Removed uneeded comments from ARCProcessor.

* Uploaded New Book's Content

This book was written by Wrincewind and myself on #wrincewind/Blood-Magic-Manual.

Co-Authored-By: wrincewind <1457878+wrincewind@users.noreply.github.com>

* Book updates.

Co-Authored-By: wrincewind <1457878+wrincewind@users.noreply.github.com>

Co-authored-by: wrincewind <1457878+wrincewind@users.noreply.github.com>
This commit is contained in:
VT-14 2020-12-26 14:57:15 -05:00 committed by GitHub
parent 9d18353a2e
commit 2ec58c1e60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
132 changed files with 3517 additions and 373 deletions

View file

@ -0,0 +1,104 @@
package wayoftime.bloodmagic.compat.patchouli.processors;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.apache.logging.log4j.LogManager;
import net.minecraft.client.Minecraft;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.fluids.FluidStack;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.recipe.RecipeARC;
public class ARCProcessor implements IComponentProcessor
{
private RecipeARC recipe;
@Override
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))
{
this.recipe = (RecipeARC) recipe;
}
if (this.recipe == null)
{
LogManager.getLogger().warn("Guidebook missing Alchemical Reaction Chamber recipe " + id);
}
}
@Override
public IVariable process(String key)
{
if (recipe == null)
{
return null;
} else if (key.startsWith("output"))
{
int index = Integer.parseInt(key.substring("output".length())) - 1;
if (recipe.getAllListedOutputs().size() > index)
{
return IVariable.from(recipe.getAllListedOutputs().get(index));
} else
{
return null;
}
} else if (key.startsWith("chance"))
{
int index = Integer.parseInt(key.substring("chance".length())) - 2; // Index 0 = 2nd output.
if (recipe.getAllOutputChances().length > index)
{
double chance = recipe.getAllOutputChances()[index] * 100;
if (chance < 1)
{
return IVariable.wrap("<1");
}
return IVariable.wrap(Math.round(chance));
}
} else if (key.startsWith("show_chance"))
{
int index = Integer.parseInt(key.substring("show_chance".length())) - 2; // Index 0 = 2nd output.
if (recipe.getAllOutputChances().length > index)
{
return IVariable.wrap(true);
}
}
switch (key)
{
case "show_fluid_tooltip":
if (recipe.getFluidIngredient() != null || recipe.getFluidOutput() != FluidStack.EMPTY)
{
return IVariable.wrap(true);
}
return IVariable.wrap(false);
case "input":
return IVariable.wrapList(Arrays.stream(recipe.getInput().getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
case "tool":
return IVariable.wrapList(Arrays.stream(recipe.getTool().getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
case "tooltip_fluid_input":
if (recipe.getFluidIngredient() != null)
{
FluidStack fluid = recipe.getFluidIngredient().getRepresentations().get(0);
return IVariable.wrap(fluid.getAmount() + "mb of " + fluid.getTranslationKey());
}
return IVariable.wrap("None");
case "tooltip_fluid_output":
if (recipe.getFluidOutput() != FluidStack.EMPTY)
{
FluidStack fluid = recipe.getFluidOutput();
return IVariable.wrap(fluid.getAmount() + "mb of " + fluid.getTranslationKey());
}
return IVariable.wrap("None");
default:
return null;
}
}
}

View file

@ -0,0 +1,56 @@
package wayoftime.bloodmagic.compat.patchouli.processors;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.apache.logging.log4j.LogManager;
import net.minecraft.client.Minecraft;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.ResourceLocation;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.recipe.RecipeAlchemyArray;
public class AlchemyArrayProcessor implements IComponentProcessor
{
private RecipeAlchemyArray recipe;
@Override
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))
{
this.recipe = (RecipeAlchemyArray) recipe;
}
if (this.recipe == null)
{
LogManager.getLogger().warn("Guidebook missing Alchemy Array recipe " + id);
}
}
@Override
public IVariable process(String key)
{
if (recipe == null)
{
return null;
}
switch (key)
{
case "baseinput":
return IVariable.wrapList(Arrays.stream(recipe.getBaseInput().getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
case "addedinput":
return IVariable.wrapList(Arrays.stream(recipe.getAddedInput().getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
case "output":
return IVariable.from(recipe.getOutput());
default:
return null;
}
}
}

View file

@ -0,0 +1,89 @@
package wayoftime.bloodmagic.compat.patchouli.processors;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.apache.logging.log4j.LogManager;
import net.minecraft.client.Minecraft;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.ResourceLocation;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import wayoftime.bloodmagic.common.item.BloodMagicItems;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.recipe.RecipeAlchemyTable;
public class AlchemyTableProcessor implements IComponentProcessor
{
private RecipeAlchemyTable recipe;
@Override
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))
{
this.recipe = (RecipeAlchemyTable) recipe;
}
if (this.recipe == null)
{
LogManager.getLogger().warn("Guidebook missing Alchemy Table recipe " + id);
}
}
@Override
public IVariable process(String key)
{
if (recipe == null)
{
return null;
} else if (key.startsWith("input"))
{
int index = Integer.parseInt(key.substring("input".length())) - 1;
if (recipe.getInput().size() > index)
{
return IVariable.wrapList(Arrays.stream(recipe.getInput().get(index).getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
} else
{
return null;
}
}
switch (key)
{
case "output":
return IVariable.from(recipe.getOutput());
case "syphon":
return IVariable.wrap(recipe.getSyphon());
case "time":
return IVariable.wrap(recipe.getTicks());
case "orb":
switch (recipe.getMinimumTier())
{
case 0: // same as Case 1
case 1:
return IVariable.from(new ItemStack(BloodMagicItems.WEAK_BLOOD_ORB.get()));
case 2:
return IVariable.from(new ItemStack(BloodMagicItems.APPRENTICE_BLOOD_ORB.get()));
case 3:
return IVariable.from(new ItemStack(BloodMagicItems.MAGICIAN_BLOOD_ORB.get()));
case 4:
return IVariable.from(new ItemStack(BloodMagicItems.MASTER_BLOOD_ORB.get()));
// case 5: return IVariable.from(new
// ItemStack(BloodMagicItems.ARCHMAGES_BLOOD_ORB.get()));
// 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());
return IVariable.from(new ItemStack(Items.BARRIER));
}
default:
return null;
}
}
}

View file

@ -0,0 +1,58 @@
package wayoftime.bloodmagic.compat.patchouli.processors;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.apache.logging.log4j.LogManager;
import net.minecraft.client.Minecraft;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.ResourceLocation;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.recipe.RecipeBloodAltar;
public class BloodAltarProcessor implements IComponentProcessor
{
private RecipeBloodAltar recipe;
@Override
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))
{
this.recipe = (RecipeBloodAltar) recipe;
}
if (this.recipe == null)
{
LogManager.getLogger().warn("Guidebook missing Blood Altar recipe " + id);
}
}
@Override
public IVariable process(String key)
{
if (recipe == null)
{
return null;
}
switch (key)
{
case "input":
return IVariable.wrapList(Arrays.stream(recipe.getInput().getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
case "output":
return IVariable.from(recipe.getOutput());
case "tier":
return IVariable.wrap(recipe.getMinimumTier() + 1);
case "lp":
return IVariable.wrap(recipe.getSyphon());
default:
return null;
}
}
}

View file

@ -0,0 +1,95 @@
package wayoftime.bloodmagic.compat.patchouli.processors;
import java.util.Arrays;
import java.util.stream.Collectors;
import org.apache.logging.log4j.LogManager;
import net.minecraft.client.Minecraft;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.util.ResourceLocation;
import vazkii.patchouli.api.IComponentProcessor;
import vazkii.patchouli.api.IVariable;
import vazkii.patchouli.api.IVariableProvider;
import wayoftime.bloodmagic.common.item.BloodMagicItems;
import wayoftime.bloodmagic.common.recipe.BloodMagicRecipeType;
import wayoftime.bloodmagic.recipe.RecipeTartaricForge;
public class TartaricForgeProcessor implements IComponentProcessor
{
private RecipeTartaricForge recipe;
@Override
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))
{
this.recipe = (RecipeTartaricForge) recipe;
}
if (this.recipe == null)
{
LogManager.getLogger().warn("Guidebook missing Hellfire Forge recipe " + id);
}
}
@Override
public IVariable process(String key)
{
if (recipe == null)
{
return null;
}
if (key.startsWith("input"))
{
int index = Integer.parseInt(key.substring("input".length())) - 1;
if (recipe.getInput().size() > index)
{
return IVariable.wrapList(Arrays.stream(recipe.getInput().get(index).getMatchingStacks()).map(IVariable::from).collect(Collectors.toList()));
} else
{
return null;
}
}
switch (key)
{
case "output":
return IVariable.from(recipe.getOutput());
case "willrequired":
return IVariable.wrap(recipe.getMinimumSouls());
case "willdrain":
return IVariable.wrap(recipe.getSoulDrain());
case "will":
if (recipe.getMinimumSouls() <= 1)
{
return IVariable.from(new ItemStack(BloodMagicItems.MONSTER_SOUL_RAW.get()));
} else if (recipe.getMinimumSouls() <= 64)
{
return IVariable.from(new ItemStack(BloodMagicItems.PETTY_GEM.get()));
} else if (recipe.getMinimumSouls() <= 256)
{
return IVariable.from(new ItemStack(BloodMagicItems.LESSER_GEM.get()));
} else if (recipe.getMinimumSouls() <= 1024)
{
return IVariable.from(new ItemStack(BloodMagicItems.COMMON_GEM.get()));
} else if (recipe.getMinimumSouls() <= 4096)
{
return IVariable.from(new ItemStack(BloodMagicItems.GREATER_GEM.get()));
// } else if (recipe.getMinimumSouls() <= 16384) {
// return IVariable.from(new ItemStack(BloodMagicItems.GRAND_GEM.get()));
// }
} else
{
LogManager.getLogger().warn("Guidebook could not find a large enough Tartaric Gem for " + recipe.getId());
return IVariable.from(new ItemStack(Items.BARRIER));
}
default:
return null;
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,017 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 70 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 63 KiB

View file

@ -1,6 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "bloodmagic:item/sanguinebook"
"layer0": "bloodmagic:item/sanguine_scientiem_guide_book"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 339 B

View file

@ -1,9 +1,22 @@
{
"name": "guide.bloodmagic.name",
"subtitle": "Alchemical Wizardry",
"landing_text": "guide.bloodmagic.landing_text",
"version": 1,
"landing_text": "Welcome to $(6)Blood Magic$()! $(l:utility/nyi)A lot of stuff$() isn't yet implemented, so please excuse our dust. $(br)Click $(l:utility/getting_started)HERE$() to get started. If you find any bugs, please report them on our $(l:https://github.com/WayofTime/BloodMagic/issues)Github$().",
"book_texture": "patchouli:textures/gui/book_red.png",
"filler_texture": "bloodmagic:textures/gui/patchouli_book/page_filler.png",
"creative_tab": "bloodmagictab",
"model": "bloodmagic:book",
"show_progress": true
"show_progress": true,
"macros": {
"$(water)": "$(#0000aa)",
"$(air)": "$(#aaaa00)",
"$(fire)": "$(#aa0000)",
"$(earth)": "$(#00aa00)",
"$(blank)": "$(#888888)",
"$(steadfast)": "$(#0000aa)",
"$(destructive)": "$(#aaaa00)",
"$(vengeful)": "$(#aa0000)",
"$(corrosive)": "$(#00aa00)",
"$(raw)": "$(#36C6C6)"
}
}

View file

@ -0,0 +1,6 @@
{
"name": "Alchemy Arrays",
"description": "Alchemy Arrays are simple effects that originate from circles that are drawn on the ground using $(l:alchemy_array/arcane_ash)Arcane Ashes.$(/l) They are simple to build and can be really useful in both early game and late game applications.",
"icon": "bloodmagic:arcaneashes",
"sortnum": 3
}

View file

@ -1,6 +0,0 @@
{
"name": "Alchemy Arrays",
"description": "Alchemy Arrays are simple effects that originate from circles that are drawn on the ground using $(l:alchemyarray/arcaneash)Arcane Ashes.$(/l) While they are simple to build, they can be really useful in both early game and late game applications.",
"icon": "bloodmagic:arcaneashes",
"sortnum": 3
}

View file

@ -1,6 +1,6 @@
{
"name": "Blood Altars",
"description": "",
"description": "One of the central concepts of Blood Magic is building a glorious ziggurat to focus your power. These pages will guide you in the construction of this masterwork.",
"icon": "bloodmagic:altar",
"sortnum": 2
}

View file

@ -0,0 +1,6 @@
{
"name": "Blood Runes",
"description": "There's lots of different runes. They do cool stuff! Take your pick.",
"icon": "bloodmagic:blankrune",
"parent": "altar"
}

View file

@ -0,0 +1,6 @@
{
"name": "Demon Will",
"description": "$(item)Demon Will$() is your gateway into Blood Magic. Once you have gathered some with a $(l:demon_will/soul_snare)$(item)Soul Snare$(/l), you will be able to craft your first $(l:alchemy_array/arcane_ash)$(item)Arcane Ashes$(), a $(l:demon_will/soul_gem)$(item)Petty Tartaric Gem$() and a $(l:demon_will/sentient_sword)$(item)Sentient Sword$(/l)$().",
"icon": "bloodmagic:basemonstersoul",
"sortnum": 1
}

View file

@ -1,6 +0,0 @@
{
"name": "Demon Will",
"description": "",
"icon": "bloodmagic:basemonstersoul",
"sortnum": 1
}

View file

@ -0,0 +1,6 @@
{
"name": "Living Equipment",
"description": "with some $(item)Arcane Ashes$() and a handful of this new $(item)Binding Reagent$(), a whole world of defense and utility has opened up before you.",
"icon": "bloodmagic:livinghelmet",
"sortnum": 6
}

View file

@ -0,0 +1,6 @@
{
"name": "Rituals",
"description": "Rituals consume LP from your $(l:altar/soul_network)Soul Network$(/l) in order to do a variety of tasks. $(br2)For information on specific rituals, click the Master Ritual Stone below.$(br2)>>> <<<",
"icon": "bloodmagic:ritualdiviner",
"sortnum": 5
}

View file

@ -0,0 +1,6 @@
{
"name": "List of Rituals",
"description": "[Available Rituals]",
"icon": "bloodmagic:masterritualstone",
"parent": "rituals"
}

View file

@ -1,6 +1,6 @@
{
"name": "Sigils",
"description": "",
"description": "$(item)Sigils$() are formed using an $(l:alchemy_array/crafting_array)Alchemy Array$(), some form of $(item)Reagent$() and a $(item)Slate$(). They draw LP from your $(altar/soul_network)Soul Network$() in order to perform all sorts of useful tasks.",
"icon": "bloodmagic:divinationsigil",
"sortnum": 4
}

View file

@ -1,5 +1,5 @@
{
"name": "Utility Blocks",
"name": "Utility Blocks & Items",
"description": "",
"icon": "bloodmagic:incensealtar",
"sortnum": 5

View file

@ -0,0 +1,36 @@
{
"name": "Alchemy Array Basics",
"icon": "bloodmagic:arcaneashes",
"category": "alchemy_array",
"extra_recipe_mappings":[["bloodmagic:arcaneashes", 1]],
"pages": [
{
"type": "text",
"text": "$(item)Arcane Ashes$() is an item that is pivotal in the creation of Alchemy Arrays. $(item)Arcane Ashes$() can be crafted in the $(l:demon_will/soul_forge)Hellfire Forge$(/l) using some early game items."
},
{
"type": "crafting_soulforge",
"heading": "Arcane Ashes",
"recipe": "bloodmagic:soulforge/arcaneashes"
},
{
"type": "text",
"text": "In order to create an Alchemy Array, right click the top of the ground with the $(item)Arcane Ashes$() (although any solid block face works) - this will consume 1 durability out of 20 from the $(item)Arcane Ashes$() and draw a simple Alchemy Array, that by itself has no effects.$(bl2)When you click on the Alchemy Array, it will consume a single item from the stack in your hand and hold it in the array. These items are then used to determine the Alchemy Array's effect."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/alchemy_array/simple_array.png",
"bloodmagic:images/entries/alchemy_array/divination_array_1.png",
"bloodmagic:images/entries/alchemy_array/divination_array_2.png"
],
"title": "Alchemy Array",
"border": true,
"text": "Alchemy Array showing array with: no inputs; only the base item; both base and catalyst."
},
{
"type": "text",
"text": "Each effect requires two items: a base and a catalyst. The base is the first item that you click the array with after it is drawn, and the catalyst is the second item. When you apply the input, the design of the array will change if it is valid, and the array will start activating once you apply the catalyst.$(br2)You can have arrays that range from $(l:alchemy_array/crafting_array)crafting arrays$(/l) to even teleportation arrays."
}
]
}

View file

@ -1,7 +1,7 @@
{
"name": "Crafting with Arrays",
"icon": "bloodmagic:divinationsigil",
"category": "alchemyarray",
"category": "alchemy_array",
"pages": [
{
"type": "text",

View file

@ -0,0 +1,16 @@
{
"name": "Movement Array",
"icon": "minecraft:feather",
"category": "alchemy_array",
"pages": [
{
"type": "text",
"text": "The Movement Arrays are a pair of arrays that thows players, mobs, items, etc in a specific direction. One will throw the items horizontally, while the other will throw them vertically.$(br2)Note: At this time, only the horizontal Array has been implemented, and it is the only functional non-crafting array currently in the mod."
},
{
"type": "functional_array",
"recipe": "bloodmagic:array/movement",
"image": "movementarray.png"
}
]
}

View file

@ -1,30 +0,0 @@
{
"name": "Alchemy Array Basics",
"icon": "bloodmagic:arcaneashes",
"category": "alchemyarray",
"pages": [
{
"type": "text",
"text": "$(item)Arcane Ashes$() is an item that is pivotal in the creation of Alchemy Arrays. $(item)Arcane Ashes$() can be crafted in the $(l:demonwill/soulforge)Hellfire Forge$(/l) using some early game items. The recipe can be found in JEI."
},
{
"type": "text",
"text": "In order to create an Alchemy Array, right click the top of the ground with the $(item)Arcane Ashes$() (although any solid block face works) - this will consume 1 durability out of 20 from the $(item)Arcane Ashes$() and draw a simple Alchemy Array, that by itself has no effects.$(bl2)When you click on the Alchemy Array, it will consume a single item from the stack in your hand and hold it in the array. These items are then used to determine the Alchemy Array's effect."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/alchemyarray/simple_array.png",
"bloodmagic:images/entries/alchemyarray/divination_array_1.png",
"bloodmagic:images/entries/alchemyarray/divination_array_2.png"
],
"title": "Alchemy Array",
"border": true,
"text": "Alchemy Array showing array with: no inputs; only the base item; both base and catalyst."
},
{
"type": "text",
"text": "Each effect requires two items: a base and a catalyst. The base is the first item that you click the array with after it is drawn, and the catalyst is the second item. When you apply the input, the design of the array will change if it is valid, and the array will start activating once you apply the catalyst.$(br2)You can have arrays that range from $(l:alchemyarray/craftingarray)crafting arrays$(/l) to even teleportation arrays."
}
]
}

View file

@ -0,0 +1,176 @@
{
"name": "The Blood Altar",
"icon": "bloodmagic:altar",
"category": "altar",
"priority": "true",
"extra_recipe_mappings":[
["bloodmagic:daggerofsacrifice", 13]
],
"pages": [
{
"type": "text",
"text": "The $(item)Blood Altar$() is the central block of the mod, able to convert raw blood into pure life essence. While it may start off small and insignificant, its strength and size grows throughout the mod, acting as a cornerstone for most of your power."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_altar"
},
{
"type": "text",
"text": "When placed into the world, the Blood Altar converts $(1)Life Essence$() into power to transfigure items placed into it. By right-clicking on the Altar, you may insert one item from your hand into the Altar's internal inventory. Right-clicking with an empty hand will extract the item."
},
{
"type": "multiblock",
"name": "Tier 1 Blood Altar",
"multiblock":{
"pattern":[
["0"],
["_"]
],
"mapping":{
"0": "bloodmagic:altar"
},
"symmetrical": true
},
"text": "The Tier 1 Blood Altar, which has no runes."
},
{
"type": "text",
"text": "In order for you to add $(1)Life Essence$(), measured as \"LP\", you first have to craft a $(item)Sacrificial Knife$(). By right-clicking in the air with the knife, you can \"extract\" 200LP for the cost of one heart, placing it into a nearby Altar. The Altar starts with a maximum capacity of 10,000LP, and the blood level in the basin indicates the percentage filled. The $(l:sigil/divination)Divination Sigil$(/l) allows more detailed information about the Altar."
},
{
"type": "crafting",
"recipe": "bloodmagic:sacrificial_dagger",
"anchor": "knife",
"text": "Keep in mind that 10% of the total LP the altar can hold will be absorbed into an invisible internal 'tank' used for extracting and inserting Life Essence into the Altar."
},
{
"type": "text",
"text": "The Blood Altar will attempt to start to craft as soon as an item is placed inside by a player (or after a periodic 5 seconds). The LP inside of the Altar will slowly drain, indicated by red particles, transforming the item. If there is no LP in the Altar, gray smoke will appear to indicate that the Altar is losing progress instead. Once enough LP is consumed (cost multiplied by number in the item stack), the full stack will be transformed into a new item."
},
{
"type": "text",
"text": "The first item that you will want to craft is a $(l:altar/soul_network)Weak Blood Orb$(/l), which by default is a diamond plus 2000LP inside of a Tier 1 Blood Altar. All items that can be crafted by the Blood Altar can be found using Just Enough Items (JEI)."
},
{
"type": "text",
"text": "To upgrade the Blood Altar, you need to craft $(item)Blood Runes$() and place them around the Altar. Blood Runes act as upgrades to the Altar, and by using more advanced versions of the Blood Runes you can confer different effects on the Altar. The basic version, the $(item)Blank Rune$(), does not give any upgrades barring upgrading the Tier of the Altar."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_rune_blank"
},
{
"type": "text",
"text": "In order to upgrade the Blood Altar to Tier 2, you must place 8 $(item)Blood Runes$() around the Altar. The runes in the cardinals can be upgraded, but the corner runes cannot act as upgrade runes until Tier 3."
},
{
"type": "multiblock",
"name": "Tier 2 Blood Altar",
"multiblock": {
"pattern":[
["___", "_0_", "___"],
["___", "_A_", "___"],
["BRB", "R_R", "BRB"]
],
"mapping":{
"A": "bloodmagic:altar",
"B": "bloodmagic:blankrune",
"R": "#bloodmagic:altar_components/bloodrune"
},
"symmetrical": true
},
"text": "The Tier 2 Blood Altar, which has 8 total runes."
},
{
"type": "text",
"text": "Now that you have a Tier 2 Altar, you can look into getting blood from somewhere other than yourself. The $(item)Dagger of Sacrifice$() will allow you to kill any mob (monster or passive) that stands within 2 blocks of your Altar, instantly killing them and granting you a decent sum of LP. You can increase the amount you get per kill with $(l:altar/blood_rune/sacrifice_rune)Runes of Sacrifice$(). Different entities give different amounts of LP. Check your configs for more info."
},
{
"type": "crafting_altar",
"heading": "Dagger of Sacrifice",
"recipe": "bloodmagic:altar/daggerofsacrifice",
"text": "Slaughtering villagers for fun and profit!"
},
{
"type": "text",
"text": "To upgrade the Blood Altar to Tier 3, place 5 $(item)Blood Runes$() one block down and two blocks away from the previous set of runes along each edge. Then place two blocks (indicated by the $(item)Stone Bricks$()) in each corner, starting above the new ring of runes, and then cap each pillar with $(item)Glowstone Blocks$().$(br)To check that it is successfully upgraded, use a $(l:sigil/divination)Divination Sigil$(/l) to check the tier. Note that any non-air block can be used for the pillars below the Glowstone."
},
{
"type": "multiblock",
"name": "Tier 3 Blood Altar",
"multiblock": {
"pattern":[
["G_____G", "_______", "_______", "___0___", "_______", "_______", "G_____G"],
["P_____P", "_______", "_______", "___A___", "_______", "_______", "P_____P"],
["P_____P", "_______", "__RRR__", "__R_R__", "__RRR__", "_______", "P_____P"],
["_RRRRR_", "R_____R", "R_____R", "R_____R", "R_____R", "R_____R", "_RRRRR_"]
],
"mapping":{
"A": "bloodmagic:altar",
"R": "#bloodmagic:altar_components/bloodrune",
"G": "#bloodmagic:altar_components/glowstone",
"P": "minecraft:stone_bricks"
},
"symmetrical": true
},
"text": "The Tier 3 Blood Altar, which has 28 total runes."
},
{
"type": "text",
"text": "To upgrade the Blood Altar to Tier 4, place 7 $(item) Blood Runes$() one block down and two blocks away from the previous set of runes along each edge. Then place four solid blocks in each corner, starting above the new ring of runes, and then cap each pillar with $(l:utility/bloodstone_bricks)Bloodstone Bricks$(/l) and/or $(l:utility/bloodstone_bricks)Large Bloodstone Bricks$(/l)."
},
{
"type": "multiblock",
"name": "Tier 4 Blood Altar",
"multiblock": {
"pattern":[
["B_________B", "___________", "___________", "___________", "___________", "___________", "___________", "___________", "___________", "___________", "B_________B"],
["P_________P", "___________", "__G_____G__", "___________", "___________", "_____0_____", "___________", "___________", "__G_____G__", "___________", "P_________P"],
["P_________P", "___________", "__P_____P__", "___________", "___________", "_____A_____", "___________", "___________", "__P_____P__", "___________", "P_________P"],
["P_________P", "___________", "__P_____P__", "___________", "____RRR____", "____R_R____", "____RRR____", "___________", "__P_____P__", "___________", "P_________P"],
["P_________P", "___________", "___RRRRR___", "__R_____R__", "__R_____R__", "__R_____R__", "__R_____R__", "__R_____R__", "___RRRRR___", "___________", "P_________P"],
["__RRRRRRR__", "___________", "R_________R", "R_________R", "R_________R", "R_________R", "R_________R", "R_________R", "R_________R", "___________", "__RRRRRRR__"]
],
"mapping":{
"A": "bloodmagic:altar",
"R": "#bloodmagic:altar_components/bloodrune",
"B": "#bloodmagic:altar_components/bloodstone",
"G": "#bloodmagic:altar_components/glowstone",
"P": "minecraft:stone_bricks"
},
"symmetrical": true
},
"text": "The Tier 4 Blood Altar, which has 56 total runes."
},
{
"type": "text",
"text": "[WIP Notes]$(br)[Tier-5 has No Content yet!]"
},
{
"type": "multiblock",
"name": "Tier 5 Blood Altar",
"multiblock": {
"pattern":[
["_________________", "_________________", "_________________", "___B_________B___", "_________________", "_________________", "_________________", "_________________", "_________________", "_________________", "_________________", "_________________", "_________________", "___B_________B___", "_________________", "_________________", "_________________"],
["_________________", "_________________", "_________________", "___P_________P___", "_________________", "_____G_____G_____", "_________________", "_________________", "________0________", "_________________", "_________________", "_____G_____G_____", "_________________", "___P_________P___", "_________________", "_________________", "_________________"],
["_________________", "_________________", "_________________", "___P_________P___", "_________________", "_____P_____P_____", "_________________", "_________________", "________A________", "_________________", "_________________", "_____P_____P_____", "_________________", "___P_________P___", "_________________", "_________________", "_________________"],
["_________________", "_________________", "_________________", "___P_________P___", "_________________", "_____P_____P_____", "_________________", "_______RRR_______", "_______R_R_______", "_______RRR_______", "_________________", "_____P_____P_____", "_________________", "___P_________P___", "_________________", "_________________", "_________________"],
["_________________", "_________________", "_________________", "___P_________P___", "_________________", "______RRRRR______", "_____R_____R_____", "_____R_____R_____", "_____R_____R_____", "_____R_____R_____", "_____R_____R_____", "______RRRRR______", "_________________", "___P_________P___", "_________________", "_________________", "_________________"],
["N_______________N", "_________________", "_________________", "_____RRRRRRR_____", "_________________", "___R_________R___", "___R_________R___", "___R_________R___", "___R_________R___", "___R_________R___", "___R_________R___", "___R_________R___", "_________________", "_____RRRRRRR_____", "_________________", "_________________", "N_______________N"],
["__RRRRRRRRRRRRR__", "_________________", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "R_______________R", "_________________", "__RRRRRRRRRRRRR__"]
],
"mapping":{
"A": "bloodmagic:altar",
"R": "#bloodmagic:altar_components/bloodrune",
"B": "#bloodmagic:altar_components/bloodstone",
"G": "#bloodmagic:altar_components/glowstone",
"N": "#bloodmagic:altar_components/beacon",
"P": "minecraft:stone_bricks"
},
"symmetrical": true
},
"text": "The Tier 5 Blood Altar, which has 108 total runes."
}
]
}

View file

@ -1,11 +1,11 @@
{
"name": "Acceleration Rune",
"icon": "bloodmagic:accelerationrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",
"text": "The $(item)Acceleration Rune$() increases the rate of a couple operations. While normally the operations of the $(l:altar/charging_rune)Charging Rune$(/l) and $(l:altar/dislocation_rune)Displacement Rune$(/l) occur every 20 ticks, one tick of the delay is removed per rune, down to a minimum of 1 operation per tick."
"text": "The $(item)Acceleration Rune$() increases the rate of a couple operations. While normally the operations of the $(l:altar/blood_rune/charging_rune)Charging Rune$(/l) and $(l:altar/blood_rune/dislocation_rune)Displacement Rune$(/l) occur every 20 ticks, one tick of the delay is removed per rune, down to a minimum of 1 operation per tick."
},
{
"type": "crafting",

View file

@ -1,11 +1,11 @@
{
"name": "Rune of Aug. Capacity",
"icon": "bloodmagic:bettercapacityrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",
"text": "The $(item)Rune of Augmented Capacity$() increases the capacity of the $(l:altar/bloodaltar)Blood Altar$(/l) by a multiplicative +7.5% per rune. The Augmented Capacity runes apply $(o)after$() the regular Capacity runes."
"text": "The $(item)Rune of Augmented Capacity$() increases the capacity of the $(l:altar/bloodaltar)Blood Altar$(/l) by a multiplicative +7.5% per rune. The Augmented Capacity runes apply $(o)after$() the regular $(l:altar/blood_rune/capacity_rune)Capacity runes$()."
},
{
"type": "crafting",

View file

@ -1,7 +1,7 @@
{
"name": "Rune of Capacity",
"icon": "bloodmagic:altarcapacityrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",

View file

@ -0,0 +1,19 @@
{
"name": "Charging Rune",
"icon": "bloodmagic:chargingrune",
"category": "blood_rune",
"pages": [
{
"type": "text",
"text": "The $(item)Charging Rune$() is a unique Rune upgrade. When the $(l:altar/blood_altar)Blood Altar$() is not crafting nor filling a $(l:altar/soul_network)Blood Orb$(), it will syphon LP to charge an internal buffer. When next an item is placed inside of the Blood Altar, it will instantaneously consume the stored charge and apply it to the crafting of the item at a 1:1 ratio."
},
{
"type": "text",
"text": " The Blood Altar does a charging tick once per 20 in-game ticks, which is reduced by 1 per $(l:altar/blood_rune/acceleration_rune)Acceleration Rune.$(/l)$(br) The speed that the Blood Altar charges at per charging tick is: [10LP x $(l:altar/blood_rune/charging_rune)Charging Runes$() x (1 + $(l:altar/blood_rune/speed_rune)Speed Runes$()/10)] $(br)The maximum charge that a Blood Altar can hold is 1000LP per $(item)Charging Rune$(), which is then multiplied by: [(capacity of the main Blood Altar tank)/20000] if that value is above 1."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_rune_charging"
}
]
}

View file

@ -1,11 +1,11 @@
{
"name": "Displacement Rune",
"icon": "bloodmagic:dislocationrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",
"text": "The $(item)Displacement Rune$() increases the flowrate "
"text": "The $(item)Displacement Rune$() increases the flowrate of LP into and out of the altar."
},
{
"type": "crafting",

View file

@ -1,7 +1,7 @@
{
"name": "Rune of The Orb",
"icon": "bloodmagic:orbcapacityrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",

View file

@ -1,7 +1,7 @@
{
"name": "Rune of Sacrifice",
"icon": "bloodmagic:sacrificerune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",

View file

@ -1,7 +1,7 @@
{
"name": "Rune of Self Sacrifice",
"icon": "bloodmagic:selfsacrificerune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",

View file

@ -1,7 +1,7 @@
{
"name": "Speed Rune",
"icon": "bloodmagic:speedrune",
"category": "altar",
"category": "blood_rune",
"pages": [
{
"type": "text",

View file

@ -1,95 +0,0 @@
{
"name": "The Blood Altar",
"icon": "bloodmagic:altar",
"category": "altar",
"pages": [
{
"type": "text",
"text": "The $(item)Blood Altar$() is the central block of the mod, able to convert raw blood into pure life essence. While it may start off small and insignificant, its strength and size grows throughout the mod, acting as a cornerstone for most of your power."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_altar"
},
{
"type": "text",
"text": "When placed into the world, the Blood Altar converts $(1)Life Essence$() into power to transfigure items placed into it. By right-clicking on the Altar, you may insert one item from your hand into the Altar's internal inventory. Right-clicking with an empty hand will extract the item."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/altar/altar_t1.png"
],
"title": "Tier 1 Altar",
"border": true,
"text": "The Tier 1 Blood Altar, which has no runes."
},
{
"type": "text",
"text": "In order for you to add $(1)Life Essence$(), measured as \"LP\", you first have to craft a $(item)Sacrificial Knife$(). By right-clicking in the air with the knife, you can \"extract\" 200LP for the cost of one heart, placing it into a nearby Altar. The Altar starts with a maximum capacity of 10,000LP, and the blood level in the basin indicates the percentage filled. The $(l:sigil/divination)Divination Sigil$(/l) allows more detailed information about the Altar."
},
{
"type": "crafting",
"recipe": "bloodmagic:sacrificial_dagger",
"anchor": "knife"
},
{
"type": "text",
"text": "The Blood Altar will attempt to start to craft as soon as an item is placed inside by a player (or after a periodic 5 seconds). The LP inside of the Altar will slowly drain, indicated by red particles, transforming the item. If there is no LP in the Altar, gray smoke will appear to indicate that the Altar is losing progress instead. Once enough LP is consumed (cost multiplied by number in the item stack), the full stack will be transformed into a new item."
},
{
"type": "text",
"text": "The first item that you will want to craft is a $(l:altar/soulnetwork)Weak Blood Orb$(/l), which by default is a diamond plus 2000LP inside of a Tier 1 Blood Altar. All items that can be crafted by the Blood Altar can be found using Just Enough Items (JEI)."
},
{
"type": "text",
"text": "To upgrade the Blood Altar, you need to craft $(item)Blood Runes$() and place them around the Altar. Blood Runes act as upgrades to the Altar, and by using more advanced versions of the Blood Runes you can confer different effects on the Altar. The basic version, the $(item)Blank Rune$(), does not give any upgrades barring upgrading the Tier of the Altar."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_rune_blank"
},
{
"type": "text",
"text": "In order to upgrade the Blood Altar to Tier 2, you must place 8 $(item)Blood Runes$() around the Altar. The runes in the cardinals can be upgraded, but the corner runes cannot act as upgrade runes until Tier 3."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/altar/altar_t2_1.png",
"bloodmagic:images/entries/altar/altar_t2_2.png"
],
"title": "Tier 2 Altar",
"border": true,
"text": "The Tier 2 Blood Altar, which has 8 total runes."
},
{
"type": "text",
"text": "To upgrade the Blood Altar to Tier 3, place 5 $(item) Blood Runes$() one block down and two blocks away from the previous set of runes along each edge. Then place two solid blocks (indicated by the $(item)Stone Bricks$()) in each corner, starting above the new ring of runes, and then cap each pillar with $(item)Glowstone Blocks$().$(br2) To check that it is successfully upgraded, use a $(l:sigil/divination)Divination Sigil$(/l) to check the tier."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/altar/altar_t3_1.png",
"bloodmagic:images/entries/altar/altar_t3_2.png"
],
"title": "Tier 3 Altar",
"border": true,
"text": "The Tier 3 Blood Altar, which has 28 total runes."
},
{
"type": "text",
"text": "To upgrade the Blood Altar to Tier 4, place 7 $(item) Blood Runes$() one block down and two blocks away from the previous set of runes along each edge. Then place four solid blocks in each corner, starting above the new ring of runes, and then cap each pillar with $(item)Bloodstone Bricks$() and/or $(item)Large Bloodstone Bricks$()."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/altar/altar_t4_1.png",
"bloodmagic:images/entries/altar/altar_t4_2.png"
],
"title": "Tier 4 Altar",
"border": true,
"text": "The Tier 4 Blood Altar, which has 56 total runes."
}
]
}

View file

@ -1,19 +0,0 @@
{
"name": "Charging Rune",
"icon": "bloodmagic:chargingrune",
"category": "altar",
"pages": [
{
"type": "text",
"text": "The $(item)Charging Rune$() is a unique Rune upgrade. When the Blood Altar is not crafting nor filling a $(item)Blood Orb$(), it will syphon LP to charge an internal buffer. When next an item is placed inside of the Blood Altar, it will instantaneously consume the stored charge and apply it to the crafting of the item at a 1:1 ratio."
},
{
"type": "text",
"text": " The Blood Altar does a charging tick once per 20 in-game ticks, which is reduced by 1 per $(l:altar/acceleration_rune)Acceleration Rune.$(/l)$(br) The speed that the Blood Altar charges at per charging tick is: [10LP x $(item)Charging Runes$() x (1 + $(item)Speed Runes$()/10)]$(br) The maximum charge that a Blood Altar can hold is 1000LP per $(item)Charging Rune$(), which is then multiplied by: [(capacity of the main Blood Altar tank)/20000] if that value is above 1."
},
{
"type": "crafting",
"recipe": "bloodmagic:blood_rune_charging"
}
]
}

View file

@ -0,0 +1,25 @@
{
"name": "Redstone and Automation",
"icon": "minecraft:redstone",
"category": "altar",
"pages": [
{
"type": "text",
"text": "The $(item)Blood Altar$() is a fantastic tool, but standing around and waiting for slates to craft is not your idea of a good time. Luckily, items and LP can be automatically piped in and out of the altar, albeit with a few caveats. $(br2)While a simple $(item)Hopper$() lets you pipe items in, the Altar won't stop it from inputting more than 1 at a time. It will happily craft 64 slates in one"
},
{
"type": "text",
"text": "go, consuming 64 times as much LP as usual to do so - but if you can't supply said LP fast enough, you're going to run into trouble. $(br2)Additionally, the altar makes no distinction between input and output, so without some sort of filter, items will be pulled in and out as fast as your item transfer system can handle. Perhaps a look at the Routing Nodes will be helpful... (once they're implemented, that is.)"
},
{
"type": "text",
"text": "(Also not implemented:) $(strike)The blood altar's LP value can be read via a comparator on the side, similar to a vanilla chest. $(br2)If you place a $(item)Bloodstone Brick$()$(strike) underneath the altar, the comparator will instead read the value of the $(l:altar/soul_network)Soul Network$(/l) of the owner of any orb that is placed into the Altar. $(br2)The signal strength depends on the size of the orb in the altar, not the maximum LP of the network, so if you have"
},
{
"type": "text",
"text": "$(strike)500,000 LP, a Weak Blood Orb would show as completely full, but a Master Blood Orb would show as only half full. This can be used to, for example, deactivate certain rituals when you are running low on LP, to ensure you don't run out. $(br2)Lastly, placing a $(item)Redstone Lamp$()$(strike) underneath the altar will make it output a redstone signal upon finishing a crafting operation. With a bit of cunning, this should allow you to fully automate the production of slates."
}
]
}

View file

@ -0,0 +1,33 @@
{
"name": "Tiers of Slates",
"icon": "bloodmagic:blankslate",
"category": "altar",
"extra_recipe_mappings":[
["bloodmagic:blankslate", 1],
["bloodmagic:reinforcedslate", 1],
["bloodmagic:infusedslate", 2],
["bloodmagic:demonslate", 2]
],
"pages": [
{
"type": "text",
"text": "The $(l:altar/blood_altar)Blood Altar$(/l)'s main use is the production of $(item)Slates$(). Each tier of slate requires the previous tier and a more powerful altar than the last. $(br2)Note that $(item)Etherial Slates$() aren't currently implemented by default, but may be if you're playing in a modpack. Check JEI for details."
},
{
"type": "2x_crafting_altar",
"a.heading": "Blank Slate",
"a.recipe": "bloodmagic:altar/slate",
"b.heading": "Reinforced Slate",
"b.recipe": "bloodmagic:altar/reinforcedslate"
},
{
"type": "2x_crafting_altar",
"a.heading": "Imbued Slate",
"a.recipe": "bloodmagic:altar/imbuedslate",
"b.heading": "Demonic Slate",
"b.recipe": "bloodmagic:altar/demonicslate"
}
]
}

View file

@ -2,6 +2,12 @@
"name": "Soul Network",
"icon": "bloodmagic:weakbloodorb",
"category": "altar",
"extra_recipe_mappings":[
["bloodmagic:weakbloodorb", 3],
["bloodmagic:apprenticebloodorb", 3],
["bloodmagic:magicianbloodorb", 4],
["bloodmagic:masterbloodorb", 4]
],
"pages": [
{
"type": "text",
@ -13,7 +19,21 @@
},
{
"type": "text",
"text": "being placed inside of a $(l:altar/bloodaltar)Blood Altar$(/l) with LP.$(br2) There is a separate Blood Orb that can be created for each Tier of the Blood Altar:$(li)$(item)Weak Blood Orb$(), Max capacity: 5000LP.$(li)$(item)Apprentice Blood Orb$(), Max capacity: 25k LP. $(li)$(item)Magician Blood Orb$(), Max capacity: 150k LP.$(li)$(item)Master Blood Orb$(), Max capacity: 1M LP."
"text": "being placed inside of a $(l:altar/blood_altar)Blood Altar$(/l) with LP.$(br2) There is a separate Blood Orb that can be created for each Tier of the Blood Altar:$(li)$(item)Weak Blood Orb$(), Max capacity: 5k LP.$(li)$(item)Apprentice Blood Orb$(), Max capacity: 25k LP. $(li)$(item)Magician Blood Orb$(), Max capacity: 150k LP.$(li)$(item)Master Blood Orb$(), Max capacity: 1M LP."
},
{
"type": "2x_crafting_altar",
"a.heading": "Weak Blood Orb",
"a.recipe": "bloodmagic:altar/weakbloodorb",
"b.heading": "Apprentice Blood Orb",
"b.recipe": "bloodmagic:altar/apprenticebloodorb"
},
{
"type": "2x_crafting_altar",
"a.heading": "Magician Blood Orb",
"a.recipe": "bloodmagic:altar/magicianbloodorb",
"b.heading": "Master Blood Orb",
"b.recipe": "bloodmagic:altar/masterbloodorb"
}
]
}

View file

@ -0,0 +1,50 @@
{
"name": "Demon Will Aspects",
"icon": "bloodmagic:vengefulcrystal",
"category": "demon_will",
"extra_recipe_mappings":[
["bloodmagic:steadfastdemoncrystal", 2],
["bloodmagic:corrosivedemoncrystal", 2],
["bloodmagic:destructivedemoncrystal", 2],
["bloodmagic:vengefuldemoncrystal", 2],
["bloodmagic:steadfastcrystal", 2],
["bloodmagic:corrosivecrystal", 2],
["bloodmagic:destructivecrystal", 2],
["bloodmagic:vengefulcrystal", 2],
["bloodmagic:basemonstersoul_vengeful", 2],
["bloodmagic:basemonstersoul_corrosive", 2],
["bloodmagic:basemonstersoul_steadfast", 2],
["bloodmagic:basemonstersoul_destructive", 2]
],
"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..."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/demon_will/will_splitting.png"
],
"title": "Aspects of Will",
"border": true,
"text": "The $(l:rituals/rituals_list/ritual_crystal_split)Resonance of the Faceted Crystal$() ritual in action."
},
{
"type": "text",
"text": "Now we have $(item)Crystallized Will$() in four spicy new flavours! on the $(water)Water Rune$() we have $(steadfast)Steadfast Will$(), on the $(air)Air Rune$() we get $(destructive)Destructive Will$(), on the $(fire)Fire Rune$() comes $(vengeful)Vengeful Will$() and on the $(earth)Earth Rune$() we find $(corrosive)Corrosive Will.$() $(br2)These various new types of Will can be burned in the $(item)Demon Crucible$() just like Raw Will, and from there can be fed into various Rituals to great and fascinating effect."
},
{
"type": "text",
"text": "However, they also change how your Sentient Tools behave, making them more powerful.$(br) $(li)$(raw)Raw Will$(): Increases damage and attack speed. $(corrosive)$(li)Corrosive Will$(): Attacks have a chance to apply poison or wither to your foes, otherwise same as $(raw)Raw$(). $(vengeful)$(li)Vengeful Will$(): increases damage, but not as much as $(raw)Raw$(). Increases attack speed more than any other type. Gives a movement speed buff that increases with higher amounts of Will."
},
{
"type": "text",
"text": "$(steadfast)$(li)Steadfast Will$(): Increases damage (but not as much as $(raw)Raw$()) and grants Absorption after a kill. $(destructive)$(li)Destructive Will$(): Increases damage more than any other will type, but increases attack speed more slowly than any other type. Top Tier is still faster than an unempowered tool / equivalent iron tool, but slower than any other will type."
},
{
"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."
}
]
}

View file

@ -0,0 +1,57 @@
{
"name": "Crystallized Will",
"icon": "bloodmagic:defaultcrystal",
"category": "demon_will",
"extra_recipe_mappings":[
["bloodmagic:demoncrucible", 1],
["bloodmagic:demoncrystallizer", 4],
["bloodmagic:rawdemoncrystal", 4],
["bloodmagic:defaultcrystal", 4]
],
"pages": [
{
"type": "text",
"text": "Now that you have plenty of $(l:demon_will/demon_will)$(item)Demon Will$() in your $(l:demon_will/soul_gem)$(item)Tartaric Gem$(), it's time to explore what happens when you unleash it upon the world. $(br)First off, you'll need to create a $(item)Demon Crucible$(), and then fill it with $(l:demon_will/demon_will)$(item)Demon Will$()."
},
{
"type": "crafting_soulforge",
"heading": "Demon Crucible",
"recipe": "bloodmagic:soulforge/demon_crucible",
"text": "This will burn $(l:demon_will/demon_will)$(item)Demon Will$() and release it into the atmosphere. Put a charged $(l:demon_will/soul_gem)$(item)Tartaric Gem$() into it and let it run."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/demon_will/demon_crucible.png"
],
"title": "Demon Crucible",
"border": true,
"text": "The $(item)Demon Crucible$(), with a $(l:demon_will/soul_gem)$(item)Tartaric Gem$() inside it."
},
{
"type": "text",
"text": "Now we have $(item)Raw Will$() in the atmosphere. Great, now what? $(br2)Some $(l:rituals/ritual_tinkerer)Rituals$() benefit from $(item)Raw Will$(), but the main benefit from this is the ability to create $(item)Demon Will Crystals$() and from there, split them into their $(l:demon_will/aspected_will)Aspects$()."
},
{
"type": "crafting_soulforge",
"heading": "Demon Crystallizer",
"recipe": "bloodmagic:soulforge/demon_crystallizer",
"text": "This will slowly consume $(l:demon_will/demon_will)$(item)Demon Will$() from the atmosphere to produce $(item)Will Crystals$(). The first spire costs about 100 will to form, and all subsequent spires cost roughly half that. The largest $(item)Crystal Cluster$() can be up to 7 spires."
},
{
"type": "text",
"text": "If you have at least 1,000 total Will in your inventory (Across any number of Tartaric Gems), you can harvest these crystals by right-clicking the spire with an empty hand. This will remove all but the central spire. $(br2)However, if you have not got this much will, $(italic)really$() need that central spire, or are just in a hurry, you can harvest the whole lot with a pickaxe."
},
{
"type": "relations",
"title": "Related Links",
"entries": [
"rituals/ritual_tinkerer",
"rituals/rituals_list/ritual_crystal_split",
"rituals/rituals_list/ritual_crystal_harvest",
"demon_will/aspected_will"
],
"text": "There's more I can do, I can feel it..."
}
]
}

View file

@ -0,0 +1,26 @@
{
"name": "Demon Will",
"icon": "bloodmagic:basemonstersoul",
"category": "demon_will",
"extra_recipe_mappings":[["bloodmagic:basemonstersoul", 0]],
"pages": [
{
"type": "text",
"text": "To get started with $(6)Blood Magic$() you need to gather a few $(item)Demon Wills$(). There are two ways to get Demon Will:$(br)$(li)Killing a mob that has been hit with a $(l:demon_will/soul_snare)$(item)Soul Snare$(/l) and is killed when white particle effects appear.$(li)By killing a hostile mob with a $(l:demon_will/sentient_sword)$(item)Sentient Sword$(/l)$().$(br)Since you are just beginning to use the mod, you will not yet have a $(l:demon_will/sentient_sword)$(item)Sentient Sword$(/l), and thus will need to use"
},
{
"type": "text",
"text": "a $(l:demon_will/soul_snare)$(item)Soul Snare$(/l). $(br2)$(item)Demon Will$() is a recurring resource in $(6)Blood Magic$(), and is used to power the $(l:demon_will/soul_forge)$(item)Hellfire Forge$(/l). $(br2)In the lore of $(6)Blood Magic$(), $(1)Demon Will$() is the residual effect of when a demon imbues its will into the bodies of the dead."
},
{
"type": "image",
"images": ["bloodmagic:images/entries/demon_will/demon_will.png"],
"title": "Demon Will",
"border": true
},
{
"type": "text",
"text": "Once you have some Will, you can use it to craft useful tools in the $(l:demon_will/soul_forge)Hellfire Forge,$(). Also, it is suggested to gather two $(item)Demon Will$() items before coming back to base, since you need to have one in order to craft your first $(l:altar/blood_altar)Blood Altar.$(/l)"
}
]
}

View file

@ -0,0 +1,18 @@
{
"name": "Sentient Sword",
"icon": "bloodmagic:soulsword",
"category": "demon_will",
"extra_recipe_mappings":[["bloodmagic:soulsword", 1]],
"pages": [
{
"type": "text",
"text": "The $(item)Sentient Sword$() is a much more effective tool for collecting $(l:demon_will/demon_will)$(item)Demon Will$() than $(l:demon_will/soul_snare)$(item)Soul Snares$() could ever hope to be It may seem weak at first, but it is powered by the Wills you carry, so crafting a $(l:demon_will/soul_gem)$(item)Tartaric Gem$() is a must."
},
{
"type": "crafting_soulforge",
"heading": "Sentient Sword",
"recipe": "bloodmagic:soulforge/sentientsword",
"text": "This sword will serve you well."
}
]
}

View file

@ -0,0 +1,53 @@
{
"name": "Sentient Tools",
"icon": "bloodmagic:soulpickaxe",
"category": "demon_will",
"extra_recipe_mappings":[
["bloodmagic:soulpickaxe", 1],
["bloodmagic:soulscythe", 3],
["bloodmagic:soulaxe", 5],
["bloodmagic:soulshovel", 7]
],
"pages": [
{
"type": "text",
"text": "The $(item)Sentient Sword$() has proven to be a resounding success. You find yourself wondering how other tools may react to a similar treatment..."
},
{
"type": "crafting_soulforge",
"heading": "Sentient Pickaxe",
"recipe": "bloodmagic:soulforge/sentientpickaxe",
"text": "This pickaxe improves with Will, cutting through stone with ease. With no Will to power it, it is only slightly better than the $(item)Iron Pickaxe$() it was crafted from; However, with a full enough $(l:demon_will/soul_gem)$(item)Tartaric Gem$(), you forsee it surpassing even a $(item)Netherite Pickaxe$()."
},
{
"type": "text",
"text": "The $(item)Sentient Scythe$() is a slightly different tool to its iron counterpart. Infusing it with will has transmuted it into a fearsone weapon. While slow and not as powerful as the other weapons, its great swings will damage all enemies in its range, making it an excellent choice for crowd control."
},
{
"type": "crafting_soulforge",
"heading": "Sentient Scythe",
"recipe": "bloodmagic:soulforge/sentientscythe",
"text": "As with the pickaxe, with no Will to power your scythe, it is comparatively blunt and unwieldy; However, with a full enough $(l:demon_will/soul_gem)$(item)Tartaric Gem$(), you forsee it becoming a devestating tool. $(br)Did we mention that it still functions as a hoe?"
},
{
"type": "text",
"text": "Much like the $(item)Sentient Pickaxe$(), the $(item)Sentient Axe$() is a noticable improvement over its Iron counterpart. Additionally, it gets a noticable buff in its damage output, making it a fearsome weapon for those who don't mind its unwieldy nature."
},
{
"type": "crafting_soulforge",
"heading": "Sentient Axe",
"recipe": "bloodmagic:soulforge/sentientaxe",
"text": "As with the pickaxe, with no Will to power your axe, it is only slightly better than the $(item)Iron Axe$() it was crafted from; However, with a full enough $(l:demon_will/soul_gem)$(item)Tartaric Gem$(), you forsee it surpassing even a $(item)Netherite Axe$()."
},
{
"type": "text",
"text": "Much like the $(item)Sentient Pickaxe$(), the $(item)Sentient Shovel$() is a noticable improvement over its Iron counterpart, even without additional $(l:demon_will/demon_will)$(item)Demon Will$() to power it."
},
{
"type": "crafting_soulforge",
"heading": "Sentient Shovel",
"recipe": "bloodmagic:soulforge/sentientshovel",
"text": "As with the pickaxe, with no Will to power your shovel, it is only slightly better than the $(item)Iron shovel$() it was crafted from; However, with a full enough $(l:demon_will/soul_gem)$(item)Tartaric Gem$(), you forsee it surpassing even a $(item)Netherite Shovel$()."
}
]
}

View file

@ -0,0 +1,15 @@
{
"name": "Hellfire Forge",
"icon": "bloodmagic:soulforge",
"category": "demon_will",
"pages": [
{
"type": "text",
"text": "The $(item)Hellfire Forge$() is one of the core crafting mechanics of $(6)Blood Magic$(), alongside the $(l:altar/blood_altar)Blood Altar$(/l) itself. Here, you can work with the $(l:demon_will/demon_will)$(item)Demon Will$() you have harvested from mobs, to allow you to create $(l:demon_will/sentient_tools)$(item)Sentient Tools$(), including the $(l:demon_will/sentient_sword)$(item)Sentient Sword$(), $(l:demon_will/soul_gem)$(item)Tartaric Gems$(), various $(item)reagents$(), $(l:alchemy_array/arcane_ash)Arcane Ash$(), and many things besides."
},
{
"type": "crafting",
"recipe": "bloodmagic:soul_forge"
}
]
}

View file

@ -0,0 +1,53 @@
{
"name": "Tartaric Gems",
"icon": "bloodmagic:soulgemgreater",
"category": "demon_will",
"extra_recipe_mappings":[
["bloodmagic:soulgempetty", 1],
["bloodmagic:soulgemlesser", 3],
["bloodmagic:soulgemcommon", 5],
["bloodmagic:soulgemgreater", 7]
],
"pages": [
{
"type": "text",
"text": "$(l:demon_will/demon_will)$(item)Demon Will$() is a very useful resource, but the fragments you have been getting so far are decidedly lacking in power. What you need is a storage item; A $(item)Tartaric Gem$() seems just the thing. What's more, it can absorb any leftover Demon Will you might have lying around. Just drop them onto the floor and your shiny new gem will absorb them."
},
{
"type": "crafting_soulforge",
"heading": "Petty Tartaric Gem",
"recipe": "bloodmagic:soulforge/pettytartaricgem",
"text": "Your first gem will hold a maximum of 64 will. Of course, you'll have to craft two if you want to upgrade it."
},
{
"type": "text",
"text": "Your $(item)Petty Tartaric Gem$() is a useful tool, but it's clearly lacking in power. By carefully working it with $(item)Diamond$(), $(item)Lapis$(), and $(item)Redstone$(), you have found a way to quadruple its storage capabilities."
},
{
"type": "crafting_soulforge",
"heading": "Lesser Tartaric Gem",
"recipe": "bloodmagic:soulforge/lessertartaricgem",
"text": "This reinforced gem can hold up to 256 will."
},
{
"type": "text",
"text": "Your $(item)Lesser Tartaric Gem$() is a noted improvement, but once more you chafe under its limitations. To progress further will involve focusing on your $(l:altar/blood_altar)$(item)Blood Altar$(), as you require the powers of an $(item)Imbued Slate$(). Combining this slate with your gem and further refining it with another $(item)Diamond$() and a $(item)Block of Gold$(), you have found a way to once again quadruple its storage capabilities."
},
{
"type": "crafting_soulforge",
"heading": "Common Tartaric Gem",
"recipe": "bloodmagic:soulforge/commontartaricgem",
"text": "This intricate gem can hold an impressive 1,024 will."
},
{
"type": "text",
"text": "You have clearly outdone yourself with the creation of the $(item)Common Tartaric Gem$(), but you feel there is still more you can do. However, getting more out of your gem will involve the culmination of all your work so far. Not only do you need a Demonic Slate, you also require a Weak Blood Shard $(o)and$() a Demon Will Crystal. Of course, it will come with rewards to match, powering your Sentient Armour and Sentient Tools like nothing you have seen before..."
},
{
"type": "crafting_soulforge",
"heading": "Greater Tartaric Gem",
"recipe": "bloodmagic:soulforge/greatertartaricgem",
"text": "This masterpiece of artifice can hold an astounding 4,096 will."
}
]
}

View file

@ -0,0 +1,32 @@
{
"name": "Your First Will",
"icon": "bloodmagic:soulsnare",
"category": "demon_will",
"priority": "true",
"pages": [
{
"type": "text",
"text": "The very first thing you will want to do is craft a $(item)Soul Snare$(). This is your gateway into $(6)Blood Magic$(), as Soul Snares allow you to gather your first $(l:demon_will/demon_will)$(item)Demon Will$(), which is a required ingredient for the $(l:altar/blood_altar)Blood Altar$(/l), and will fuel your work within the $(l:demon_will/soul_forge)Hellfire Forge$(/l)."
},
{
"type": "crafting",
"recipe": "bloodmagic:soul_snare"
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/demon_will/snare_particles.png"
],
"title": "Snare on Skeleton",
"border": true,
"text": "A skeleton with white particles after hit by a snare."
},
{
"type": "text",
"text": "Using the Snare is simple enough - craft a good quantity of them, find a hostile mob, and throw Snares at them until white particles appear. Kill them quickly and you should get a $(l:demon_will/demon_will)$(item)Demon Will$(). Before you ask, yes, the Looting enchantment will improve your odds. Once you've gathered a couple, you can get to work on crafting yourself a $(l:demon_will/sentient_sword)$(item)Sentient Sword$() and a $(l:demon_will/soul_gem)$(item)Tartaric Gem$() - these will make collecting $(l:demon_will/demon_will)$(item)Demon Will$() much easier."
}
]
}

View file

@ -1,27 +0,0 @@
{
"name": "Demon Will",
"icon": "bloodmagic:basemonstersoul",
"category": "demonwill",
"pages": [
{
"type": "text",
"text": "To get started with $(6)Blood Magic$() you need to gather a few $(item)Demon Wills$(). There are two ways to get Demon Will:$(br)$(li)Killing a mob that has been snared and is killed when white particle effects appear.$(li)By killing a hostile mob with a $(l:demonwill/sentientsword)$(item)Sentient Sword$(/l)$().$(br)Since you are just beginning to use the mod, you will not yet have a $(l:demonwill/sentientsword)$(item)Sentient Sword$(/l), and thus will need to use"
},
{
"type": "text",
"text": "a $(l:demonwill/soulsnare)$(item)Soul Snare$(/l).$(br2)Demon Will is a recurring resource in $(6)Blood Magic$() that is used in crafting for several advanced blocks, such as the $(l:demonwill/soulforge)$(item)Hellfire Forge,$(/l) as well as items like the $(l:demonwill/sentientsword)$(item)Sentient Sword.$(/l)$(br2)In the lore of $(6)Blood Magic$(), $(1)Demon Will$() is the residual effect of when a demon imbues its will into the bodies of the dead."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/demonwill/demonwill.png"
],
"title": "Demon Will",
"border": true
},
{
"type": "text",
"text": "Once you have some Will, you can use it to craft useful tools in the $(item)Hellfire Forge$(). Also, it is suggested to gather two $(item)Demon Will$() items before coming back to base, since you need to have one in order to craft your first $(l:altar/bloodaltar)Blood Altar.$(/l)"
}
]
}

View file

@ -1,15 +0,0 @@
{
"name": "Your First Will2",
"icon": "bloodmagic:soulsnare",
"category": "demonwill",
"pages": [
{
"type": "text",
"text": "The $(item)Soul Snare$() is a fun thing with a fun name."
},
{
"type": "crafting",
"recipe": "bloodmagic:soul_snare"
}
]
}

View file

@ -1,15 +0,0 @@
{
"name": "Hellfire Forge",
"icon": "bloodmagic:soulforge",
"category": "demonwill",
"pages": [
{
"type": "text",
"text": "The $(item)Soul Snare$() is a fun thing with a fun name."
},
{
"type": "crafting",
"recipe": "bloodmagic:soul_forge"
}
]
}

View file

@ -1,24 +0,0 @@
{
"name": "Your First Will",
"icon": "bloodmagic:soulsnare",
"category": "demonwill",
"pages": [
{
"type": "text",
"text": "The $(item)Soul Snare$() is a fun thing with a fun name."
},
{
"type": "crafting",
"recipe": "bloodmagic:soul_snare"
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/demonwill/soul_snare.png"
],
"title": "Snare on Skeleton",
"border": true,
"text": "A skeleton with white particles after hit by a snare."
}
]
}

View file

@ -0,0 +1,35 @@
{
"name": "Living Equipment Basics",
"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]
],
"pages": [
{
"type": "text",
"text": "To create $(item)Living Equipment$(), you will first need $(item)Iron Armor$() (or $(item)Iron Armour$(), if you prefer), some $(l:alchemy_array/arcane_ash)Arcane Ash$(), and some $(item)Binding Reagent$(). You'll also need at least a $(l:demon_will/soul_gem)Common Tartaric Gem$() in order to hold the $(item)Demon Will$() required."
},
{
"type": "crafting_soulforge",
"heading": "Binding Reagent",
"recipe": "bloodmagic:soulforge/reagent_binding",
"text": "It clings to me tightly..."
},
{
"type": "text",
"text": "as with any other Alchemy Array, right click the top of the ground with the $(item)Arcane Ashes$() and apply the $(item)Binding Reagent$(). Then place in your $(item)Iron Helmet$(), $(item)Iron Chestplate$(), $(item)Iron Leggings$() or $(item)Iron Boots$(), stand back, and watch the show.$(br2) Living Equipment starts off equivalent to Iron, but it has $(item)Upgrade Points$() that can, with care, be spent to train it in specific ways. It starts with 100, but there may be ways to surpass this limitation..."
},
{
"type": "crafting_array",
"heading": "Ritual of Binding",
"recipe": "bloodmagic:array/living_helmet",
"text": "It's alive, all right... and it's learning from me. I'd best be careful what I teach it. $(br2)I can keep a closer eye on what it's learned so far by holding shift when I look at it."
}
]
}

View file

@ -0,0 +1,94 @@
{
"name": "Living Equipment Upgrades",
"icon": "bloodmagic:upgradetome",
"category": "living_equipment",
"extra_recipe_mappings":[["bloodmagic:upgradetome", 0]],
"pages": [
{
"type": "text",
"text": "While wearing this new armour, you have felt it growing, trying to assist you with various tasks it has seen you perform. $(br2)It seems to be able to perform in a number of areas, but its growth is limited, and trying to do everything at once is quite fruitless."
},
{
"type": "text",
"text": "Perhaps multiple specialised sets may be a good idea? Of course, you'll have to train it if you want more than a smattering of poorly-directed benefits. $(br2)Fortunately, you have devised a $(l:rituals/rituals_list/ritual_upgrade_remove)Ritual$() that will assist with training, and $(l:rituals/rituals_list/ritual_armour_evolve)another one$() that will imbue your armour a greater ability to grow. $(br2)On the following pages are a list of all the $(item)Upgrade Tomes$() that the ritual seems capable of producing for you."
},
{
"type": "spotlight",
"item": "minecraft:cooked_beef",
"title": "Body Builder",
"text": "Effect: Grants Knockback Resistance and bonus Health. Caps out at 100% Resistance and 10 half-hearts of health. $(br2)Trained by: Eating food. $(br2)Maximum level: 5"
},
{
"type": "spotlight",
"item": "minecraft:golden_axe",
"title": "Charging Strike",
"text": "Effect: Increases damage and knockback from sprinting attacks, up to +50%. $(br2)Trained by: Dealing damage while sprinting. $(br2)Maximum level: 5"
},
{
"type": "spotlight",
"item": "minecraft:diamond_pickaxe",
"title": "Dwarvern Might",
"text": "Effect: Increases mining speed while mining identical blocks. After a certain level, gives a Haste buff after breaking blocks. $(br2)Trained by: Mining. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:experience_bottle",
"title": "Experienced",
"text": "Effect: Increases XP drops from killing mobs, up to 150%. $(br2)Trained by: Collecting XP. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:blaze_powder",
"title": "Gift of Ignis",
"text": "Effect: Provides Fire Resistance. Higher levels last longer and recharge faster. $(br2)Trained by: Being on Fire. ($(item)Potions of Fire Resistance$() may be your friend here.) $(br2)Maximum level: 5"
},
{
"type": "spotlight",
"item": "minecraft:golden_apple",
"title": "Healthy",
"text": "Effect: Grants additional health, up to 50 half-hearts. $(br2)Trained by: Restoring health (Ordinary healing, or via $(item)Potions of Healing$() or $(item)Potions of Regeneration$().) $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:arrow",
"title": "Pin Cushion",
"text": "Effect: Offers protection from arrows. $(br2)Trained by: Being shot. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:milk_bucket",
"title": "Poison Resistance",
"text": "Effect: Cures Poison. Has a cooldown which shortens with additional levels. $(br2)Trained by: Being Poisoned. $(br2)Maximum level: 5"
},
{
"type": "spotlight",
"item": "minecraft:sugar",
"title": "Quick Feet",
"text": "Effect: Increases player movement speed up to 150%. $(br2)Trained by: Running around. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:feather",
"title": "Soft Fall",
"text": "Effect: Reduces fall damage, up to complete immunity. $(br2)Trained by: Getting hurt from falls. $(br2)Maximum level: 5"
},
{
"type": "spotlight",
"item": "minecraft:diamond_leggings",
"title": "Strong Legs",
"text": "Effect: Increases jump height and reduces fall damage, up to a maximum of an additional 7.5 blocks and 83% fall resistance. $(br2)Trained by: Jumping around. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "minecraft:shield",
"title": "Tough",
"text": "Effect: Protects you from non-projectile harm. $(br2)Trained by: Taking damage from anything but projectiles. $(br2)Maximum level: 10"
},
{
"type": "spotlight",
"item": "bloodmagic:sacrificialdagger",
"title": "Tough Palms",
"text": "Effect: Grants a bonus to Self Sacrifice, up to 150%. $(br2)Trained by: Sacrificing Blood with the Sacrificial Knife. $(br2)Maximum level: 10"
}
]
}

View file

@ -0,0 +1,30 @@
{
"name": "Activation Crystals",
"icon": "bloodmagic:activationcrystalweak",
"category": "rituals",
"extra_recipe_mappings":[
["bloodmagic:activationcrystalweak", 1],
["bloodmagic:activationcrystalawakened", 3]
],
"pages": [
{
"type": "text",
"text": "Your rituals require more than simply the correct arrangement of blocks and Sigils. An effort of will is required to open a channel from your Soul Network to the ritual, and The $(item)Activation Crystal$() will allow you to focus yourself enough to activate your rituals."
},
{
"type": "crafting_altar",
"heading": "Weak Activation Crystal",
"recipe": "bloodmagic:weak_activation_crystal",
"text": "This crystal should do for now."
},
{
"type": "text",
"text": "Eventually, you will find rituals that are too demanding for your current crystal. For now, you do not know what to do, save that a stronger crystal will be needed..."
},
{
"type": "text",
"title": "Awakened Activation Crystal",
"text": "Not Yet Implemented."
}
]
}

View file

@ -0,0 +1,32 @@
{
"name": "Rituals - Getting Started",
"icon": "bloodmagic:activationcrystalcreative",
"category": "rituals",
"priority": "true",
"pages": [
{
"type": "text",
"text": "Once you have gotten your $(l:altar/blood_altar)Blood Altar$(/l) to Tier 3, you can delve into the wonderful world of Rituals. $(br2)For working with rituals, you will require the following: $(li)An $(l:rituals/activation_crystals)Activation Crystal$(). At tier 3 only the $(item)Weak Crystal$() is avaliable. $(li)A $(item)Master Ritual Stone$(). Every ritual requires exactly one of these at its centre."
},
{
"type": "text",
"text": "$(li)Enough Ritual Stones to built the Ritual. $(li)(Recommended) A $(l:rituals/ritual_diviner)Ritual Diviner$(). Although not required, it will make ritual construction significantly easier. $(br2)Building a ritual is relatively straightforward. Simply shift+click with the Ritual Diviner in hand until it displays the name of the desired ritual. Check the number of runes required by mousing over it in your"
},
{
"type": "text",
"text": "inventory and holding shift. $(br2)Place down a Master Ritual Stone, and hold right-click until all the stones have been placed and painted with the correct element. Finally, right click the Master Ritual Stone with your Activation Crystal. If you've done everything right, you should get a message saying 'A rush of energy flows through the ritual!'. The ritual is now active."
},
{
"type": "text",
"text": "If this does not occur, a few things may have gone wrong. If you instead get text saying 'You feel a push, but are too weak to complete this ritual', then you do not have enough LP in your Soul Network to activate the ritual. $(br2) If the message reads 'You feel that these runes are not configured correctly...', then something has gone wrong in the placement of the runes. Check the area for any blockages (such as grass, stone, etc) and try again."
},
{
"type": "text",
"text": "Remember that some rituals extend several blocks above and below the Master Ritual Stone. If you get no error, ensure that the activation crystal is bound to your soul network - this can be accomplished by right-clicking it. $(br2) It is important to note that the crystal does not have to be bound to YOUR network - if you can get a hold of another player's crystal, you can activate rituals using their blood-pool. Guard yours well!"
},
{
"type": "text",
"text": "one last note; all rituals respond to a $(item)Redstone$() signal, so sticking a lever on the side of the Master Ritual Stone is a good way to deactivate it. You can combine this knowledge with some of the information in $(l:altar/redstone_automation)Redstone and Automation$() to ensure your rituals shut down automatically long before your Soul Network runs dry."
}
]
}

View file

@ -0,0 +1,50 @@
{
"name": "The Ritual Diviner",
"icon": "bloodmagic:ritualdiviner",
"category": "rituals",
"extra_recipe_mappings":[
["bloodmagic:airscribetool", 4],
["bloodmagic:firescribetool", 4],
["bloodmagic:waterscribetool", 5],
["bloodmagic:earthscribetool", 5],
["bloodmagic:duskscribetool", 6]
],
"pages": [
{
"type": "text",
"text": "Crafting rituals is an intricate business; Even if you have the correct $(item)Inscription Tools$(), you can't just slap runic inscriptions down any old how and expect things to happen. Luckily, the $(item)Ritual Diviner$() is here to help."
},
{
"type": "crafting",
"recipe": "bloodmagic:ritual_diviner_0"
},
{
"type": "text",
"text": "The base Ritual Diviner requires one of each $(item)Elemental Inscription Tool$() for its construction, and thus a tier 3 $(l:altar/blood_altar)Blood Altar$(/l). The four base Elemental Inscription Tools can be crafted in your Altar for 1,000 LP each, as defined on the following pages. You can also use these tools to inscribe runes by hand, but this should only seriously be used for decorative purposes, as it is both slow and inaccurate."
},
{
"type": "crafting",
"recipe": "bloodmagic:ritual_diviner_1",
"text": "There is also an augmented version of the Ritual Diviner, for creating more powerful rituals."
},
{
"type": "2x_crafting_altar",
"a.heading": "Inscription Tool: Air",
"a.recipe": "bloodmagic:altar/air_tool",
"b.heading": "Inscription Tool: Fire",
"b.recipe": "bloodmagic:altar/fire_tool"
},
{
"type": "2x_crafting_altar",
"a.heading": "Inscription Tool: Water",
"a.recipe": "bloodmagic:altar/water_tool",
"b.heading": "Inscription Tool: Earth",
"b.recipe": "bloodmagic:altar/earth_tool"
},
{
"type": "crafting_altar",
"heading": "Inscription Tool: Dusk",
"recipe": "bloodmagic:altar/dusk_tool"
}
]
}

View file

@ -0,0 +1,23 @@
{
"name": "Ritual Stones",
"icon": "bloodmagic:waterritualstone",
"category": "rituals",
"extra_recipe_mappings":[
["bloodmagic:airritualstone", 0],
["bloodmagic:fireritualstone", 0],
["bloodmagic:waterritualstone", 0],
["bloodmagic:earthritualstone", 0],
["bloodmagic:duskritualstone", 0]
],
"pages": [
{
"type": "text",
"text": "$(item)Ritual Stones$() are the canvas upon which you will draw your $(item)Rituals$(). They also look quite nifty, and can be manually painted with the various $(l:rituals/ritual_diviner)Elemental Inscription Tools$()."
},
{
"type": "crafting",
"recipe": "bloodmagic:ritual_stone_blank",
"recipe2": "bloodmagic:ritual_stone_master"
}
]
}

View file

@ -0,0 +1,24 @@
{
"name": "Ritual Tinkerer",
"icon": "bloodmagic:ritualtinkerer",
"category": "rituals",
"priority": "true",
"pages": [
{
"type": "text",
"text": "The $(item)Ritual Tinkerer$() is an essential tool for the advanced Blood Mage who is looking for all they can get out of their Rituals. It has three main modes, as described overleaf."
},
{
"type": "crafting",
"recipe": "bloodmagic:ritual_reader"
},
{
"type": "text",
"text": "$(li)Information: Describes the function of the ritual, similar to the Ritual Diviner. $(li)Set Will Consumed: Tells the ritual which kinds of Demon Will (if any) to consume from the Aura. Specify this by carrying Demon Will Crystals in your hotbar, one for each type of will you wish the Ritual to consume. Further information about the effects of Demon Will upon Rituals can be found on each Ritual's respective page in this book."
},
{
"type": "text",
"text": "$(li)Define Area: Specifies the zone that the ritual should work in, and displays the current zone. If multiple zones can be specified, shift-clicking will cycle through them. Some rituals can be expanded far beyond their default areas, but keep in mind that this will increase the LP cost to match..."
}
]
}

View file

@ -0,0 +1,77 @@
{
"name": "Ritual of the Shepherd",
"icon": "minecraft:white_wool",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of the Shepherd",
"multiblock":{
"pattern":[
["_EDE_",
"A_W_A",
"DW0WD",
"A_W_A",
"_EDE_"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone",
"A": "#bloodmagic:ritual_stones/air_or_earth",
"E": "#bloodmagic:ritual_stones/earth_or_air",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Increases the maturity rate of baby animals within its range.$(br2)$(water)Water Runes: 4$(br)$(air)Air Runes: 4$(br)$(br)$(earth)Earth Runes: 4$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 16"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "Increases the speed of the ritual based on the total Will in the Aura."
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "Unimplemented."
},
{
"type": "spotlight",
"item": "bloodmagic:vengefulcrystal",
"title": "Vengeful",
"text": "Decreases the time it takes for adults to breed again."
},
{
"type": "spotlight",
"item": "bloodmagic:destructivecrystal",
"title": "Destructive",
"text": "Causes adults that have not bred lately to run at mobs and explode."
},
{
"type": "spotlight",
"item": "bloodmagic:steadfastcrystal",
"title": "Steadfast",
"text": "Automatically breeds adults within its area using items in the connected chest."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Growth) Animals within this range will grow much faster. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 7 $(li)Vertical Radius: 7"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Chest) Chest for breeding items (if properly augmented, requires steadfast will).$(br) $(li)Maximum Volume: 1 $(li)Horizontal Radius: 3 $(li)Vertical Radius: 3"
}
]
}

View file

@ -0,0 +1,32 @@
{
"name": "Ritual of Living Evolution",
"icon": "bloodmagic:livingplate",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of Living Evolution",
"multiblock":{
"pattern":[
["_________", "_________", "_________", "____E____", "___E_E___", "____E____", "_________", "_________", "_________"],
["_________", "_E_____E_", "_________", "___D_D___", "_________", "___D_D___", "_________", "_E_____E_", "_________"],
["_________", "_E_____E_", "_________", "_________", "_________", "_________", "_________", "_E_____E_", "_________"],
["_________", "_E_____E_", "_________", "___D_D___", "_________", "___D_D___", "_________", "_E_____E_", "_________"],
["____E____", "_E_____E_", "__FF_FF__", "__FD_DF__", "E___0___E", "__FD_DF__", "__FF_FF__", "_E_____E_", "____E____"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Increases the amount of maximum Upgrade Points on your Living Armor to 300.$(br2)$(fire)Fire Runes: 12$(br)$(earth)Earth Runes: 24$(br)$()Dusk Runes: 12$(br2)$()Total Runes: 48"
}
]
}

View file

@ -0,0 +1,72 @@
{
"name": "Ritual of the Crusher",
"icon": "minecraft:iron_pickaxe",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of the Crusher",
"multiblock":{
"pattern":[
["__A__", "_____", "A___A", "_____", "__A__"],
["D_F_D", "__E__", "FE0EF", "__E__", "D_F_D"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"A": "bloodmagic:airritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Breaks blocks within its crushing range and places the items into the linked chest.$(br2)$(air)Air Runes: 4$(br)$(fire)Fire Runes: 4$(br)$(earth)Earth Runes: 4$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 16"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "Increases the speed of the ritual based on total Will."
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "All blocks are broken to be processed with a form of cutting fluid. Overrides Silk Touch where applicable."
},
{
"type": "spotlight",
"item": "bloodmagic:vengefulcrystal",
"title": "Vengeful",
"text": "Compresses the inventory on successful operation. Currently only does one compression per operation."
},
{
"type": "spotlight",
"item": "bloodmagic:destructivecrystal",
"title": "Destructive",
"text": "Blocks are broken down forcefully: all blocks broken are affected by Fortune III."
},
{
"type": "spotlight",
"item": "bloodmagic:steadfastcrystal",
"title": "Steadfast",
"text": "Causes all blocks that are broken to be picked up with silk touch. Overrides Fortune where applicable."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Chest) The location of the inventory that the ritual will place the broken blocks into. $(br) $(li)Maximum Volume: 1 $(li)Horizontal Radius: 3 $(li)Vertical Radius: 3"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Crushing) The blocks that the ritual will break. $(br) $(li)Maximum Volume: 50 $(li)Horizontal Radius: 10 $(li)Vertical Radius: 10"
}
]
}

View file

@ -0,0 +1,39 @@
{
"name": "Crack of the Fractured Crystal",
"icon": "bloodmagic:defaultcrystal",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Crack of the Fractured Crystal",
"multiblock":{
"pattern":[
["_______", "_______", "___D___", "__D_D__", "___D___", "_______", "_______"],
["ED___DE", "D_____D", "__A_A__", "___0___", "__A_A__", "D_____D", "ED___DE"],
["E_FFF_E", "___F___", "F__F__F", "FFF_FFF", "F__F__F", "___F___", "E_FFF_E"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"A": "bloodmagic:airritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Breaks Demon Will crystal clusters within its range, dropping the results on top of the crystals.$(br2)$(air)Air Runes: 4$(br)$(fire)Fire Runes: 20$(br)$(earth)Earth Runes: 8$(br)$()Dusk Runes: 12$(br2)$()Total Runes: 44"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Crystal) All Demon Will crystal clusters have a single crystal broken off, spawning the crystal into the world. If there is only one crystal on the cluster, it will not break it. $(br) $(li)Maximum Volume: 250 $(li)Horizontal Radius: 5 $(li)Vertical Radius: 7"
}
]
}

View file

@ -0,0 +1,32 @@
{
"name": "Resonance of the Faceted Crystal",
"icon": "bloodmagic:vengefulcrystal",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Resonance of the Faceted Crystal",
"multiblock":{
"pattern":[
["__D__", "_BFB_", "DE0AD", "_BWB_", "__D__"],
["_D_D_", "D___D", "_____", "D___D", "_D_D_"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"B": "bloodmagic:ritualstone",
"W": "#bloodmagic:ritual_stones/water_earth_fire_air",
"A": "#bloodmagic:ritual_stones/air_water_earth_fire",
"F": "#bloodmagic:ritual_stones/fire_air_water_earth",
"E": "#bloodmagic:ritual_stones/earth_fire_air_water",
"D": "bloodmagic:duskritualstone"
},
"symetrical": false
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Splits apart a well-grown Raw crystal cluster into seperal 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"
}
]
}

View file

@ -0,0 +1,52 @@
{
"name": "Focus of the Ellipsoid",
"icon": "minecraft:bucket",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Focus of the Ellipsoid",
"multiblock":{
"pattern":[
["_____AAA___",
"_____A_____",
"__WWW__EE__",
"F_W_____E__",
"F___D_D_E__",
"FF___0___FF",
"__E_D_D___F",
"__E_____W_F",
"__EE__WWW__",
"_____A_____",
"___AAA_____"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "#bloodmagic:ritual_stones/water_or_earth",
"A": "#bloodmagic:ritual_stones/air_or_fire",
"F": "#bloodmagic:ritual_stones/fire_or_air",
"E": "#bloodmagic:ritual_stones/earth_or_water",
"D": "bloodmagic:duskritualstone"
},
"symetrical": false
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Creates a hollow spheroid around the ritual using the blocks in the attached chest.$(br2)$(water)Water Runes: 8$(br)$(air)Air Runes: 8$(br)$(fire)Fire Runes: 8$(br)$(earth)Earth Runes: 8$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 36"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Chest) The location of the inventory that the ritual will grab blocks from to place in the world. $(br) $(li)Maximum Volume: 1 $(li)Horizontal Radius: 3 $(li)Vertical Radius: 3"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Placement) The range that the ritual will place its blocks in. Note that the Spheroid is centered on the ritual - if one side is shorter than the side opposite, the spheroid will be truncated. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 32 $(li)Vertical Radius: 32"
}
]
}

View file

@ -0,0 +1,77 @@
{
"name": "Ritual of the Feathered Knife",
"icon": "bloodmagic:sacrificialdagger",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of the Feathered Knife",
"multiblock":{
"pattern":[
["_EE___EE_", "EA_____AE", "E_______E", "____D____", "___D0D___", "____D____", "E_______E", "EA_____AE", "_EE___EE_"],
["__F___F__", "_________", "F___W___F", "___A_A___", "__W___W__", "___A_A___", "F___W___F", "_________", "__F___F__"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone",
"A": "bloodmagic:airritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Drains health from players in its area and puts the LP into a nearby blood altar.$(br2)$(water)Water Runes: 4$(br)$(air)Air Runes: 8$(br)$(fire)Fire Runes: 8$(br)$(earth)Earth Runes: 16$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 40"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "Increases the speed of the ritual based on the total Will in the Aura."
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "Uses the player's Incense to increase the yield."
},
{
"type": "spotlight",
"item": "bloodmagic:vengefulcrystal",
"title": "Vengeful",
"text": "Sets the minimum health for sacrificing to 10%. Overridden by Steadfast for the Owner if active."
},
{
"type": "spotlight",
"item": "bloodmagic:destructivecrystal",
"title": "Destructive",
"text": "Increases the yield of the ritual based on total Will."
},
{
"type": "spotlight",
"item": "bloodmagic:steadfastcrystal",
"title": "Steadfast",
"text": "Sets the minimum health for sacrificing from 30% to 70%."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Altar) This range defines the area that the ritual searches for the blood altar. Changing this will either expand or limit the range to a certain region. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 10 $(li)Vertical Radius: 15"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Damage) This defines where the ritual will damage a player. Players inside of this range will receive damage over time up to the specified limit. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 25 $(li)Vertical Radius: 15"
}
]
}

View file

@ -0,0 +1,77 @@
{
"name": "Ritual of the Green Grove",
"icon": "minecraft:bone_meal",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of the Green Grove",
"multiblock":{
"pattern":[
["EWE",
"W0W",
"EWE"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"E": "bloodmagic:earthritualstone",
"W": "bloodmagic:waterritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Grows crops within its area.$(br2)$(water)Water Runes: 4$()$(br)$(earth)Earth Runes: 4$()$(br2)Total Runes: 8"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "Increases the speed of all of the ritual operations depending on the total Will in the Aura."
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "Entities within range are attacked by nearby plants, leeching away their life."
},
{
"type": "spotlight",
"item": "bloodmagic:vengefulcrystal",
"title": "Vengeful",
"text": "Increases the rate that a growth tick is successful."
},
{
"type": "spotlight",
"item": "bloodmagic:destructivecrystal",
"title": "Destructive",
"text": "Growing range is increased based on total Will."
},
{
"type": "spotlight",
"item": "bloodmagic:steadfastcrystal",
"title": "Steadfast",
"text": "Seeds are replanted and blocks are hydrated within the Hydration range."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Growth) The area that the ritual will grow plants in. $(br) $(li)Maximum Volume: 81 $(li)Horizontal Radius: 4 $(li)Vertical Radius: 4"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Steadfast) Blocks within this range are rehydrated into farmland, and seeds within the area are planted nearby. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 15 $(li)Vertical Radius: 15"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Corrosive) Entities in this area have their life drained to grow nearby crops. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 15 $(li)Vertical Radius: 15"
}
]
}

View file

@ -0,0 +1,41 @@
{
"name": "Reap of the Harvest Moon",
"icon": "minecraft:wheat",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Reap of the Harvest Moon",
"multiblock":{
"pattern":[
["_WE_EW_",
"W__E__W",
"E_D_D_E",
"_E_0_E_",
"E_D_D_E",
"W__E__W",
"_WE_EW_"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Harvests plants within its range, dropping the results on the ground.$(br2)$(water)Water Runes: 8$(br)$(earth)Earth Runes: 12$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 24"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Harvesting) Plants within this range will be harvested. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 15 $(li)Vertical Radius: 15"
}
]
}

View file

@ -0,0 +1,88 @@
{
"name": "Serenade of the Nether",
"icon": "minecraft:lava_bucket",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Serenade of the Nether",
"multiblock":{
"pattern":[
["_F_",
"F0F",
"_F_"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"F": "bloodmagic:fireritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Generates a source of lava from the master ritual stone.$(br2)$(fire)Fire Runes: 4$()$(br2)Total Runes: 4"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "Decreases the LP cost of placing lava and allows lava to be placed insided of a linked container."
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "Entities within range that are immune to fire are damaged severely."
},
{
"type": "spotlight",
"item": "bloodmagic:vengefulcrystal",
"title": "Vengeful",
"text": "Entities in this range are afflicted by Fire Fuse."
},
{
"type": "spotlight",
"item": "bloodmagic:destructivecrystal",
"title": "Destructive",
"text": "Lava placement range is increased based on total Will."
},
{
"type": "spotlight",
"item": "bloodmagic:steadfastcrystal",
"title": "Steadfast",
"text": "Players in this range have Fire Resist applied."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Lava) The area that the ritual will place lava source blocks. $(br) $(li)Maximum Volume: 9 $(li)Horizontal Radius: 3 $(li)Vertical Radius: 3"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Corrosive) Entities within this range that are immune to fire damage are hurt proportional to the Will. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 10 $(li)Vertical Radius: 10"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Vengeful) Entities in this range are afflicted by Fire Fuse. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 10 $(li)Vertical Radius: 10"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Steadfast) Players in this range have Fire Resist applied. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 10 $(li)Vertical Radius: 10"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Raw) The tank that the ritual will place lava into. $(br) $(li)Maximum Volume: 1 $(li)Horizontal Radius: 10 $(li)Vertical Radius: 10"
}
]
}

View file

@ -0,0 +1,40 @@
{
"name": "Ritual of Magnetism",
"icon": "minecraft:iron_ore",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of Magnetism",
"multiblock":{
"pattern":[
["__F__", "_____", "F___F", "_____", "__F__"],
["A_E_A", "_____", "E___E", "_____", "A_E_A"],
["_____", "_E_E_", "__0__", "_E_E_", "_____"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"A": "bloodmagic:airritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Pulls up ores from the ground and puts them into its placement range.$(br2)$(air)Air Runes: 4$(br)$(fire)Fire Runes: 4$(br)$(earth)Earth Runes: 8$(br2)$()Total Runes: 16"
},
{
"type": "text",
"text": "[WIP Notes]$(br2)[Increase range by placing Iron, Gold, or Diamond Block under the Master Ritual Stone.]"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Placement) The range that the ritual will place the grabbed ores into. $(br) $(li)Maximum Volume: 50 $(li)Horizontal Radius: 4 $(li)Vertical Radius: 4"
}
]
}

View file

@ -0,0 +1,51 @@
{
"name": "Ritual of Regeneration",
"icon": "minecraft:golden_apple",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of Regeneration",
"multiblock":{
"pattern":[
["EEW_F_F_WEE", "E____F____E", "W_D_____D_W", "___________", "A_________A", "_A___0___A_", "A_________A", "___________", "W_D_____D_W", "E____F____E", "EEW_F_F_WEE"],
["_E_______E_", "E_________E", "___________", "___________", "___________", "___________", "___________", "___________", "___________", "E_________E", "_E_______E_"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone",
"A": "#bloodmagic:ritual_stones/air_or_fire",
"F": "#bloodmagic:ritual_stones/fire_or_air",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Casts regeneration on entities within its range if they are missing health.$(br2)$(water)Water Runes: 8$(br)$(air)Air Runes: 6$(br)$(fire)Fire Runes: 6$(br)$(earth)Earth Runes: 20$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 44"
},
{
"type": "spotlight",
"item": "bloodmagic:corrosivecrystal",
"title": "Corrosive",
"text": "Steals health from non-players inside of its Vampirism range and directly heals players."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Healing) Entities within this range will receive a regeneration buff. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 20 $(li)Vertical Radius: 20"
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Vampirism) Mobs within this range have their health syphoned to heal players in the Healing range. $(br) $(li)Maximum Volume: Full Range. $(li)Horizontal Radius: 20 $(li)Vertical Radius: 20"
}
]
}

View file

@ -0,0 +1,34 @@
{
"name": "Sound of the Cleansing Soul",
"icon": "bloodmagic:upgradetome",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Sound of the Cleansing Soul",
"multiblock":{
"pattern":[
["_________", "_________", "_________", "____A____", "___A_A___", "____A____", "_________", "_________", "_________"],
["_________", "_E_____E_", "_________", "___W_W___", "_________", "___W_W___", "_________", "_E_____E_", "_________"],
["_________", "_E_____E_", "_________", "_________", "_________", "_________", "_________", "_E_____E_", "_________"],
["_________", "_E_____E_", "_________", "___W_W___", "_________", "___W_W___", "_________", "_E_____E_", "_________"],
["____E____", "_E_____E_", "__FF_FF__", "__FD_DF__", "E___0___E", "__FD_DF__", "__FF_FF__", "_E_____E_", "____E____"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone",
"A": "bloodmagic:airritualstone",
"F": "bloodmagic:fireritualstone",
"E": "bloodmagic:earthritualstone",
"D": "bloodmagic:duskritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Removes all upgrades (and downgrades) from your $(l:living_equipment/living_basics)Living Armor$() and gives you the corresponding Upgrade (and Downgrade) $(l:living_equipment/living_upgrades)Tomes$(). You can right click while holding one of these $(item)Tomes$() to re-apply them to your $(l:living_equipment/living_basics)Living Armor$() again.$(br2)$(water)Water Runes: 8$(br)$(air)Air Runes: 4$(br)$(fire)Fire Runes: 12$(br)$(earth)Earth Runes: 20$(br)$()Dusk Runes: 4$(br2)$()Total Runes: 48"
}
]
}

View file

@ -0,0 +1,40 @@
{
"name": "Ritual of the Full Spring",
"icon": "minecraft:water_bucket",
"category": "rituals_list",
"pages": [
{
"type": "multiblock",
"name": "Ritual of the Full Spring",
"multiblock":{
"pattern":[
["W_W",
"_0_",
"W_W"]
],
"mapping":{
"0": "bloodmagic:masterritualstone",
"W": "bloodmagic:waterritualstone"
},
"symetrical": true
},
"text": "Use a Ritual Diviner for easier contruction."
},
{
"type": "text",
"text": "Generates a source of water from the master ritual stone.$(br2)$(water)Water Runes: 4$()$(br2)Total Runes: 4"
},
{
"type": "spotlight",
"item": "bloodmagic:defaultcrystal",
"title": "Raw",
"text": "The tank that the ritual will place water into."
},
{
"type": "spotlight",
"item": "bloodmagic:ritualtinkerer",
"title": "Range",
"text": "(Water) The area within which the Ritual will place Source Blocks. $(br2)$(li)Maximum Volume: 9 $(li)Horizontal Radius: 3 $(li)Vertical Radius: 3 "
}
]
}

View file

@ -0,0 +1,23 @@
{
"name": "Air Sigil",
"icon": "bloodmagic:airsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentair", 1],
["bloodmagic:airsigil", 1]
],
"pages": [
{
"type": "text",
"text": "Throws you in the direction you're facing, at a cost of 50 LP per use. Note that this does not provide any sort of Feather Falling effect, so be careful when landing! A good way to get around quickly, albeit with some risk. Many an unwary mage has met their end by running out of LP in their $(l:altar/soul_network)Soul Network$() while flying miles above the countryside."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Air Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_air",
"array.heading": "Air Sigil",
"array.recipe": "bloodmagic:array/airsigil",
"array.text": "$(italic)I feel lighter already..."
}
]
}

View file

@ -0,0 +1,23 @@
{
"name": "Sigil of the Blood Lamp",
"icon": "bloodmagic:bloodlightsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentbloodlight", 1],
["bloodmagic:bloodlightsigil", 1]
],
"pages": [
{
"type": "text",
"text": "The $(item)Sigil of the Blood Lamp$() is a handy tool for any miner, dungeon delver, or simply any Blood Mage that doesn't like dark patches and feels that torches and glowstone blocks get in the way. When used, this sigil launches a Blood Light in the direction you are facing. When it hits a block, it spawns a nearly-invisible light source at a cost of 10LP."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Blood Lamp Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_blood_light",
"array.heading": "Sigil of the Blood Lamp",
"array.recipe": "bloodmagic:array/bloodlightsigil",
"array.text": "$(italic)I see a light!"
}
]
}

View file

@ -2,23 +2,32 @@
"name": "Divination Sigil",
"icon": "bloodmagic:divinationsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:divinationsigil", 3]
],
"pages": [
{
"type": "text",
"text": "The $(item)Divination Sigil$() is probably the first of many sigils that you would like to craft in Blood Magic. In order to craft the sigil, you need to create an $(l:alchemyarray/arcaneash)Alchemy Array$(/l) and use $(item)Redstone Dust$() and a $(item)Blank Slate$() as the base and catalyst items, respectively."
"text": "The $(item)Divination Sigil$() is probably the first of many sigils that you would like to craft in Blood Magic. In order to craft the sigil, you need to create an $(l:alchemy_array/arcane_ash)Alchemy Array$(/l) and use $(item)Redstone Dust$() and a $(item)Blank Slate$() as the base and catalyst items, respectively."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/divination_sigil.png"
],
"title": "Divination Sigil Array",
"border": true,
"text": "The Divination Sigil, next to its crafting array."
},
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/divination_sigil.png"
],
"title": "Divination Sigil Array",
"border": true,
"text": "The Divination Sigil, next to its crafting array."
},
{
"type": "text",
"text": "The Divination Sigil has two primary uses: $(br)$(li)When the player right-clicks in the air with the sigil, it will display the amount of LP that is in the owner's $(l:altar/soulnetwork)Soul Network.$(/l)$(li)When clicking on a $(l:altar/bloodaltar)Blood Altar$(/l), it will tell the player the altar's current Tier, the amount of LP stored in the altar, as well as its current max capacity. Having a $(item)Divination Sigil$() on hand can also be helpful for other block applications, but that will be covered later."
"text": "The Divination Sigil has two primary uses: $(br)$(li)When the player right-clicks in the air with the sigil, it will display the amount of LP that is in the owner's $(l:altar/soul_network)Soul Network.$(/l)$(li)When clicking on a $(l:altar/blood_altar)Blood Altar$(/l), it will tell the player the altar's current Tier, the amount of LP stored in the altar, as well as its current max capacity. Having a $(item)Divination Sigil$() on hand can also be helpful for other block applications, but that will be covered later."
},
{
"type": "crafting_array",
"heading": "Divination Sigil",
"recipe": "bloodmagic:array/divinationsigil",
"text": " $(italic)Peer into the soul."
}
]
}

View file

@ -2,25 +2,36 @@
"name": "Sigil of the Green Grove",
"icon": "bloodmagic:growthsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentgrowth", 3],
["bloodmagic:growthsigil", 3]
],
"pages": [
{
"type": "text",
"text": "The $(item)Sigil of the Green Grove$() is an item that has multiple uses. Crafted in an array with a $(item)Growth Reagent$(item) and a $(item)Reinforced Slate$(), the sigil can use the power of your stored life force to nourish and grow nearby plants."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/grove_sigil1.png",
"bloodmagic:images/entries/sigil/grove_sigil2.png",
"bloodmagic:images/entries/sigil/grove_sigil3.png"
],
"title": "Green Grove Sigil Array",
"border": true,
"text": "The Sigil of the Green Grove's array, plus its primary uses."
},
{
"type": "text",
"text": "If you right click on a block that is $(2)IGrowable$(), it will apply the bonemeal effect while consuming 150LP.$(br2)However, if you shift-right-click the sigil in the air, the sigil will light up to indicate that it is activated and will consume 150LP every 10 seconds. Every block in a 7x7x5 high volume centered on the player will have a growth tick applied to it, growing nearby crops. Good for farming those taters!"
}
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/grove_sigil1.png",
"bloodmagic:images/entries/sigil/grove_sigil2.png",
"bloodmagic:images/entries/sigil/grove_sigil3.png"
],
"title": "Green Grove Sigil Array",
"border": true,
"text": "The Sigil of the Green Grove's array, plus its primary uses."
},
{
"type": "text",
"text": "If you right click on a block that is $(2)IGrowable$(), it will apply the bonemeal effect while consuming 150LP.$(br2)However, if you shift-right-click the sigil in the air, the sigil will light up to indicate that it is activated, and will consume 150LP every 10 seconds. Every block in a 7x7x5 high volume centered on the player will have a growth tick applied to it. Good for farming those taters!"
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Growth Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_growth",
"array.heading": "Sigil of the Green Grove",
"array.recipe": "bloodmagic:array/growthsigil"
}
]
}

View file

@ -0,0 +1,14 @@
{
"name": "Sigil of the Frozen Lake [NYI]",
"icon": "bloodmagic:icesigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:icesigil", 0]
],
"pages": [
{
"type": "text",
"text": "[WIP Notes]$(br)[Not Yet Implemented]$(br2)Frostwalker Enchantment as a Sigil."
}
]
}

View file

@ -2,20 +2,32 @@
"name": "Lava Sigil",
"icon": "bloodmagic:lavasigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentlava", 2],
["bloodmagic:lavasigil", 2]
],
"pages": [
{
"type": "text",
"text": "The sister sigil to the $(l:sigil/water)Water Sigil,$(/l) the $(item)Lava Sigil$() creates a source block of lava where you click on the ground for the cost of 1000LP. Crafted in an $(l:alchemyarray/arcaneash)Alchemy Array$(/l) using a $(item)Lava Reagent$() and a $(item)Blank Slate,$() it'll drain 5 hearts from you if you don't have enough LP in your $(l:altar/soulnetwork)Soul Network.$(/l)"
"text": "The sister sigil to the $(l:sigil/water)Water Sigil,$(/l) the $(item)Lava Sigil$() creates a source block of lava where you click on the ground for the cost of 1000LP. Crafted in an $(l:alchemy_array/arcane_ash)Alchemy Array$(/l) using a $(item)Lava Reagent$() and a $(item)Blank Slate,$() it'll drain 5 hearts from you if you don't have enough LP in your $(l:altar/soul_network)Soul Network.$(/l)"
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/lava_sigil1.png",
"bloodmagic:images/entries/sigil/lava_sigil2.png"
],
"title": "Lava Sigil Array",
"border": true,
"text": "The Lava Sigil, next to its crafting array, plus its primary use."
}
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/lava_sigil1.png",
"bloodmagic:images/entries/sigil/lava_sigil2.png"
],
"title": "Lava Sigil Array",
"border": true,
"text": "The Lava Sigil, next to its crafting array, plus its primary use."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Lava Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_lava",
"array.heading": "Lava Sigil",
"array.recipe": "bloodmagic:array/lavasigil",
"array.text": "$(italic)HOT! DO NOT EAT"
}
]
}

View file

@ -0,0 +1,22 @@
{
"name": "Sigil of Magnetism",
"icon": "bloodmagic:sigilofmagnetism",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentmagnetism", 1],
["bloodmagic:sigilofmagnetism", 1]
],
"pages": [
{
"type": "text",
"text": "[WIP Notes]$(br)[Not Yet Implemented]$(br2)Attacts items in the world towards the holder for pickup."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Magnetism Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_magnetism",
"array.heading": "Sigil of Magnetism",
"array.recipe": "bloodmagic:array/magnetismsigil"
}
]
}

View file

@ -2,20 +2,31 @@
"name": "Sigil of the Fast Miner",
"icon": "bloodmagic:miningsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentfastminer", 2],
["bloodmagic:miningsigil", 2]
],
"pages": [
{
"type": "text",
"text": "The $(item)Sigil of the Fast Miner$() is a sigil that, when activated using shift-right-click, will consume 100LP every 10 seconds and apply the Haste potion effect. Thus, it increases your mining, digging, and cutting speeds. Crafted using the $(item)Mining Reagent$() and $(item)Reinforced Slate$() in an alchemy array."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/mining_sigil1.png",
"bloodmagic:images/entries/sigil/mining_sigil2.png"
],
"title": "Fast Miner Sigil Array",
"border": true,
"text": "The Sigil of the Fast Miner's array, plus its primary uses."
}
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/mining_sigil1.png",
"bloodmagic:images/entries/sigil/mining_sigil2.png"
],
"title": "Fast Miner Sigil Array",
"border": true,
"text": "The Sigil of the Fast Miner's array, plus its primary uses."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Mining Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_fastminer",
"array.heading": "Sigil of the Fast Miner",
"array.recipe": "bloodmagic:array/fastminersigil"
}
]
}

View file

@ -0,0 +1,36 @@
{
"name": "Seer's Sigil",
"icon": "bloodmagic:seersigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentsight", 2],
["bloodmagic:seersigil", 2]
],
"pages": [
{
"type": "text",
"text": "The $(item)Seer's Sigil$() is a more advanced form of the $(l:sigil/divination)Divination Sigil$(). Alongside showing the amount of LP in the bound player's $(l:altar/soul_network)Soul Network$(/l), it also shows more information when looking at a $(l:altar/blood_altar)Blood Altar$(/l)."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Sight Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_sight",
"array.heading": "Seer's Sigil",
"array.recipe": "bloodmagic:array/seersigil",
"array.text": "$(italic)When seeing all is not enough"
},
{
"type": "text",
"text": "From top to bottom, we have: $(li)The current Tier of the $(l:altar/blood_altar)Blood Altar$(/l). $(li)The amount of blood currently inside the Altar, and the current total capacity of the Altar. (This defaults to 10,000mb, but may be increased with $(l:altar/blood_rune/capacity_rune)Runes of Capacity$() and $(l:altar/blood_rune/aug_capacity_rune)Runes of Augmented Capacity.$() $(li)The current crafting progress, if any. $(li)LP Consumption/Tick - how much LP the Altar will use per tick when crafting. $(li) Current LP Storage of any $(l:altar/blood_rune/charging_rune)Charging Runes$() you may have."
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/seer_sigil_info.png"
],
"title": "Seer's Sigil Display",
"border": true,
"text": "The Seer's Sigil's displays this HUD when you are looking at a blood Altar."
}
]
}

View file

@ -0,0 +1,23 @@
{
"name": "Void Sigil",
"icon": "bloodmagic:voidsigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentvoid", 1],
["bloodmagic:voidsigil", 1]
],
"pages": [
{
"type": "text",
"text": "The $(item)Void sigil$(), when right-clicked on any fluid, will destroy it at a cost of 50LP per block. Good for clearing out irksome lava flows without all that tedious placing and breaking of individual blocks."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Void Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_void",
"array.heading": "Void Sigil",
"array.recipe": "bloodmagic:array/voidsigil",
"array.text": "$(italic)Better than a Swiffer\u00AE!"
}
]
}

View file

@ -2,20 +2,32 @@
"name": "Water Sigil",
"icon": "bloodmagic:watersigil",
"category": "sigil",
"extra_recipe_mappings":[
["bloodmagic:reagentwater", 2],
["bloodmagic:watersigil", 2]
],
"pages": [
{
"type": "text",
"text": "The $(item)Water Sigil$() is a rather simple sigil. By right clicking on a block, you can drain 100LP from your $(l:altar/soulnetwork)Soul Network$(/l) to place a source block of water in the world. If there's not enough LP, it will instead drain the toll from your health. Crafted using a $(item)Water Reagent$() and a $(item)Blank Slate.$()"
"text": "The $(item)Water Sigil$() is a rather simple sigil. By right clicking on a block, you can drain 100LP from your $(l:altar/soul_network)Soul Network$(/l) to place a source block of water in the world. If there's not enough LP, it will instead drain the toll from your health. Crafted using a $(item)Water Reagent$() and a $(item)Blank Slate.$()"
},
{
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/water_sigil1.png",
"bloodmagic:images/entries/sigil/water_sigil2.png"
],
"title": "Water Sigil Array",
"border": true,
"text": "The Water Sigil, next to its crafting array, plus its primary use."
}
"type": "image",
"images": [
"bloodmagic:images/entries/sigil/water_sigil1.png",
"bloodmagic:images/entries/sigil/water_sigil2.png"
],
"title": "Water Sigil Array",
"border": true,
"text": "The Water Sigil, next to its crafting array, plus its primary use."
},
{
"type": "crafting_2-step_sigil",
"soulforge.heading": "Water Reagent",
"soulforge.recipe": "bloodmagic:soulforge/reagent_water",
"array.heading": "Water Sigil",
"array.recipe": "bloodmagic:array/watersigil",
"array.text": "$(italic)Infinite water, anyone?"
}
]
}

View file

@ -0,0 +1,123 @@
{
"name": "Alchemical Reaction Chamber",
"icon": "bloodmagic:alchemicalreactionchamber",
"category": "utility",
"extra_recipe_mappings":[
["bloodmagic:sanguinereverter", 2],
["bloodmagic:weakbloodshard", 3],
["bloodmagic:explosivepowder", 6],
["bloodmagic:ironfragment", 7],
["bloodmagic:goldfragment", 7],
["bloodmagic:fragment_netherite_scrap", 7],
["bloodmagic:irongravel", 9],
["bloodmagic:goldgravel", 9],
["bloodmagic:gravel_netherite_scrap", 9],
["bloodmagic:ironsand", 7],
["bloodmagic:goldsand", 7],
["bloodmagic:sand_netherite", 7],
["bloodmagic:sulfur", 7],
["bloodmagic:primitive_crystalline_resonator", 8],
["bloodmagic:basiccuttingfluid", 10]
],
"pages": [
{
"type": "text",
"text": "The $(item)Alchemical Reaction Chamber$() isn't fully implemented yet, but among other things it can function as a furnace, offers a form of ore-tripling, revert Blood Orbs, and is currently the only way to get $(item)Weak Blood Shards$(), specifically from an $(l:altar/slates)Imbued Slate$()."
},
{
"type": "crafting",
"recipe": "bloodmagic:arc"
},
{
"type": "crafting_soulforge",
"heading": "Sanguine Reverter",
"recipe": "bloodmagic:soulforge/sanguine_reverter",
"text": "The Sanguine Reverter is used to create Weak Blood Shards, and revert Blood Orbs to their input crafting item."
},
{
"type": "3x_crafting_arc",
"a.heading": "Weak Blood Shard",
"a.recipe": "bloodmagic:arc/weakbloodshard",
"b.heading": "Revert Weak Blood Orb",
"b.recipe": "bloodmagic:arc/reversion/weak_blood_orb",
"c.heading": "Revert Apprentice Blood Orb",
"c.recipe": "bloodmagic:arc/reversion/apprentice_blood_orb"
},
{
"type": "2x_crafting_arc",
"a.heading": "Revert Magician Blood Orb",
"a.recipe": "bloodmagic:arc/reversion/magician_blood_orb",
"b.heading": "Revert Master Blood Orb",
"b.recipe": "bloodmagic:arc/reversion/master_blood_orb",
"b.text": "Turn the page for more uses of the ARC."
},
{
"type": "empty"
},
{
"type": "crafting_alchemy_table",
"heading": "Explosive Powder",
"recipe": "bloodmagic:alchemytable/explosive_powder",
"text": "Explosive Powder in the ARC is used to turn Ores into Ore Fragments for 3x Ore Processing, or turn Ingots into their Sand variant. It can also turn Netherrack into Sulfur and 5mb of Lava."
},
{
"type": "3x_crafting_arc",
"a.heading": "Ore to 3 Ore Fragments",
"a.recipe": "bloodmagic:arc/fragmentsiron",
"b.heading": "Ingot to Metal Sand",
"b.recipe": "bloodmagic:arc/dustsfrom_ingot_iron",
"c.heading": "Sulfur and Lava",
"c.recipe": "bloodmagic:arc/netherrack_to_sulfer",
"c.fluid_output": "minecraft:lava_bucket"
},
{
"type": "crafting_soulforge",
"heading": "Resonator",
"recipe": "bloodmagic:soulforge/primitive_crystalline_resonator",
"text": "The Resonator is used to turn Ore Fragments into the relevant Gravel for continued ore processing, and creates some tiny dusts that are NYI."
},
{
"type": "crafting_arc",
"heading": "Ore Fragment to Metal Gravel",
"recipe": "bloodmagic:arc/gravelsiron"
},
{
"type": "crafting_alchemy_table",
"heading": "Basic Cutting Fluid",
"recipe": "bloodmagic:alchemytable/basic_cutting_fluid",
"text": "Cutting Fluid turns a metal's Gravel into that metal's Sand for continued 3x ore processing. It can also turn an ore directly into two metal Sand for 2x Ore Processing. The same 2x Ore Processing is possible in the Alchemy Table, but doing it in the ARC will save you some LP."
},
{
"type": "2x_crafting_arc",
"a.heading": "Metal Gravel to Metal Sand",
"a.recipe": "bloodmagic:arc/dustsfrom_gravel_iron",
"b.heading": "Ore to 2 Metal Sand",
"b.recipe": "bloodmagic:arc/dustsfrom_ore_iron"
},
{
"type": "crafting",
"heading": "Fuel Cell (Furnace)",
"recipe": "bloodmagic:primitive_furnace_cell",
"text": "The ARC also functions as a Furnace, but the only fuel sources it accepts is the $(item)Primitive Fuel Cell$() or $(l:utility/lava_crystal)Lava Crystal$(/l)."
},
{
"type": "text",
"text": "The Primitive Fuel Cell is good for 128 individual uses. That's more than the Block of Coal used to craft it (60 items), and since it only loses durability when the crafting is finished it will not wase fuel."
},
{
"type": "crafting",
"heading": "Hydration Cell",
"recipe": "bloodmagic:primitive_hydration_cell",
"text": "The Hydration Cell is used to make Clay, the Cornerstone of Balance."
},
{
"type": "2x_crafting_arc",
"a.heading": "Clay from Sand",
"a.recipe": "bloodmagic:arc/clay_from_sand",
"a.fluid_input": "minecraft:water_bucket",
"b.heading": "Clay from Terracotta",
"b.recipe": "bloodmagic:arc/clay_from_terracotta",
"b.fluid_input": "minecraft:water_bucket"
}
]
}

View file

@ -0,0 +1,76 @@
{
"name": "Alchemy Table",
"icon": "bloodmagic:alchemytable",
"category": "utility",
"extra_recipe_mappings":[
["bloodmagic:plantoil", 8],
["bloodmagic:coalsand", 9]
],
"pages": [
{
"type": "text",
"text": "The Alchemy Table takes a little LP and a few ingredients to do some wondrous things!$(br2)A lot of its content is NYI.$(br2)Mouse over the LP arrow for more info."
},
{
"type": "crafting",
"recipe": "bloodmagic:alchemy_table"
},
{
"type": "crafting_alchemy_table",
"heading": "Basic Cutting Fluid",
"recipe": "bloodmagic:alchemytable/basic_cutting_fluid",
"text": "Basic Cutting Fluid is used for 2x Ore Processing. It is also used in the $(l:utility/alchemical_reaction_chamber)Alchemical Reaction Chamber$(/l) for the same purpose."
},
{
"type": "2x_crafting_alchemy_table",
"a.heading": "Iron Sand",
"a.recipe": "bloodmagic:alchemytable/sand_iron",
"b.heading": "Gold Sand",
"b.recipe": "bloodmagic:alchemytable/sand_gold"
},
{
"type": "text",
"text": "The Alchemy Table provides several ways to get vanilla items."
},
{
"type": "3x_crafting_alchemy_table",
"a.heading": "Grass",
"a.recipe": "bloodmagic:alchemytable/grass_block",
"b.heading": "Leather",
"b.recipe": "bloodmagic:alchemytable/leather_from_flesh",
"c.heading": "Bread",
"c.recipe": "bloodmagic:alchemytable/bread"
},
{
"type": "2x_crafting_alchemy_table",
"a.heading": "Clay",
"a.recipe": "bloodmagic:alchemytable/clay_from_sand",
"b.heading": "String",
"b.recipe": "bloodmagic:alchemytable/string"
},
{
"type": "2x_crafting_alchemy_table",
"a.heading": "Flint",
"a.recipe": "bloodmagic:alchemytable/flint_from_gravel",
"b.heading": "Gunpowder",
"b.recipe": "bloodmagic:alchemytable/gunpowder",
"b.text": "Flint is currently bugged, though a great way to get rid of both Gravel and LP!$(br2)Saltpeter NYI in Blood Magic."
},
{
"type": "3x_crafting_alchemy_table",
"a.heading": "Plant Oil",
"a.recipe": "bloodmagic:alchemytable/plantoil_from_wheat",
"b.recipe": "bloodmagic:alchemytable/plantoil_from_carrots",
"c.recipe": "bloodmagic:alchemytable/plantoil_from_taters"
},
{
"type": "3x_crafting_alchemy_table",
"a.heading": "Plant Oil Cont.",
"a.recipe": "bloodmagic:alchemytable/plantoil_from_beets",
"b.heading": "Coal Sand",
"b.recipe": "bloodmagic:alchemytable/sand_coal",
"c.heading": "Explosive Powder",
"c.recipe": "bloodmagic:alchemytable/explosive_powder"
}
]
}

View file

@ -0,0 +1,16 @@
{
"name": "Bloodstone Bricks",
"icon": "bloodmagic:largebloodstonebrick",
"category": "utility",
"pages":[
{
"type": "text",
"text": "Bloodstone Bricks are a decorational block, and used as the capstones for the Tier-4 Blood Altar."
},
{
"type": "crafting",
"recipe": "bloodmagic:largebloodstonebrick",
"recipe2": "bloodmagic:bloodstonebrick"
}
]
}

Some files were not shown because too many files have changed in this diff Show more