Description

Sanctus is a mod created for the Catholicraft server and is part of that server's Newton modpack. It is shared here for others to use and enjoy in their own worlds. Sanctus consists of primarily aesthetic items for building and decorating churches in a Roman Catholic style, and further blocks and items are planned for the future. If you have requests for a specific thing you'd like to see here, please leave a comment.
This mod depends on Custom Stuff 4. This mod was created using Custom Stuff 4, Chisel & Bits for block models, and pixel art made in piskel. Holy Water based on this lovely CC licensed game art from Bonsaiheldin.
Note: these items are only available in the creative tab at the moment. Since Curseforge will not allow me to upload a ZS file alongside the mod, please use the following CraftTweaker script with CT2 for 1.12.2:
//recipe file for Sanctus
import crafttweaker.enchantments.IEnchantment;
import crafttweaker.data.IData;
val book = <sanctus_mod:book_of_blessing>.anyDamage();
recipes.addShaped("water_stick", <sanctus_mod:aspergillum>.withTag({ench: [{lvl: 7, id: 17}], HideFlags: 2, AttributeModifiers: [{UUIDMost: 8055, UUIDLeast: 718025, Amount: 7, AttributeName: "generic.attackDamage", Operation: 0, Name: "generic.attackDamage"}]}), [[null, null, <sanctus_mod:holy_water>],[null, <minecraft:iron_ingot>, null], [<minecraft:iron_ingot>, null, null]]);
recipes.addShaped("sanctus_lamp", <sanctus_mod:sanctuary_lamp>, [[<minecraft:gold_nugget>, <minecraft:gold_ingot>, <minecraft:gold_nugget>],[<minecraft:stained_glass:14>, <minecraft:glowstone>, <minecraft:stained_glass:14>], [<minecraft:gold_nugget>, <minecraft:gold_ingot>, <minecraft:gold_nugget>]]);
recipes.addShapeless("holysalt", <sanctus_mod:salt>, [book.transformDamage(),<ore:dustSalt>]);
recipes.addShapeless("holywater", <sanctus_mod:holy_water>, [book.transformDamage(),<minecraft:potion>.withTag({Potion: "minecraft:water"})]);
recipes.addShapeless("host", <sanctus_mod:host>, [book.transformDamage(),<minecraft:bread>]);
recipes.addShaped("altar", <sanctus_mod:altar> * 4, [[<minecraft:wool>, <minecraft:wool>, <minecraft:wool>],[<minecraft:stonebrick>, <minecraft:wool:14>, <minecraft:stonebrick>], [<minecraft:stonebrick>, <minecraft:stonebrick>, <minecraft:stonebrick>]]);
recipes.addShaped("kneeler", <sanctus_mod:kneeler> * 4, [[null, null, <ore:plankWood>],[null, null, <ore:plankWood>], [<minecraft:wool:*>, <ore:slabWood>, <ore:plankWood>]]);
recipes.addShaped("tabernacle", <sanctus_mod:tabernacle>, [[<ore:nuggetGold>, <ore:ingotGold>, <ore:nuggetGold>],[<ore:ingotGold>, <ore:chest>, <ore:ingotGold>], [<ore:ingotGold>, <ore:plankWood>, <ore:ingotGold>]]);
recipes.addShapeless("bookofblessings", <sanctus_mod:book_of_blessing>, [<ore:dyeBlack>,<minecraft:book>,<ore:dyeRed>,<ore:ingotGold>,<minecraft:feather>]);
//File End