123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- minetest.register_craftitem('tasks:gear', {
- description = 'Gear',
- inventory_image = 'tasks_gear.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:gear_req', {
- description = 'Gear Request Form',
- inventory_image = 'tasks_gear_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:plasma_core', {
- description = 'Plasma Core',
- inventory_image = 'tasks_plasma_core.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:plasma_core_req', {
- description = 'Plasma Core Request Form',
- inventory_image = 'tasks_plasma_core_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:fuse', {
- description = 'Fuse',
- inventory_image = 'tasks_fuse.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:fuse_req', {
- description = 'Fuse Request Form',
- inventory_image = 'tasks_fuse_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:9v_battery', {
- description = '9v Battery',
- inventory_image = 'tasks_9v_battery.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:9v_battery_req', {
- description = '9v Battery Request Form',
- inventory_image = 'tasks_9v_battery_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:log', {
- description = 'Log',
- inventory_image = 'tasks_log.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:lnb', {
- description = 'Low-noise Block Downconverter',
- inventory_image = 'tasks_lnb.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:lnb_req', {
- description = 'Low-noise Block Downconverter Request Form',
- inventory_image = 'tasks_lnb_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:quantum_coil', {
- description = 'Quantum Coil',
- inventory_image = 'tasks_quantum_coil.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:quantum_coil_req', {
- description = 'Quantum Coil Request Form',
- inventory_image = 'tasks_quantum_coil_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:paper_stack', {
- description = 'Stack of Paper',
- inventory_image = 'tasks_paper_stack.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:paper_stack_req', {
- description = 'Stack of Paper Request Form',
- inventory_image = 'tasks_paper_stack_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:wick', {
- description = 'Wick',
- inventory_image = 'tasks_wick.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1, stashable=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('tasks:wick_req', {
- description = 'Wick Request Form',
- inventory_image = 'tasks_wick_req.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1},
- on_drop = lobby.no_drop
- })
|