12345678910111213141516171819202122232425262728293031323334353637383940 |
- minetest.register_craftitem('clothing:briefs_1', {
- description = 'Briefs',
- tex = 'clothing_briefs.png',
- cost = 2,
- inventory_image = 'clothing_briefs_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_underclothes=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:tights_1', {
- description = 'Tights',
- tex = 'clothing_tights_1.png',
- cost = 15,
- inventory_image = 'clothing_tights_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_underclothes=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:socks_1', {
- description = 'Socks (Checkered)',
- tex = 'clothing_socks_1.png',
- cost = 15,
- inventory_image = 'clothing_socks_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_underclothes=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:socks_2', {
- description = 'Socks (White)',
- tex = 'clothing_socks_2.png',
- cost = 15,
- inventory_image = 'clothing_socks_2_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_underclothes=1},
- on_drop = lobby.no_drop
- })
|