Advertisement
supersaiyansubtlety

smooth-and-polished.zs

Feb 14th, 2020
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. import crafttweaker.item.IItemStack;
  2.  
  3.  
  4. var twoByTwo as IItemStack [IItemStack] =
  5. {
  6. <quark:limestone:1> : <quark:limestone>,
  7. <quark:slate:1> : <quark:slate>,
  8. <quark:basalt:1> : <quark:basalt>,
  9. <quark:polished_netherrack> : <minecraft:netherrack>,
  10. <quark:marble:1> : <quark:marble>,
  11. <minecraft:stone:4> : <minecraft:stone:3>,
  12. <quark:soul_sandstone:2> : <quark:sandstone_new:4>,
  13. <minecraft:sandstone:2> : <quark:sandstone_new>,
  14. /* <additionalenderblocks:smooth_end_stone> : <minecraft:end_stone>, */
  15. <minecraft:stone:6> : <minecraft:stone:5>,
  16. <minecraft:red_sandstone:2> : <quark:sandstone_new:2>,
  17. <minecraft:stone:2> : <minecraft:stone:1>,
  18. <twilightforest:maze_stone:2> : <twilightforest:maze_stone>,
  19. <quark:jasper:1> : <quark:jasper>,
  20. };
  21.  
  22. var twoByTwoRemove as IItemStack [IItemStack] =
  23. {
  24. <quark:soul_sandstone:2> : <quark:soul_sandstone>,
  25. <minecraft:sandstone:2> : <minecraft:sandstone>,
  26. <minecraft:red_sandstone:2> : <minecraft:red_sandstone>,
  27. <twilightforest:maze_stone:2> : <twilightforest:maze_stone>
  28. };
  29.  
  30. var oShape as IItemStack [IItemStack] =
  31. {
  32. <quark:sandstone_new:4> : <quark:soul_sandstone>,
  33. <quark:sandstone_new> : <minecraft:sandstone>,
  34. <quark:sandstone_new:2> : <minecraft:red_sandstone>
  35. };
  36.  
  37. for output, input in twoByTwo
  38. {
  39. recipes.removeShaped(output * 4, [[input, input], [input, input]]);
  40. furnace.addRecipe(output, input, 0.5);
  41. }
  42.  
  43. for output, input in twoByTwoRemove
  44. {
  45. recipes.removeShaped(output * 4, [[input, input], [input, input]]);
  46. }
  47.  
  48. for output, input in oShape
  49. {
  50. recipes.removeShaped(output * 8, [[input, input, input], [input, null, input], [input, input, input]]);
  51. furnace.addRecipe(output, input, 0.5);
  52. }
  53.  
  54. furnace.remove(<minecraft:netherbrick>);
  55. furnace.addRecipe(<minecraft:netherbrick>, <vbe:slabnetherrack>, 0.5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement