craft_recipies_mcl.lua 870 B

123456789101112131415161718192021222324252627282930
  1. minetest.register_craft({
  2. output = 'asrs:controller',
  3. type = 'shapeless',
  4. recipe = {'asrs:lift', 'asrs:lift', 'mcl_core:ironblock', 'mesecons_torch:redstoneblock', 'mcl_dye:blue'}
  5. })
  6. minetest.register_craft({
  7. output = 'asrs:cell',
  8. recipe = {
  9. { 'group:wood', 'group:wood', 'group:wood' },
  10. { 'group:wood', 'mesecons:redstone', 'group:wood' },
  11. { 'group:wood', 'group:wood', 'group:wood' },
  12. }
  13. })
  14. minetest.register_craft({
  15. output = 'asrs:cell',
  16. type = 'shapeless',
  17. recipe = {'mcl_chests:chest', 'mesecons:redstone'}
  18. })
  19. minetest.register_craft({
  20. output = 'asrs:lift',
  21. recipe = {
  22. { 'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot' },
  23. { 'mcl_core:iron_ingot', 'mesecons:redstone', 'mcl_core:iron_ingot' },
  24. { 'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot' },
  25. }
  26. })