minecraft server init
This commit is contained in:
@ -0,0 +1,32 @@
|
||||
/*
|
||||
SevTech: Ages Blood Magic Alchemy Array Script
|
||||
|
||||
This script handles custom integration control to a mod.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
|
||||
function init() {
|
||||
bloodMagic.removeAlchemyArray(<minecraft:redstone:0>, <bloodmagic:slate:3>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:sigil_divination:0>, <betterwithaddons:tweakmat:0>, <bloodmagic:slate:0>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:8>, <minecraft:diamond_sword:0>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:bound_sword:0>.withTag({Unbreakable: 1 as byte, activated: 0 as byte}), <bloodmagic:component:8>, <minecraft:golden_sword:0>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:8>, <minecraft:diamond_pickaxe:0>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:bound_pickaxe:0>.withTag({Unbreakable: 1 as byte, activated: 0 as byte}), <bloodmagic:component:8>, <minecraft:golden_pickaxe:0>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:8>, <minecraft:diamond_axe:0>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:bound_axe:0>.withTag({Unbreakable: 1 as byte, activated: 0 as byte}), <bloodmagic:component:8>, <minecraft:golden_axe:0>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:8>, <minecraft:diamond_shovel:0>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:bound_shovel:0>.withTag({Unbreakable: 1 as byte, activated: 0 as byte}), <bloodmagic:component:8>, <minecraft:golden_shovel:0>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:11>, <bloodmagic:slate:1>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:sigil_blood_light:0>, <bloodmagic:component:11>, <bloodmagic:slate:1>);
|
||||
|
||||
bloodMagic.removeAlchemyArray(<bloodmagic:component:27>, <bloodmagic:slate:1>);
|
||||
bloodMagic.addAlchemyArray(<bloodmagic:sigil_holding:0>, <bloodmagic:component:27>, <bloodmagic:slate:1>);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
/*
|
||||
SevTech: Ages Blood Magic Alchemy Table Script
|
||||
|
||||
This script handles custom integration control to a mod.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
|
||||
function init() {
|
||||
bloodMagic.removeAlchemyTable([<minecraft:wheat:0>, <minecraft:sugar:0>]);
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
/*
|
||||
SevTech: Ages Blood Magic Blood Altar Script
|
||||
|
||||
This script handles custom integration control to a mod.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
|
||||
function init() {
|
||||
bloodMagic.removeAltar(<bloodmagic:blood_orb:0>.withTag({orb: "bloodmagic:apprentice"}));
|
||||
bloodMagic.addAltar(<bloodmagic:blood_orb:0>.withTag({orb: "bloodmagic:apprentice"}), <abyssalcraft:cpearl:0>, 1, 5000, 5, 5);
|
||||
|
||||
bloodMagic.removeAltar(<bloodmagic:blood_orb:0>.withTag({orb: "bloodmagic:weak"}));
|
||||
bloodMagic.addAltar(<bloodmagic:blood_orb:0>.withTag({orb: "bloodmagic:weak"}), <tconstruct:edible:3>, 0, 2000, 2, 1);
|
||||
|
||||
bloodMagic.removeAltar(<bloodmagic:sanguine_book:0>);
|
||||
bloodMagic.addAltar(<bloodmagic:sanguine_book:0>, <primal:plant_cloth:0>, 0, 1000, 20, 0);
|
||||
|
||||
bloodMagic.removeAltar(<bloodmagic:dagger_of_sacrifice:0>);
|
||||
bloodMagic.addAltar(<bloodmagic:dagger_of_sacrifice:0>, <actuallyadditions:item_sword_quartz:0>, 0, 3000, 5, 5);
|
||||
|
||||
bloodMagic.addAltar(<cyclicmagic:food_step:0>, <minecraft:apple:0>, 0, 1500, 5, 5);
|
||||
}
|
17
scripts/crafttweaker/integrations/mods/bloodmagic/init.zs
Normal file
17
scripts/crafttweaker/integrations/mods/bloodmagic/init.zs
Normal file
@ -0,0 +1,17 @@
|
||||
#priority -50
|
||||
|
||||
/*
|
||||
SevTech: Ages Blood Magic Loader Script
|
||||
|
||||
This script handles custom integration control to a mod.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
function init() {
|
||||
scripts.crafttweaker.integrations.mods.bloodmagic.alchemyArray.init();
|
||||
scripts.crafttweaker.integrations.mods.bloodmagic.alchemyTable.init();
|
||||
scripts.crafttweaker.integrations.mods.bloodmagic.bloodAltar.init();
|
||||
scripts.crafttweaker.integrations.mods.bloodmagic.tartaricForge.init();
|
||||
}
|
@ -0,0 +1,122 @@
|
||||
/*
|
||||
SevTech: Ages Blood Magic Tartaric Forge Script
|
||||
|
||||
This script handles custom integration control to a mod.
|
||||
|
||||
Note: These scripts are created and for the usage in SevTech: Ages and other
|
||||
modpacks curated by DarkPacks. You can use these scripts for reference and for
|
||||
learning but not for copying and pasting and claiming as your own.
|
||||
*/
|
||||
import mods.bloodmagic.TartaricForge;
|
||||
|
||||
function init() {
|
||||
TartaricForge.removeRecipe([<minecraft:redstone:0>, <pickletweaks:dye_powder:0>, <minecraft:gunpowder:0>, <minecraft:coal:*>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:arcane_ashes:0>,
|
||||
[<betterwithaddons:tweakmat:0>, <minecraft:gunpowder:0>, <pickletweaks:dye_powder:0>, <minecraft:coal:1>],
|
||||
0, 0
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:glowstone:0>, <minecraft:torch:0>, <minecraft:redstone:0>, <minecraft:redstone:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:component:11>,
|
||||
[<betterwithmods:candle:*>, <minecraft:torch:0>, <betterwithaddons:tweakmat:0>, <betterwithaddons:tweakmat:0>],
|
||||
200, 10
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:ice:0>, <minecraft:snowball:0>, <minecraft:snowball:0>, <minecraft:redstone:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:component:32>,
|
||||
[<minecraft:snow:0>, <minecraft:snowball:0>, <minecraft:snowball:0>, <betterwithaddons:tweakmat:0>],
|
||||
80, 10
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<bloodmagic:teleposer:0>, <minecraft:diamond:0>, <minecraft:ender_pearl:0>, <minecraft:obsidian:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:component:18>,
|
||||
[<bloodmagic:teleposer:0>, metals.platinum.ingot, <minecraft:ender_pearl:0>, <minecraft:obsidian:0>],
|
||||
1500, 200
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:iron_block:0>, <minecraft:diamond:0>, <bloodmagic:slate:2>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:master_routing_node:0>,
|
||||
[metals.iron.block, metals.platinum.ingot, <bloodmagic:slate:2>],
|
||||
400, 200
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:diamond_chestplate:0>, <bloodmagic:soul_gem:1>, <minecraft:iron_block:0>, <minecraft:obsidian:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:sentient_armour_gem:0>,
|
||||
[<minecraft:golden_chestplate:0>, <bloodmagic:soul_gem:1>, metals.iron.block, <minecraft:obsidian:0>],
|
||||
240, 150
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:ghast_tear:0>, <minecraft:feather:0>, <minecraft:feather:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:component:2>,
|
||||
[<minecraft:ghast_tear:0>, <twilightforest:raven_feather:0>, <twilightforest:raven_feather:0>, <minecraft:elytra:0>],
|
||||
128, 20
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<bloodmagic:soul_forge:0>, <minecraft:stone:0>, <minecraft:dye:4>, <minecraft:glass:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:demon_crystallizer:0>,
|
||||
[<bloodmagic:soul_forge:0>, <ore:stone>, metals.manyullyn.ingot, <ore:blockGlass>],
|
||||
500, 100
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<bloodmagic:soul_gem:0>, <minecraft:diamond:0>, <minecraft:redstone_block:0>, <minecraft:lapis_block:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:soul_gem:1>,
|
||||
[<bloodmagic:soul_gem:0>, <abyssalcraft:shadowshard:0>, metals.bronze.ingot, <minecraft:fermented_spider_eye:0>],
|
||||
60, 20
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<bloodmagic:soul_gem:1>, <minecraft:diamond:0>, <minecraft:gold_block:0>, <bloodmagic:slate:2>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:soul_gem:2>,
|
||||
[<bloodmagic:soul_gem:1>, <abyssalcraft:shadowgem:0>, metals.gold.block, <bloodmagic:slate:2>],
|
||||
240, 50
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:stick:0>, <bloodmagic:slate:1>, <minecraft:dye:4>, <minecraft:dye:4>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:node_router:0>,
|
||||
[<ore:stickWood>, <bloodmagic:slate:1>, <minecraft:dye:4>, <minecraft:blaze_rod:0>],
|
||||
400, 5
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:cauldron:0>, <minecraft:stone:0>, <minecraft:dye:4>, <minecraft:diamond:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:demon_crucible:0>,
|
||||
[<minecraft:cauldron:0>, <ore:stone>, <minecraft:dye:4>, metals.platinum.ingot],
|
||||
400, 5
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:glass:0>, <minecraft:stone:0>, <bloodmagic:slate:0>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:component:10>,
|
||||
[<ore:blockGlass>, <bloodmagic:slate:0>, <minecraft:dye:4>, metals.silver.ingot],
|
||||
400, 10
|
||||
);
|
||||
|
||||
TartaricForge.removeRecipe([<minecraft:redstone:0>, <minecraft:gold_ingot:0>, <minecraft:glass:0>, <pickletweaks:dye_powder:11>]);
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:soul_gem:0>,
|
||||
[<betterwithaddons:tweakmat:0>, metals.bronze.ingot, <pickletweaks:dye_powder:11>, <abyssalcraft:shadowfragment:0>],
|
||||
1, 1
|
||||
);
|
||||
|
||||
TartaricForge.addRecipe(
|
||||
<astralsorcery:itemcraftingcomponent:2>,
|
||||
[<extendedcrafting:material:0>, <astralsorcery:itemrockcrystalsimple:0>, <appliedenergistics2:material:46>, <minecraft:dye:4>],
|
||||
100, 20
|
||||
);
|
||||
|
||||
TartaricForge.addRecipe(
|
||||
<bloodmagic:sentient_sword:0>,
|
||||
[<bloodmagic:soul_gem:0>, <actuallyadditions:item_sword_quartz:0>],
|
||||
0, 0
|
||||
);
|
||||
}
|
Reference in New Issue
Block a user