crafting.lua 855 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. local MT = minetest
  2. local vMod = vm_lighting_wand
  3. local crafting
  4. vMod.set_crafting_items = function(light, handle)
  5. if not light or not handle or light == "LIGHT_ITEM" or handle == "HANDLE_ITEM" then
  6. return
  7. end
  8. crafting = {
  9. light = light,
  10. handle = handle
  11. }
  12. end
  13. vMod.has_valid_recipe = function()
  14. if not crafting or not crafting.light or not crafting.handle then
  15. return false
  16. end
  17. return true
  18. end
  19. vMod.add_crafting_recipe = function()
  20. if vMod.loaded then
  21. vMod.logger("add_crafting_recipe() called but game is already loaded")
  22. return
  23. end
  24. if not vMod.has_valid_recipe() then
  25. vMod.logger("crafting recipe not registered.")
  26. else
  27. MT.register_craft(
  28. {
  29. output = vMod.tool,
  30. recipe = {
  31. {crafting.light},
  32. {crafting.handle},
  33. {crafting.handle}
  34. }
  35. }
  36. )
  37. vMod.logger("crafting recipe registered.")
  38. end
  39. end