12345678910111213141516171819202122232425262728293031323334353637383940 |
- minetest.register_craftitem('clothing:hat_straw', {
- description = 'Straw Hat',
- tex = 'clothing_hat_straw.png',
- cost = 200,
- inventory_image = 'clothing_hat_straw_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_hats=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:hat_baseball', {
- description = 'Baseball Cap',
- tex = 'clothing_hat_baseball.png',
- cost = 15,
- inventory_image = 'clothing_hat_baseball_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_hats=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:hat_cowboy', {
- description = 'Cowboy Hat',
- tex = 'clothing_hat_cowboy.png',
- cost = 30,
- inventory_image = 'clothing_hat_cowboy_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_hats=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:hat_crown', {
- description = 'Royal Crown',
- tex = 'clothing_hat_crown.png',
- cost = 2000,
- inventory_image = 'clothing_hat_crown_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_hats=1},
- on_drop = lobby.no_drop
- })
|