shirts.lua 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. minetest.register_craftitem('clothing:shirt_t_1', {
  2. description = 'T-Shirt (plain)',
  3. tex = 'clothing_shirt_t_1.png',
  4. cost = 2,
  5. inventory_image = 'clothing_shirt_t_1_inv.png',
  6. stack_max = 1,
  7. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  8. on_drop = lobby.no_drop
  9. })
  10. minetest.register_craftitem('clothing:shirt_t_2', {
  11. description = 'T-Shirt (plain)',
  12. tex = 'clothing_shirt_t_2.png',
  13. cost = 2,
  14. inventory_image = 'clothing_shirt_t_2_inv.png',
  15. stack_max = 1,
  16. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  17. on_drop = lobby.no_drop
  18. })
  19. minetest.register_craftitem('clothing:shirt_t_3', {
  20. description = 'Graphic T (with Game Controller)',
  21. tex = 'clothing_shirt_t_3.png',
  22. cost = 10,
  23. inventory_image = 'clothing_shirt_t_3_inv.png',
  24. stack_max = 1,
  25. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  26. on_drop = lobby.no_drop
  27. })
  28. minetest.register_craftitem('clothing:shirt_t_4', {
  29. description = 'Graphic T (with Music Notes)',
  30. tex = 'clothing_shirt_t_4.png',
  31. cost = 10,
  32. inventory_image = 'clothing_shirt_t_4_inv.png',
  33. stack_max = 1,
  34. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  35. on_drop = lobby.no_drop
  36. })
  37. minetest.register_craftitem('clothing:shirt_t_5', {
  38. description = 'Graphic T (with Rose)',
  39. tex = 'clothing_shirt_t_5.png',
  40. cost = 16,
  41. inventory_image = 'clothing_shirt_t_5_inv.png',
  42. stack_max = 1,
  43. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  44. on_drop = lobby.no_drop
  45. })
  46. minetest.register_craftitem('clothing:shirt_t_6', {
  47. description = 'Abstract Design T',
  48. tex = 'clothing_shirt_t_6.png',
  49. cost = 24,
  50. inventory_image = 'clothing_shirt_t_6_inv.png',
  51. stack_max = 1,
  52. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  53. on_drop = lobby.no_drop
  54. })
  55. minetest.register_craftitem('clothing:shirt_t_7', {
  56. description = 'Shoulderless Top',
  57. tex = 'clothing_shirt_t_7.png',
  58. cost = 30,
  59. inventory_image = 'clothing_shirt_t_7_inv.png',
  60. stack_max = 1,
  61. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  62. on_drop = lobby.no_drop
  63. })
  64. minetest.register_craftitem('clothing:shirt_t_8', {
  65. description = 'Flannel Shirt',
  66. tex = 'clothing_shirt_t_8.png',
  67. cost = 30,
  68. inventory_image = 'clothing_shirt_t_8_inv.png',
  69. stack_max = 1,
  70. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  71. on_drop = lobby.no_drop
  72. })
  73. minetest.register_craftitem('clothing:hoodie_1', {
  74. description = 'Winter Degin Hoodie',
  75. tex = 'clothing_hoodie_1.png',
  76. cost = 50,
  77. inventory_image = 'clothing_hoodie_1_inv.png',
  78. stack_max = 1,
  79. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  80. on_drop = lobby.no_drop
  81. })
  82. minetest.register_craftitem('clothing:vest_1', {
  83. description = 'Vest (Blue)',
  84. tex = 'clothing_vest_1.png',
  85. cost = 10,
  86. inventory_image = 'clothing_vest_1_inv.png',
  87. stack_max = 1,
  88. groups = {clothing = 1, not_in_creative_inventory=1, clothing_shirts=1},
  89. on_drop = lobby.no_drop
  90. })