shoes.lua 300 B

12345678910
  1. minetest.register_craftitem('clothing:shoes_1', {
  2. description = 'Black Shoes',
  3. tex = 'clothing_shoes_1.png',
  4. cost = 2,
  5. inventory_image = 'clothing_shoes_1_inv.png',
  6. stack_max = 1,
  7. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shoes=1},
  8. on_drop = lobby.no_drop
  9. })