craft.lua 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. minetest.register_craft({
  2. output = 'technic_farming:wooden_plate 4',
  3. recipe = {
  4. {'','group:wood', ''},
  5. {'group:wood', 'group:wood', 'group:wood'},
  6. {'','group:wood', ''},
  7. }
  8. })
  9. minetest.register_craft({
  10. output = 'technic_farming:stone_plate 4',
  11. recipe = {
  12. {'','group:stone', ''},
  13. {'group:stone', 'group:stone', 'group:stone'},
  14. {'','group:stone', ''},
  15. }
  16. })
  17. minetest.register_craft({
  18. output = 'technic_farming:wooden_screw 3',
  19. recipe = {
  20. {'default:stick'},
  21. {'default:stick'},
  22. {'default:stick'},
  23. }
  24. })
  25. minetest.register_craft({
  26. output = 'technic_farming:cotton_filter 3',
  27. recipe = {
  28. {'group:wood', 'group:wood', 'group:wood'},
  29. {'farming:cotton','farming:cotton', 'farming:cotton'},
  30. {'group:wood', 'group:wood', 'group:wood'},
  31. }
  32. })
  33. minetest.register_craft({
  34. output = 'technic_farming:plastic_filter 3',
  35. recipe = {
  36. {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
  37. {'basic_materials:plastic_sheet','basic_materials:plastic_sheet', 'basic_materials:plastic_sheet'},
  38. {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
  39. }
  40. })
  41. minetest.register_craft({
  42. output = 'technic_farming:carbon_filter 3',
  43. recipe = {
  44. {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
  45. {'technic:carbon_cloth','technic:carbon_cloth', 'technic:carbon_cloth'},
  46. {'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot', 'technic:stainless_steel_ingot'},
  47. }
  48. })