doors.lua 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. stations.dual_register_recipe('woodworking', {
  2. input = {
  3. ['group:wood'] = 5,
  4. ['furniture:hinge'] = 3,
  5. },
  6. output = 'doors:door_barn1',
  7. })
  8. stations.dual_register_recipe('woodworking', {
  9. input = {
  10. ['group:wood'] = 5,
  11. ['furniture:hinge'] = 3,
  12. },
  13. output = 'doors:door_barn2',
  14. })
  15. stations.dual_register_recipe('woodworking', {
  16. input = {
  17. ['group:wood'] = 5,
  18. ['furniture:hinge'] = 3,
  19. },
  20. output = 'doors:door_castle1',
  21. })
  22. stations.dual_register_recipe('woodworking', {
  23. input = {
  24. ['group:wood'] = 5,
  25. ['furniture:hinge'] = 3,
  26. },
  27. output = 'doors:door_castle2',
  28. })
  29. stations.dual_register_recipe('woodworking', {
  30. input = {
  31. ['group:wood'] = 5,
  32. ['furniture:hinge'] = 3,
  33. },
  34. output = 'doors:door_cottage1',
  35. })
  36. stations.dual_register_recipe('woodworking', {
  37. input = {
  38. ['group:wood'] = 5,
  39. ['xpanes:pane_flat'] = 1,
  40. ['furniture:hinge'] = 3,
  41. },
  42. output = 'doors:door_cottage2',
  43. })
  44. stations.dual_register_recipe('woodworking', {
  45. input = {
  46. ['group:wood'] = 5,
  47. ['furniture:hinge'] = 3,
  48. },
  49. output = 'doors:door_french',
  50. })
  51. stations.dual_register_recipe('woodworking', {
  52. input = {
  53. ['group:wood'] = 5,
  54. ['default:paper'] = 2,
  55. ['furniture:hinge'] = 3,
  56. },
  57. output = 'doors:door_japanese',
  58. })
  59. stations.dual_register_recipe('woodworking', {
  60. input = {
  61. ['group:wood'] = 5,
  62. ['dye:white'] = 1,
  63. ['furniture:hinge'] = 3,
  64. },
  65. output = 'doors:door_mansion1',
  66. })
  67. stations.dual_register_recipe('woodworking', {
  68. input = {
  69. ['group:wood'] = 5,
  70. ['furniture:hinge'] = 3,
  71. },
  72. output = 'doors:door_wood',
  73. })
  74. stations.dual_register_recipe('woodworking', {
  75. input = {
  76. ['group:wood'] = 5,
  77. ['xpanes:pane_flat'] = 1,
  78. ['furniture:hinge'] = 3,
  79. },
  80. output = 'doors:door_woodglass1',
  81. })
  82. stations.dual_register_recipe('woodworking', {
  83. input = {
  84. ['group:wood'] = 5,
  85. ['xpanes:pane_flat'] = 1,
  86. ['furniture:hinge'] = 3,
  87. },
  88. output = 'doors:door_woodglass2',
  89. })
  90. stations.dual_register_recipe('woodworking', {
  91. input = {
  92. ['group:wood'] = 5,
  93. ['furniture:hinge'] = 3,
  94. },
  95. output = 'doors:door_woodpanel1',
  96. })
  97. stations.dual_register_recipe('woodworking', {
  98. input = {
  99. ['group:wood'] = 5,
  100. ['xpanes:chainlink_flat'] = 1,
  101. ['furniture:hinge'] = 3,
  102. },
  103. output = 'doors:screen_door',
  104. })
  105. stations.dual_register_recipe('woodworking', {
  106. input = {
  107. ['group:wood'] = 5,
  108. ['xpanes:pane_flat'] = 1,
  109. ['furniture:hinge'] = 3,
  110. },
  111. output = 'doors:woodglass_door',
  112. })