katubug

should work

Jan 12th, 2020
6,015
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.13 KB | None | 0 0
  1. var defaultKilnCookTime as int = 200;
  2. var defaultKilnCookTimeRecipes as IItemStack[][IItemStack] = {
  3.  
  4. /*
  5. Clay Kiln
  6.  
  7. The following script is heavily based on the one made for the modpack SevTech Ages made by the DarkPacks team as a base for the custom recipes used in Rebirth of the Night, all the credit goes to them
  8. Source: https://github.com/DarkPacks/SevTech-Ages/blob/master/src/scripts/crafttweaker/integrations/mods/primalTech.zs
  9.  
  10. mods.primaltech.ClayKiln.addRecipe(IItemStack output, IIngredient input, int cooktime);
  11. */
  12.  
  13.  
  14. <betterwithmods:cooking_pot:1>: [
  15. <betterwithmods:unfired_pottery>, 500
  16. ],
  17. <ceramics:clay_barrel:0>: [
  18. <ceramics:clay_barrel_unfired:0>,200
  19. ],
  20. <betterwithmods:planter>: [
  21. <betterwithmods:unfired_pottery:1>, 500
  22. ],
  23. <betterwithmods:urn>: [
  24. <betterwithmods:unfired_pottery:2>, 200
  25. ],
  26. <betterwithmods:vase>: [
  27. <betterwithmods:unfired_pottery:3>, 300
  28. ],
  29. <minecraft:cake>: [
  30. <betterwithmods:raw_pastry>, 200
  31. ],
  32. <ceramics:clay_barrel:1>: [
  33. <ceramics:clay_barrel_unfired:1>,200
  34. ],
  35. <ceramics:clay_bucket:0>: [
  36. <ceramics:clay_bucket_block:0>,200
  37. ],
  38. <minecraft:brick:0>: [
  39. <minecraft:clay_ball:0>,200
  40. ],
  41. <minecraft:pumpkin_pie>: [
  42. <betterwithmods:raw_pastry:2>, 200
  43. ],
  44. <minecraft:cookie>*8: [
  45. <betterwithmods:raw_pastry:3>, 200
  46. ],
  47. <minecraft:bread>: [
  48. <betterwithmods:raw_pastry:4>, 200
  49. ],
  50. <betterwithmods:apple_pie>: [
  51. <betterwithmods:raw_pastry:5>, 200
  52. ],
  53. <minecraft:netherbrick>: [
  54. <betterwithmods:unfired_pottery:5>, 50
  55. ],
  56. <minecraft:stone:0>: [
  57. <minecraft:cobblestone:0>,200
  58. ],
  59. <minecraft:stone:1>: [
  60. <betterwithmods:cobblestone:0>,200
  61. ],
  62. <minecraft:stone:3>: [
  63. <betterwithmods:cobblestone:1>,200
  64. ],
  65. <minecraft:stone:5>: [
  66. <betterwithmods:cobblestone:2>,200
  67. ],
  68. <ceramics:unfired_clay:5>: [
  69. <ceramics:unfired_clay:4>,200
  70. ],
  71. <minecraft:blaze_powder>: [
  72. <minecraft:fire_charge>, 500
  73. ]
  74. };
  75.  
  76. for output, inputs in defaultKilnCookTimeRecipes {
  77. for input in inputs {
  78. ClayKiln.addRecipe(output, input, defaultKilnCookTime);
  79. }}
Advertisement
Add Comment
Please, Sign In to add comment