Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import crafttweaker.mods.IMod;
- import crafttweaker.mods.ILoadedMods;
- import crafttweaker.item.IIngredient;
- print("Before pneumaticcraft list");
- val pneumaticcraft = loadedMods["pneumaticcraft"];
- print("After pneumaticcraft list");
- val additionalItems = [
- <minecraft:iron_pickaxe>,
- <minecraft:iron_sword>,
- <minecraft:iron_axe>,
- <minecraft:iron_shovel>,
- <minecraft:iron_hoe>,
- <minecraft:diamond_pickaxe>,
- <minecraft:diamond_sword>,
- <minecraft:diamond_axe>,
- <minecraft:diamond_shovel>,
- <minecraft:diamond_hoe>,
- <minecraft:golden_pickaxe>,
- <minecraft:golden_sword>,
- <minecraft:golden_axe>,
- <minecraft:golden_shovel>,
- <minecraft:golden_hoe>,
- <minecraft:iron_boots>,
- <minecraft:iron_leggings>,
- <minecraft:iron_helmet>,
- <minecraft:iron_chestplate>,
- <minecraft:golden_boots>,
- <minecraft:golden_leggings>,
- <minecraft:golden_helmet>,
- <minecraft:golden_chestplate>,
- <minecraft:diamond_boots>,
- <minecraft:diamond_leggings>,
- <minecraft:diamond_chestplate>,
- <minecraft:diamond_helmet>,
- <minecraft:white_shulker_box>,
- <minecraft:orange_shulker_box>,
- <minecraft:magenta_shulker_box>,
- <minecraft:light_blue_shulker_box>,
- <minecraft:yellow_shulker_box>,
- <minecraft:lime_shulker_box>,
- <minecraft:pink_shulker_box>,
- <minecraft:gray_shulker_box>,
- <minecraft:silver_shulker_box>,
- <minecraft:cyan_shulker_box>,
- <minecraft:purple_shulker_box>,
- <minecraft:blue_shulker_box>,
- <minecraft:brown_shulker_box>,
- <minecraft:green_shulker_box>,
- <minecraft:red_shulker_box>,
- <minecraft:black_shulker_box>,
- <minecraft:end_crystal>,
- <mekanismtools:ironpaxel>,
- <mekanismtools:goldpaxel>,
- <mekanismtools:diamondpaxel>,
- <mekanismtools:bronzepaxel>
- ] as IIngredient[];
- print("Before computercraft list");
- val computercraft = loadedMods["computercraft"];
- print("After computercraft list");
- for item in pneumaticcraft.items{
- mods.recipestages.Recipes.setRecipeStage("pneumaticAge",item);
- }
- for item in additionalItems{
- mods.recipestages.Recipes.setRecipeStage("pneumaticAge",item);
- }
- for item in computercraft.items{
- mods.recipestages.Recipes.setRecipeStage("pneumaticAge",item);
- }
- mods.TimeStages.addTimer("stoneAge","pneumaticAge",2,"hours");
Advertisement
Add Comment
Please, Sign In to add comment