Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*recipes.addShapeless(name,output,inputs,function,action)
- recipes.addShaped(name,output,inputs,function,action)
- recipes.removeShaped(output, inputs)
- recipes.removeShapeless(output, inputs, wildcard)
- mods.betterwithmods.StockedCrucible.add(IItemStack inputs, @optional IItemStack secondary Output, IIngredient[]
- <minecraft:spawn_egg>.withTag({EntityTag:{id:"minecraft:zombie"}});
- */
- //variables
- val Door = <minecraft:wooden_door>;
- val Planks = <minecraft:planks>;
- val Sticks = <minecraft:stick>;
- val glass = <minecraft:glass>;
- val Egg = <minecraft:egg>;
- val diamondBlock = <minecraft:diamond_block>;
- val ironBars = <minecraft:iron_bars>;
- val Bones = <minecraft:bone>;
- val flesh = <minecraft:rotten_flesh>;
- val BlazeRod = <minecraft:blaze_rod>;
- val Spawner = <minecraft:mob_spawner>;
- val Zombie = <minecraft:spawn_egg>.withTag({EntityTag:{id:"minecraft:zombie"}});
- val Skeleton = <minecraft:spawn_egg>.withTag({EntityTag:{id:"minecraft:skeleton"}});
- val Blaze = <minecraft:spawn_egg>.withTag({EntityTag:{id:"minecraft:blaze"}});
- val soulUrn = <betterwithmods:urn:8>;
- //OreDictions
- val tinGear = <ore:gearTin>;
- val coalDust = <ore:dustCoal>;
- val carbonDust = <ore:dustCarbon>;
- val steel = <ore:ingotSteel>;
- //machines
- val machineFrame = <thermalexpansion:frame>;
- //ingots
- val SFsteel = <betterwithmods:material:14>;
- //removing StokedCrucible recipes
- mods.betterwithmods.StokedCrucible.remove(SFsteel);
- //Adding StokedCrucible Recipes
- mods.betterwithmods.StokedCrucible.add(SFsteel,<betterwithmods:urn>,[coalDust | carbonDust,soulUrn,steel]);
- //adding shaped recipes
- recipes.addShaped("TEmachineFrame", machineFrame, [[SFsteel, glass, SFsteel],
- [glass, tinGear, glass],
- [SFsteel, glass, SFsteel]]);
- recipes.addShaped("spawner", Spawner, [[ironBars, ironBars, ironBars],
- [ironBars, diamondBlock, ironBars],
- [ironBars, ironBars, ironBars]]);
- recipes.addShaped("SkeleEgg", Skeleton, [[Bones, Bones, Bones],
- [Bones, Egg, Bones],
- [Bones, Bones, Bones]]);
- recipes.addShaped("ZombieEgg", Zombie, [[flesh, flesh, flesh],
- [flesh, Egg, flesh],
- [flesh, flesh, flesh]]);
- recipes.addShaped("BlazeEgg", Blaze, [[BlazeRod, BlazeRod, BlazeRod],
- [BlazeRod, Egg, BlazeRod],
- [BlazeRod, BlazeRod, BlazeRod]]);
- /*recipes.addShaped("door", Door, [[Planks, Planks, null],
- [Planks, Planks, null],
- [Planks, Planks, null]]); */
- //adding shapeless recipes
- recipes.addShapeless("sticks", Sticks*2, [Planks]);
- //removing shaped recipes
- recipes.removeShaped(machineFrame);
- //removing shapeless recipes
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement