epic.lua 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. stations.dual_register_recipe('woodworking', {
  2. input = {
  3. ['group:wood'] = 1,
  4. ['ropes:ropesegment'] = 1,
  5. },
  6. output = 'epic:sign',
  7. })
  8. stations.dual_register_recipe('woodworking', {
  9. input = {
  10. ['group:wood'] = 1,
  11. ['ropes:ropesegment'] = 1,
  12. },
  13. output = 'epic:sign_post',
  14. })
  15. stations.dual_register_recipe('woodworking', {
  16. input = {
  17. ['group:wood'] = 1,
  18. },
  19. output = 'epic:directional_sign',
  20. })
  21. stations.dual_register_recipe('woodworking', {
  22. input = {
  23. ['default:acacia_tree'] = 1,
  24. },
  25. output = 'epic:acacia_bark',
  26. })
  27. stations.dual_register_recipe('woodworking', {
  28. input = {
  29. ['default:aspen_tree'] = 1,
  30. },
  31. output = 'epic:aspen_bark',
  32. })
  33. stations.dual_register_recipe('woodworking', {
  34. input = {
  35. ['default:jungletree'] = 1,
  36. },
  37. output = 'epic:jungle_bark',
  38. })
  39. stations.dual_register_recipe('woodworking', {
  40. input = {
  41. ['default:pine_tree'] = 1,
  42. },
  43. output = 'epic:pine_bark',
  44. })
  45. stations.dual_register_recipe('woodworking', {
  46. input = {
  47. ['default:tree'] = 1,
  48. },
  49. output = 'epic:tree_bark',
  50. })