recipes_spinning_wheel.lua 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. --- Thread
  2. stations.dual_register_recipe('spinning_wheel', {
  3. input = {
  4. ['farming:cotton'] = 1,
  5. },
  6. output = 'furniture:thread_white',
  7. })
  8. stations.dual_register_recipe('spinning_wheel', {
  9. input = {
  10. ['xdecor:cobweb'] = 1,
  11. },
  12. output = 'furniture:thread_white',
  13. })
  14. --- String
  15. stations.dual_register_recipe('spinning_wheel', {
  16. input = {
  17. ['farming:cotton'] = 1,
  18. },
  19. output = 'farming:string',
  20. })
  21. stations.dual_register_recipe('spinning_wheel', {
  22. input = {
  23. ['farming:hemp_fibre'] = 1,
  24. },
  25. output = 'farming:string',
  26. })
  27. stations.dual_register_recipe('spinning_wheel', {
  28. input = {
  29. ['bakedclay:mannagrass'] = 1,
  30. },
  31. output = 'farming:string',
  32. })
  33. stations.dual_register_recipe('spinning_wheel', {
  34. input = {
  35. ['default:junglegrass'] = 1,
  36. },
  37. output = 'farming:string',
  38. })
  39. stations.dual_register_recipe('spinning_wheel', {
  40. input = {
  41. ['xdecor:cobweb'] = 1,
  42. },
  43. output = 'farming:string',
  44. })
  45. stations.dual_register_recipe('spinning_wheel', {
  46. input = {
  47. ['group:wool'] = 1,
  48. },
  49. output = 'farming:string 4',
  50. })
  51. --- Rope
  52. local rope_items = {'farming:cotton', 'farming:hemp_fibre', 'bakedclay:mannagrass', 'default:junglegrass', 'xdecor:cobweb', 'farming:string'}
  53. for i = 1, 6 do
  54. stations.dual_register_recipe('spinning_wheel', {
  55. input = {
  56. [(rope_items[i])] = 5,
  57. },
  58. output = 'ropes:ropesegment',
  59. })
  60. end
  61. stations.dual_register_recipe('spinning_wheel', {
  62. input = {
  63. ['group:wool'] = 1,
  64. },
  65. output = 'ropes:ropesegment',
  66. })