53 lines
1.4 KiB
Plaintext
53 lines
1.4 KiB
Plaintext
#priority 2600
|
|
|
|
/*
|
|
SevTech: Ages OreDict Tools Script.
|
|
|
|
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 crafttweaker.item.IItemStack;
|
|
|
|
/*
|
|
Shears
|
|
*/
|
|
var shears as IItemStack[] = [
|
|
<ceramics:clay_shears:*>,
|
|
<cyclicmagic:ender_wool:*>,
|
|
<minecraft:shears:*>,
|
|
<mysticalagriculture:inferium_shears:*>,
|
|
<mysticalagriculture:intermedium_shears:*>,
|
|
<mysticalagriculture:prudentium_shears:*>,
|
|
<mysticalagriculture:superium_shears:*>,
|
|
<mysticalagriculture:supremium_shears:*>,
|
|
<primal:flint_shears:*>,
|
|
<primal:quartz_shears:*>,
|
|
<primal_tech:bone_shears:*>,
|
|
<thebetweenlands:syrmorite_shears:*>
|
|
];
|
|
|
|
for shear in shears {
|
|
<ore:shears>.add(shear);
|
|
<ore:toolShears>.add(shear);
|
|
}
|
|
|
|
/*
|
|
Actually Additions Drills
|
|
*/
|
|
for i in 0 to 16 {
|
|
var drill = <actuallyadditions:item_drill:0>.definition.makeStack(i);
|
|
<ore:toolDrill>.add(drill);
|
|
}
|
|
|
|
// Knightminer made me do it! XD
|
|
<ore:knightTorch>.add(<minecraft:torch:0>);
|
|
<ore:knightTorch>.add(<tconstruct:stone_torch:0>);
|
|
|
|
// AE Wrenches
|
|
<ore:wrenchQuartz>.add(<appliedenergistics2:certus_quartz_wrench:0>);
|
|
<ore:wrenchQuartz>.add(<appliedenergistics2:nether_quartz_wrench:0>);
|
|
|
|
// Certus Quartz Charged (This is for IE Excavator support)
|
|
<ore:crystalCertusQuartzCharged>.add(<appliedenergistics2:material:1>);
|