12345678910111213141516171819202122232425262728293031323334353637383940 |
- minetest.register_craftitem('clothing:jeans_1', {
- description = 'Jeans (blue)',
- tex = 'clothing_jeans_1.png',
- cost = 2,
- inventory_image = 'clothing_jeans_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_pants=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:jeans_2', {
- description = 'Jeans (black)',
- tex = 'clothing_jeans_2.png',
- cost = 2,
- inventory_image = 'clothing_jeans_2_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_pants=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shorts_1', {
- description = 'Shorts (Khaki)',
- tex = 'clothing_shorts_1.png',
- cost = 10,
- inventory_image = 'clothing_shorts_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_pants=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:pants_1', {
- description = 'Track Pants',
- tex = 'clothing_pants_1.png',
- cost = 10,
- inventory_image = 'clothing_pants_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_pants=1},
- on_drop = lobby.no_drop
- })
|