12345678910111213141516171819202122232425262728 |
- minetest.register_craftitem('tasks:gear', {
- description = 'Gear',
- inventory_image = 'tasks_gear.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1}
- })
- 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}
- })
- minetest.register_craftitem('tasks:plasma_core', {
- description = 'Plasma Core',
- inventory_image = 'tasks_plasma_core.png',
- stack_max = 1,
- groups = {not_in_creative_inventory=1}
- })
- 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}
- })
|