stations.lua 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. })