Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Recipe uses kiln and coke oven to make extra lives from a dragon heart and some magical wood
- # Author: Player_Athena
- import mods.immersiveengineering.AlloySmelter as kiln;
- import mods.immersiveengineering.CokeOven as cokeOven;
- print("<3 Extra Lives Recipe Loading E>");
- val goldApple = <minecraft:golden_apple:1>;
- val magicWood = <extrautils2:decorativesolidwood:0>;
- val heart = <scalinghealth:heartcontainer>;
- val quarLife = <betterquesting:extra_life:2>;
- val halfLife = <betterquesting:extra_life:1>;
- val life = <betterquesting:extra_life:0>;
- val egg = <minecraft:dragon_egg>;
- life.addTooltip(format.yellow("Eating the oven roasted egg of a dragon seems to yield an extra life"));
- recipes.remove(life);
- recipes.remove(halfLife);
- recipes.remove(quarLife);
- # Recipe for half lives
- recipes.addShapedMirrored(halfLife*4,
- [[magicWood,magicWood,magicWood],
- [magicWood,goldApple,magicWood],
- [magicWood,magicWood,magicWood]]);
- # Recipe for Dragon Egg
- kiln.addRecipe(egg,halfLife,heart,12000);
- # Dragon Egg to life
- cokeOven.addRecipe(life,0,egg,1200);
Add Comment
Please, Sign In to add comment