You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
893 B
32 lines
893 B
minetest.register_craftitem('furniture:brush', { |
|
description = 'Stain Brush', |
|
inventory_image = 'furniture_brush.png', |
|
groups = {stain_brush = 1} |
|
}) |
|
|
|
minetest.register_craftitem('furniture:hinge', { |
|
description = 'Hinge', |
|
inventory_image = 'furniture_hinge.png' |
|
}) |
|
|
|
minetest.register_craftitem('furniture:lock', { |
|
description = 'Lock', |
|
inventory_image = 'furniture_lock.png' |
|
}) |
|
|
|
minetest.register_craftitem('furniture:thread', { |
|
description = 'Spool of Thread', |
|
inventory_image = 'furniture_thread.png', |
|
groups = {thread=1, not_in_creative_inventory=1} |
|
}) |
|
|
|
minetest.register_craftitem('furniture:wheel', { |
|
description = 'Wooden Wheel', |
|
inventory_image = 'furniture_wheel.png' |
|
}) |
|
|
|
minetest.register_craftitem('furniture:fabric', { |
|
description = 'Fabric', |
|
inventory_image = 'furniture_fabric.png', |
|
groups = {fabric=1, not_in_creative_inventory=1} |
|
})
|
|
|