123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- minetest.register_craftitem('clothing:shirt_t_1', {
- description = 'T-Shirt (plain)',
- tex = 'clothing_shirt_t_1.png',
- cost = 2,
- inventory_image = 'clothing_shirt_t_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_2', {
- description = 'T-Shirt (plain)',
- tex = 'clothing_shirt_t_2.png',
- cost = 2,
- inventory_image = 'clothing_shirt_t_2_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_3', {
- description = 'Graphic T (with Game Controller)',
- tex = 'clothing_shirt_t_3.png',
- cost = 10,
- inventory_image = 'clothing_shirt_t_3_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_4', {
- description = 'Graphic T (with Music Notes)',
- tex = 'clothing_shirt_t_4.png',
- cost = 10,
- inventory_image = 'clothing_shirt_t_4_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_5', {
- description = 'Graphic T (with Rose)',
- tex = 'clothing_shirt_t_5.png',
- cost = 16,
- inventory_image = 'clothing_shirt_t_5_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_6', {
- description = 'Abstract Design T',
- tex = 'clothing_shirt_t_6.png',
- cost = 24,
- inventory_image = 'clothing_shirt_t_6_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_7', {
- description = 'Shoulderless Top',
- tex = 'clothing_shirt_t_7.png',
- cost = 30,
- inventory_image = 'clothing_shirt_t_7_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:shirt_t_8', {
- description = 'Flannel Shirt',
- tex = 'clothing_shirt_t_8.png',
- cost = 30,
- inventory_image = 'clothing_shirt_t_8_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:hoodie_1', {
- description = 'Winter Degin Hoodie',
- tex = 'clothing_hoodie_1.png',
- cost = 50,
- inventory_image = 'clothing_hoodie_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
- minetest.register_craftitem('clothing:vest_1', {
- description = 'Vest (Blue)',
- tex = 'clothing_vest_1.png',
- cost = 10,
- inventory_image = 'clothing_vest_1_inv.png',
- stack_max = 1,
- groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
- on_drop = lobby.no_drop
- })
|