nssm_materials.lua 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. --non eatable craftitems
  2. minetest.register_craftitem("nssm:white_wolf_fur", {
  3. description = "White Wolf Fur",
  4. image = "white_wolf_fur.png",
  5. groups = {flammable = 2, leather = 1},
  6. })
  7. --[[
  8. local function nssm_craftitem (name, descr)
  9. minetest.register_craftitem("nssm:"..name, {
  10. description = descr,
  11. image = name..".png",
  12. })
  13. end
  14. --]]
  15. --[[
  16. nssm_craftitem ('sky_feather','Sky Feather')
  17. nssm_craftitem ('snake_scute','Snake Scute')
  18. nssm_craftitem ('eyed_tentacle','Eyed Tentacle')
  19. --nssm_craftitem ('king_duck_crown','King Duck Crown')
  20. nssm_craftitem ('great_energy_globe','Great Energy Globe')
  21. nssm_craftitem ('superior_energy_globe','Superior Energy Globe')
  22. nssm_craftitem ('ant_queen_abdomen','Ant Queen Abdomen')
  23. --nssm_craftitem ('masticone_skull','Masticone Skull')
  24. nssm_craftitem ('masticone_skull_fragments','Masticone Skull Fragments')
  25. --nssm_craftitem ('masticone_skull_crowned','Masticone Skull Crowned')
  26. nssm_craftitem ('tentacle_curly','Kraken Tentacle')
  27. nssm_craftitem ('lava_titan_eye','Lava Titan Eye')
  28. nssm_craftitem ('duck_beak','Duck Beak')
  29. nssm_craftitem ('ice_tooth','Ice Tooth')
  30. nssm_craftitem ('little_ice_tooth','Little Ice Tooth')
  31. nssm_craftitem ('digested_sand',"Digested Sand")
  32. nssm_craftitem ('black_ice_tooth','Black Ice Tooth')
  33. nssm_craftitem ('tarantula_chelicerae','Tarantula Chelicerae')
  34. nssm_craftitem ('crab_chela','Crab Chela')
  35. nssm_craftitem ('cursed_pumpkin_seed','Cursed Pumpkin Seed')
  36. nssm_craftitem ('mantis_claw','Mantis Claw')
  37. nssm_craftitem ('manticore_fur','Manticore Fur')
  38. nssm_craftitem ('ant_hard_skin','Ant Hard Skin')
  39. nssm_craftitem ('bloco_skin','Bloco Skin')
  40. nssm_craftitem ('crab_carapace_fragment','Crab Carapace Fragment')
  41. nssm_craftitem ('crocodile_skin','Crocodile Skin')
  42. nssm_craftitem ('manticore_spine','Manticore Spine')
  43. nssm_craftitem ('night_feather','Night Feather')
  44. nssm_craftitem ('sun_feather','Sun Feather')
  45. nssm_craftitem ('duck_feather','Duck Feather')
  46. nssm_craftitem ('black_duck_feather','Black Duck Feather')
  47. nssm_craftitem ('masticone_fang','Masticone Fang')
  48. --]]
  49. --[[
  50. nssm_craftitem ('stoneater_mandible','Stoneater Mandible')
  51. nssm_craftitem ('ant_mandible','Ant Mandible')
  52. nssm_craftitem ('life_energy','Life Energy')
  53. nssm_craftitem ('wolf_fur','Wolf Fur')
  54. nssm_craftitem ('felucco_fur','Felucco Fur')
  55. nssm_craftitem ('felucco_horn','Felucco Horn')
  56. nssm_craftitem ('energy_globe','Energy Globe')
  57. nssm_craftitem ('greedy_soul_fragment','Greedy Soul Fragment')
  58. nssm_craftitem ('lustful_soul_fragment','Lustful Soul Fragment')
  59. nssm_craftitem ('wrathful_soul_fragment','Wrathful Soul Fragment')
  60. nssm_craftitem ('proud_soul_fragment','Proud Soul Fragment')
  61. nssm_craftitem ('slothful_soul_fragment','Slothful Soul Fragment')
  62. nssm_craftitem ('envious_soul_fragment','Envious Soul Fragment')
  63. nssm_craftitem ('gluttonous_soul_fragment','Gluttonous Soul Fragment')
  64. nssm_craftitem ('gluttonous_moranga','Gluttonous Moranga')
  65. nssm_craftitem ('envious_moranga','Envious Moranga')
  66. nssm_craftitem ('proud_moranga','Proud Moranga')
  67. nssm_craftitem ('slothful_moranga','Slothful Moranga')
  68. nssm_craftitem ('lustful_moranga','Lustful Moranga')
  69. nssm_craftitem ('wrathful_moranga','Wrathful Moranga')
  70. nssm_craftitem ('greedy_moranga','Greedy Moranga')
  71. nssm_craftitem ('mantis_skin','Mantis_skin')
  72. nssm_craftitem ('sand_bloco_skin','Sand Bloco Skin')
  73. nssm_craftitem ('sandworm_skin','Sandworm Skin')
  74. nssm_craftitem ('sky_iron','Sky Iron')
  75. nssm_craftitem ('web_string','Cobweb String')
  76. nssm_craftitem ('dense_web_string','Dense Cobweb String')
  77. nssm_craftitem ('black_powder','Black Powder')
  78. nssm_craftitem ('morelentir_dust','Dark Starred Stone Dust')
  79. nssm_craftitem ('empty_evocation_bomb','Empty Evocation Bomb')
  80. --]]
  81. --[[
  82. local function nssm_craftitem_eat (name, descr, gnam)
  83. minetest.register_craftitem("nssm:"..name, {
  84. description = descr,
  85. image =name..".png",
  86. on_use = minetest.item_eat(gnam),
  87. groups = { meat=1, eatable=1 },
  88. })
  89. end
  90. --]]
  91. --[[
  92. nssm_craftitem_eat ('felucco_steak','Felucco Steak',3)
  93. nssm_craftitem_eat ('roasted_felucco_steak','Roasted Felucco Steak',6)
  94. nssm_craftitem_eat ('heron_leg','Moonheron Leg',2)
  95. nssm_craftitem_eat ('chichibios_heron_leg',"Chichibio's Moonheron Leg",4)
  96. nssm_craftitem_eat ('crocodile_tail','Crocodile Tail',3)
  97. nssm_craftitem_eat ('roasted_crocodile_tail','Roasted Crocodile Tail',6)
  98. --]]
  99. --[[
  100. nssm_craftitem_eat ('duck_legs','Duck Legs',1)
  101. nssm_craftitem_eat ('roasted_duck_legs','Roasted Duck Leg',3)
  102. nssm_craftitem_eat ('ant_leg','Ant Leg',-1)
  103. nssm_craftitem_eat ('roasted_ant_leg','Roasted Ant Leg',4)
  104. nssm_craftitem_eat ('spider_leg','Spider Leg',-1)
  105. nssm_craftitem_eat ('roasted_spider_leg','Roasted Spider Leg',4)
  106. --nssm_craftitem_eat ('brain','Brain',3)
  107. --nssm_craftitem_eat ('roasted_brain','Roasted Brain',8)
  108. nssm_craftitem_eat ('tentacle','Tentacle',2)
  109. nssm_craftitem_eat ('roasted_tentacle','Roasted Tentacle',5)
  110. nssm_craftitem_eat ('worm_flesh','Worm Flesh',-2)
  111. nssm_craftitem_eat ('roasted_worm_flesh','Roasted Worm Flesh',4)
  112. nssm_craftitem_eat ('amphibian_heart','Amphibian Heart',1)
  113. nssm_craftitem_eat ('roasted_amphibian_heart','Roasted Amphibian Heart',8)
  114. nssm_craftitem_eat ('raw_scrausics_wing','Raw Scrausics Wing',1)
  115. nssm_craftitem_eat ('spicy_scrausics_wing','Spicy Scrausics Wing',6)
  116. nssm_craftitem_eat ('phoenix_nuggets','Phoenix Nuggets',20)
  117. nssm_craftitem_eat ('phoenix_tear','Phoenix Tear',20)
  118. nssm_craftitem_eat ('frosted_amphibian_heart','Frosted Amphibian Heart',-1)
  119. nssm_craftitem_eat ('surimi','Surimi',4)
  120. nssm_craftitem_eat ('amphibian_ribs','Amphibian Ribs',2)
  121. nssm_craftitem_eat ('roasted_amphibian_ribs','Roasted Amphibian Ribs',6)
  122. nssm_craftitem_eat ('dolidrosaurus_fin','Dolidrosaurus Fin',-2)
  123. nssm_craftitem_eat ('roasted_dolidrosaurus_fin','Roasted Dolidrosaurus Fin',4)
  124. nssm_craftitem_eat ('larva_meat','Larva Meat',-1)
  125. nssm_craftitem_eat ('larva_juice','Larva Juice',-3)
  126. nssm_craftitem_eat ('larva_soup','Larva Soup',10)
  127. nssm_craftitem_eat ('mantis_meat','Mantis Meat',1)
  128. nssm_craftitem_eat ('roasted_mantis_meat','Roasted Mantis Meat',4)
  129. nssm_craftitem_eat ('spider_meat','Spider Meat',-1)
  130. nssm_craftitem_eat ('roasted_spider_meat','Roasted Spider Meat',3)
  131. nssm_craftitem_eat ('silk_gland','Silk Gland',-1)
  132. nssm_craftitem_eat ('roasted_silk_gland','Roasted Silk Gland',3)
  133. nssm_craftitem_eat ('super_silk_gland','Super Silk Gland',-8)
  134. nssm_craftitem_eat ('roasted_super_silk_gland','Roasted Super Silk Gland',2)
  135. --]]