items.lua 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. minetest.register_craftitem('tasks:gear', {
  2. description = 'Gear',
  3. inventory_image = 'tasks_gear.png',
  4. stack_max = 1,
  5. groups = {not_in_creative_inventory=1, stashable=1},
  6. on_drop = lobby.no_drop
  7. })
  8. minetest.register_craftitem('tasks:gear_req', {
  9. description = 'Gear Request Form',
  10. inventory_image = 'tasks_gear_req.png',
  11. stack_max = 1,
  12. groups = {not_in_creative_inventory=1},
  13. on_drop = lobby.no_drop
  14. })
  15. minetest.register_craftitem('tasks:plasma_core', {
  16. description = 'Plasma Core',
  17. inventory_image = 'tasks_plasma_core.png',
  18. stack_max = 1,
  19. groups = {not_in_creative_inventory=1, stashable=1},
  20. on_drop = lobby.no_drop
  21. })
  22. minetest.register_craftitem('tasks:plasma_core_req', {
  23. description = 'Plasma Core Request Form',
  24. inventory_image = 'tasks_plasma_core_req.png',
  25. stack_max = 1,
  26. groups = {not_in_creative_inventory=1},
  27. on_drop = lobby.no_drop
  28. })
  29. minetest.register_craftitem('tasks:fuse', {
  30. description = 'Fuse',
  31. inventory_image = 'tasks_fuse.png',
  32. stack_max = 1,
  33. groups = {not_in_creative_inventory=1, stashable=1},
  34. on_drop = lobby.no_drop
  35. })
  36. minetest.register_craftitem('tasks:fuse_req', {
  37. description = 'Fuse Request Form',
  38. inventory_image = 'tasks_fuse_req.png',
  39. stack_max = 1,
  40. groups = {not_in_creative_inventory=1},
  41. on_drop = lobby.no_drop
  42. })
  43. minetest.register_craftitem('tasks:9v_battery', {
  44. description = '9v Battery',
  45. inventory_image = 'tasks_9v_battery.png',
  46. stack_max = 1,
  47. groups = {not_in_creative_inventory=1, stashable=1},
  48. on_drop = lobby.no_drop
  49. })
  50. minetest.register_craftitem('tasks:9v_battery_req', {
  51. description = '9v Battery Request Form',
  52. inventory_image = 'tasks_9v_battery_req.png',
  53. stack_max = 1,
  54. groups = {not_in_creative_inventory=1},
  55. on_drop = lobby.no_drop
  56. })
  57. minetest.register_craftitem('tasks:log', {
  58. description = 'Log',
  59. inventory_image = 'tasks_log.png',
  60. stack_max = 1,
  61. groups = {not_in_creative_inventory=1},
  62. on_drop = lobby.no_drop
  63. })
  64. minetest.register_craftitem('tasks:lnb', {
  65. description = 'Low-noise Block Downconverter',
  66. inventory_image = 'tasks_lnb.png',
  67. stack_max = 1,
  68. groups = {not_in_creative_inventory=1, stashable=1},
  69. on_drop = lobby.no_drop
  70. })
  71. minetest.register_craftitem('tasks:lnb_req', {
  72. description = 'Low-noise Block Downconverter Request Form',
  73. inventory_image = 'tasks_lnb_req.png',
  74. stack_max = 1,
  75. groups = {not_in_creative_inventory=1},
  76. on_drop = lobby.no_drop
  77. })
  78. minetest.register_craftitem('tasks:quantum_coil', {
  79. description = 'Quantum Coil',
  80. inventory_image = 'tasks_quantum_coil.png',
  81. stack_max = 1,
  82. groups = {not_in_creative_inventory=1, stashable=1},
  83. on_drop = lobby.no_drop
  84. })
  85. minetest.register_craftitem('tasks:quantum_coil_req', {
  86. description = 'Quantum Coil Request Form',
  87. inventory_image = 'tasks_quantum_coil_req.png',
  88. stack_max = 1,
  89. groups = {not_in_creative_inventory=1},
  90. on_drop = lobby.no_drop
  91. })
  92. minetest.register_craftitem('tasks:paper_stack', {
  93. description = 'Stack of Paper',
  94. inventory_image = 'tasks_paper_stack.png',
  95. stack_max = 1,
  96. groups = {not_in_creative_inventory=1, stashable=1},
  97. on_drop = lobby.no_drop
  98. })
  99. minetest.register_craftitem('tasks:paper_stack_req', {
  100. description = 'Stack of Paper Request Form',
  101. inventory_image = 'tasks_paper_stack_req.png',
  102. stack_max = 1,
  103. groups = {not_in_creative_inventory=1},
  104. on_drop = lobby.no_drop
  105. })
  106. minetest.register_craftitem('tasks:wick', {
  107. description = 'Wick',
  108. inventory_image = 'tasks_wick.png',
  109. stack_max = 1,
  110. groups = {not_in_creative_inventory=1, stashable=1},
  111. on_drop = lobby.no_drop
  112. })
  113. minetest.register_craftitem('tasks:wick_req', {
  114. description = 'Wick Request Form',
  115. inventory_image = 'tasks_wick_req.png',
  116. stack_max = 1,
  117. groups = {not_in_creative_inventory=1},
  118. on_drop = lobby.no_drop
  119. })