12345678910 |
- minetest.register_craftitem('clothing:shoes_1', {
- description = 'Black Shoes',
- tex = 'clothing_shoes_1.png',
- cost = 2,
- inventory_image = 'clothing_shoes_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shoes=1},
- on_drop = lobby.no_drop
- })
|