stations.lua 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. stations.dual_register_recipe('woodworking', {
  2. input = {
  3. ['furniture:wheel'] = 1,
  4. ['default:stick'] = 4,
  5. ['group:wood'] = 2,
  6. ['farming:cotton'] = 2,
  7. },
  8. output = 'stations:spinning_wheel',
  9. })
  10. stations.dual_register_recipe('woodworking', {
  11. input = {
  12. ['group:tree'] = 4,
  13. ['default:stick'] = 2,
  14. ['ropes:ropesegment'] = 2,
  15. },
  16. output = 'stations:weaving_loom',
  17. })
  18. stations.dual_register_recipe('woodworking', {
  19. input = {
  20. ['furniture:fabric_white'] = 4,
  21. ['furniture:thread_white'] = 10,
  22. ['group:wood'] = 4,
  23. },
  24. output = 'stations:sewing',
  25. })
  26. stations.dual_register_recipe('woodworking', {
  27. input = {
  28. ['furniture:fabric_white'] = 3,
  29. ['earthbuild:clay_pot_water'] = 1,
  30. ['group:wood'] = 5,
  31. },
  32. output = 'stations:dying',
  33. })
  34. stations.dual_register_recipe('woodworking', {
  35. input = {
  36. ['default:paper'] = 2,
  37. ['dye:black'] = 1,
  38. ['furniture:brush'] = 1,
  39. ['scaffolding:scaffolding_wrench'] = 1,
  40. ['group:wood'] = 5,
  41. },
  42. output = 'stations:printing_press',
  43. })
  44. stations.dual_register_recipe('woodworking', {
  45. input = {
  46. ['earthbuild:wattle'] = 2,
  47. ['moreblocks:slab_iron_stone'] = 1,
  48. ['group:fabric'] = 1,
  49. ['group:stick'] = 1,
  50. ['group:wood'] = 3,
  51. },
  52. output = 'stations:flour_mill',
  53. })
  54. stations.dual_register_recipe('woodworking', {
  55. input = {
  56. ['moreblocks:slab_iron_stone'] = 1,
  57. ['group:stick'] = 1,
  58. ['group:wood'] = 3,
  59. },
  60. output = 'stations:pottery',
  61. })
  62. stations.dual_register_recipe('woodworking', {
  63. input = {
  64. ['default:furnace'] = 1,
  65. ['group:stick'] = 2,
  66. ['group:wood'] = 3,
  67. ['armor:ring_gol'] = 1,
  68. ['armor:ring_tit'] = 1,
  69. },
  70. output = 'stations:jewelry',
  71. })
  72. stations.dual_register_recipe('woodworking', {
  73. input = {
  74. ['earthbuild:bottlegourd_container'] = 4,
  75. ['xdecor:bowl'] = 1,
  76. ['group:wood'] = 1,
  77. },
  78. output = 'stations:food_prep',
  79. })
  80. stations.dual_register_recipe('woodworking', {
  81. input = {
  82. ['group:stick'] = 2,
  83. ['xdecor:barrel'] = 1,
  84. ['xdecor:bowl'] = 1,
  85. },
  86. output = 'stations:churn',
  87. })
  88. stations.dual_register_recipe('woodworking', {
  89. input = {
  90. ['furniture:wheel'] = 1,
  91. ['xdecor:baricade'] = 1,
  92. ['group:wood'] = 4,
  93. },
  94. output = 'stations:threshing',
  95. })