With Jordsta making Thaumcraft for RR I feel like I need to release my TC too.
So, A recap on the recipes
I have changed the shards recipe a little bit, each craft now yields 2 shards instead of the one, one for each quartz
By copying this and pasting it to a config file in minetweaker (I chose the altar one) This will completely add Thaumcraft to Running red. Minus aura nodes and the taint stuff.
You can get Vis from killing mobs by hand, Ordo is the hardest to get. Taint you can get by overflowing a crucible with something and spawning Taint slimes. I didn't know how or where to start by adding taint in so I kinda left it at that.
The Lore behind my ideas for the recipes.
So, A recap on the recipes
Quartz is redstone in an altar
Shimmer leaf is quicksilver in an altar
Cinder pearl is a blaze rod in an altar
Manabean is cocoa in an altar
Amber is a slime ball in an altar
Greatwood saplings are Fire, Ordo, Entropy, and Air shards, 3 cinder pearls, an oak sapling, and a master orb
Silverwood saplings are Fire, Ordo, Entropy, and Air shards, 3 Shimmerleaf, a greatwood sapling, and a master orb
All the shards are 2 Quartz, 1 weak binding agent, and 2 blood magic elementals in an alchemistry set
So Incendium for fire, Aquasalus for water and so on
Quick silver is a water bucket, 2 silver and 2 creptious in an alchemistry set
Shimmer leaf is quicksilver in an altar
Cinder pearl is a blaze rod in an altar
Manabean is cocoa in an altar
Amber is a slime ball in an altar
Greatwood saplings are Fire, Ordo, Entropy, and Air shards, 3 cinder pearls, an oak sapling, and a master orb
Silverwood saplings are Fire, Ordo, Entropy, and Air shards, 3 Shimmerleaf, a greatwood sapling, and a master orb
All the shards are 2 Quartz, 1 weak binding agent, and 2 blood magic elementals in an alchemistry set
So Incendium for fire, Aquasalus for water and so on
Quick silver is a water bucket, 2 silver and 2 creptious in an alchemistry set
I have changed the shards recipe a little bit, each craft now yields 2 shards instead of the one, one for each quartz
# Add Thaumcraft recipes
# add recipe for Greatwood sapling
recipes.addShaped(tile.blockCustomPlant, [[item.ItemShard, tile.blockCustomPlant."3", item.ItemShard."5"], [tile.blockCustomPlant."3", tile.sapling, tile.blockCustomPlant."3"], [item.ItemShard."1", item.masterBloodOrb, item.ItemShard."4"]]);
# add recipe for Silverwood sapling
recipes.addShaped(tile.blockCustomPlant."1", [[item.ItemShard, tile.blockCustomPlant."2", item.ItemShard."5"], [tile.blockCustomPlant."2", tile.blockCustomPlant, tile.blockCustomPlant."2"], [item.ItemShard."1", item.masterBloodOrb, item.ItemShard."4"]]);
#altar recipes
# add recipe for Quartz
mods.bloodmagic.altar.addRecipe(item.redstone, item.netherquartz, 2, 500);
#add recipe for Shimmerleaf
mods.bloodmagic.altar.addRecipe(item.ItemResource."3", tile.blockCustomPlant."2", 3, 2000);
#add recipe for Cinderpearl
mods.bloodmagic.altar.addRecipe(item.blazeRod, tile.blockCustomPlant."3", 3, 2000);
#add recipe for Manabean
mods.bloodmagic.altar.addRecipe(item.dyePowder.brown, item.ItemManaBean, 4, 10000);
#add Recipe for Amber
mods.bloodmagic.altar.addRecipe(item.slimeball, item.ItemResource."6", 3, 500);
#add Alchemistry recipes
#Fire
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."1"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.incendium, item.incendium], 3, 10);
#Water
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."2"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.aquasalus, item.aquasalus], 3, 10);
#Air
mods.bloodmagic.alchemy.addRecipe(item.ItemShard*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.aether, item.aether], 3, 10);
#Earth
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."3"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.terrae, item.terrae], 3, 10);
#Ordo
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."4"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.sanctus, item.sanctus], 3, 10);
#Entrapy
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."5"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.crepitous, item.crepitous], 3, 10);
#Quick silver
mods.bloodmagic.alchemy.addRecipe(item.ItemResource."3", [item.bucketWater, item.thermalexpansion.material.ingotSilver, item.thermalexpansion.material.ingotSilver, item.crepitous, item.crepitous], 3, 10);
# add recipe for Greatwood sapling
recipes.addShaped(tile.blockCustomPlant, [[item.ItemShard, tile.blockCustomPlant."3", item.ItemShard."5"], [tile.blockCustomPlant."3", tile.sapling, tile.blockCustomPlant."3"], [item.ItemShard."1", item.masterBloodOrb, item.ItemShard."4"]]);
# add recipe for Silverwood sapling
recipes.addShaped(tile.blockCustomPlant."1", [[item.ItemShard, tile.blockCustomPlant."2", item.ItemShard."5"], [tile.blockCustomPlant."2", tile.blockCustomPlant, tile.blockCustomPlant."2"], [item.ItemShard."1", item.masterBloodOrb, item.ItemShard."4"]]);
#altar recipes
# add recipe for Quartz
mods.bloodmagic.altar.addRecipe(item.redstone, item.netherquartz, 2, 500);
#add recipe for Shimmerleaf
mods.bloodmagic.altar.addRecipe(item.ItemResource."3", tile.blockCustomPlant."2", 3, 2000);
#add recipe for Cinderpearl
mods.bloodmagic.altar.addRecipe(item.blazeRod, tile.blockCustomPlant."3", 3, 2000);
#add recipe for Manabean
mods.bloodmagic.altar.addRecipe(item.dyePowder.brown, item.ItemManaBean, 4, 10000);
#add Recipe for Amber
mods.bloodmagic.altar.addRecipe(item.slimeball, item.ItemResource."6", 3, 500);
#add Alchemistry recipes
#Fire
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."1"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.incendium, item.incendium], 3, 10);
#Water
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."2"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.aquasalus, item.aquasalus], 3, 10);
#Air
mods.bloodmagic.alchemy.addRecipe(item.ItemShard*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.aether, item.aether], 3, 10);
#Earth
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."3"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.terrae, item.terrae], 3, 10);
#Ordo
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."4"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.sanctus, item.sanctus], 3, 10);
#Entrapy
mods.bloodmagic.alchemy.addRecipe(item.ItemShard."5"*2, [item.netherquartz, item.netherquartz, item.weakBindingAgent, item.crepitous, item.crepitous], 3, 10);
#Quick silver
mods.bloodmagic.alchemy.addRecipe(item.ItemResource."3", [item.bucketWater, item.thermalexpansion.material.ingotSilver, item.thermalexpansion.material.ingotSilver, item.crepitous, item.crepitous], 3, 10);
By copying this and pasting it to a config file in minetweaker (I chose the altar one) This will completely add Thaumcraft to Running red. Minus aura nodes and the taint stuff.
You can get Vis from killing mobs by hand, Ordo is the hardest to get. Taint you can get by overflowing a crucible with something and spawning Taint slimes. I didn't know how or where to start by adding taint in so I kinda left it at that.
The Lore behind my ideas for the recipes.
With the redstone to quartz recipe, my thought was you are crystallizing the blood in the redstone, doing this reduces it's conductivity, but by binding elemental fragments to the crystallized blood forums the elemental shards.
With the quicksilver, the Crepitous is desolving the silver in the water forming a liquid metal.
Cinderpearls are made by adding just enough life to a blaze rod to form a flower without forming a blaze, and the shimmerleaf is being brought to life by blood as well.
The saplings you are taking the elemental crystals and forming them into magic infusing the sapling with said magic. The silverwood takes a bit more, needing the greatwood as a base.
Amber and mana beans I didn't have any real lore behind them.
With the quicksilver, the Crepitous is desolving the silver in the water forming a liquid metal.
Cinderpearls are made by adding just enough life to a blaze rod to form a flower without forming a blaze, and the shimmerleaf is being brought to life by blood as well.
The saplings you are taking the elemental crystals and forming them into magic infusing the sapling with said magic. The silverwood takes a bit more, needing the greatwood as a base.
Amber and mana beans I didn't have any real lore behind them.