minetest-laptop/items.lua

15 lines
368 B
Lua
Raw Normal View History

2017-12-11 22:07:47 +01:00
minetest.register_craftitem("laptop:floppy", {
description = 'High density floppy',
inventory_image = "laptop_diskette.png",
2017-12-12 23:08:36 +01:00
groups = {laptop_removable_floppy = 1},
2017-12-11 22:07:47 +01:00
stack_max = 1,
})
minetest.register_craftitem("laptop:usbstick", {
description = 'USB storage stick',
inventory_image = "laptop_usb.png",
2017-12-12 23:08:36 +01:00
groups = {laptop_removable_usb = 1},
2017-12-11 22:07:47 +01:00
stack_max = 1,
})