moreblocks.lua 743 B

1234567891011121314151617181920212223242526272829303132333435
  1. stations.dual_register_recipe('woodworking', {
  2. input = {
  3. ['default:acacia_tree'] = 1,
  4. },
  5. output = 'moreblocks:all_faces_acacia_tree',
  6. })
  7. stations.dual_register_recipe('woodworking', {
  8. input = {
  9. ['default:aspen_tree'] = 1,
  10. },
  11. output = 'moreblocks:all_faces_aspen_tree',
  12. })
  13. stations.dual_register_recipe('woodworking', {
  14. input = {
  15. ['default:jungletree'] = 1,
  16. },
  17. output = 'moreblocks:all_faces_jungle_tree',
  18. })
  19. stations.dual_register_recipe('woodworking', {
  20. input = {
  21. ['default:pine_tree'] = 1,
  22. },
  23. output = 'moreblocks:all_faces_pine_tree',
  24. })
  25. stations.dual_register_recipe('woodworking', {
  26. input = {
  27. ['default:tree'] = 1,
  28. },
  29. output = 'moreblocks:all_faces_tree',
  30. })