recipes_spinning_wheel.lua 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. stations.dual_register_recipe('spinning_wheel', {
  53. input = {
  54. ['farming:string'] = 5,
  55. },
  56. output = 'ropes:ropesegment',
  57. })
  58. stations.dual_register_recipe('spinning_wheel', {
  59. input = {
  60. ['group:wool'] = 1,
  61. },
  62. output = 'ropes:ropesegment',
  63. })