MoJoCreatior

Enigmatica2expert, Questing Lives

Apr 28th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. # Recipe uses kiln and coke oven to make extra lives from a dragon heart and some magical wood
  2. # Author: Player_Athena
  3.  
  4. import mods.immersiveengineering.AlloySmelter as kiln;
  5. import mods.immersiveengineering.CokeOven as cokeOven;
  6.  
  7. print("<3 Extra Lives Recipe Loading E>");
  8.  
  9. val goldApple = <minecraft:golden_apple:1>;
  10. val magicWood = <extrautils2:decorativesolidwood:0>;
  11. val heart = <scalinghealth:heartcontainer>;
  12. val quarLife = <betterquesting:extra_life:2>;
  13. val halfLife = <betterquesting:extra_life:1>;
  14. val life = <betterquesting:extra_life:0>;
  15. val egg = <minecraft:dragon_egg>;
  16.  
  17. life.addTooltip(format.yellow("Eating the oven roasted egg of a dragon seems to yield an extra life"));
  18.  
  19. recipes.remove(life);
  20. recipes.remove(halfLife);
  21. recipes.remove(quarLife);
  22.  
  23. # Recipe for half lives
  24. recipes.addShapedMirrored(halfLife*4,
  25. [[magicWood,magicWood,magicWood],
  26. [magicWood,goldApple,magicWood],
  27. [magicWood,magicWood,magicWood]]);
  28.  
  29. # Recipe for Dragon Egg
  30. kiln.addRecipe(egg,halfLife,heart,12000);
  31.  
  32. # Dragon Egg to life
  33. cokeOven.addRecipe(life,0,egg,1200);
Add Comment
Please, Sign In to add comment